From 092905676b4821d01a8d9709429a69a4765b49ab Mon Sep 17 00:00:00 2001 From: Aaron Siddhartha Mondal Date: Tue, 12 Dec 2023 18:27:26 +0100 Subject: [PATCH] Introduce Local Remote Execution Provide generated toolchain configurations and a reproducible remote execution toolchain container with a C++ toolchain that can be used for fully hermetic integration tests. Once it's stabilized this allows us to distribute application-specific toolchain containers and to share CI caches with contributors to eliminate redundant rebuilds. --- .bazelrc | 14 + .github/workflows/lre.yaml | 40 + WORKSPACE.bazel | 16 + flake.nix | 12 + local-remote-execution/README.md | 45 + local-remote-execution/cpp_env.json | 5 + local-remote-execution/examples/BUILD.bazel | 7 + local-remote-execution/examples/hello.cpp | 6 + local-remote-execution/generated/LICENSE | 202 ++ local-remote-execution/generated/cc/BUILD | 171 ++ local-remote-execution/generated/cc/WORKSPACE | 2 + .../cc/armeabi_cc_toolchain_config.bzl | 82 + .../cc/builtin_include_directory_paths | 11 + .../generated/cc/cc_toolchain_config.bzl | 1435 ++++++++++ .../generated/cc/cc_wrapper.sh | 25 + .../generated/cc/module.modulemap | 2512 +++++++++++++++++ .../generated/cc/tools/cpp/empty.cc | 1 + local-remote-execution/generated/config/BUILD | 47 + local-remote-execution/generated/java/BUILD | 31 + local-remote-execution/image.nix | 94 + local-remote-execution/rbe-configs-gen.nix | 26 + .../rbe_configs_gen_skip_pull.diff | 41 + tools/customClang.nix | 22 + tools/generate-toolchains.nix | 39 + tools/pre-commit-hooks.nix | 2 +- 25 files changed, 4887 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/lre.yaml create mode 100644 local-remote-execution/README.md create mode 100644 local-remote-execution/cpp_env.json create mode 100644 local-remote-execution/examples/BUILD.bazel create mode 100644 local-remote-execution/examples/hello.cpp create mode 100755 local-remote-execution/generated/LICENSE create mode 100644 local-remote-execution/generated/cc/BUILD create mode 100644 local-remote-execution/generated/cc/WORKSPACE create mode 100644 local-remote-execution/generated/cc/armeabi_cc_toolchain_config.bzl create mode 100644 local-remote-execution/generated/cc/builtin_include_directory_paths create mode 100644 local-remote-execution/generated/cc/cc_toolchain_config.bzl create mode 100644 local-remote-execution/generated/cc/cc_wrapper.sh create mode 100644 local-remote-execution/generated/cc/module.modulemap create mode 100644 local-remote-execution/generated/cc/tools/cpp/empty.cc create mode 100755 local-remote-execution/generated/config/BUILD create mode 100755 local-remote-execution/generated/java/BUILD create mode 100644 local-remote-execution/image.nix create mode 100644 local-remote-execution/rbe-configs-gen.nix create mode 100644 local-remote-execution/rbe_configs_gen_skip_pull.diff create mode 100644 tools/customClang.nix create mode 100644 tools/generate-toolchains.nix diff --git a/.bazelrc b/.bazelrc index ba7b66bf0..427367190 100644 --- a/.bazelrc +++ b/.bazelrc @@ -54,3 +54,17 @@ build:tsan --run_under=//tools:tsan.sh startup --windows_enable_symlinks build:windows --cxxopt=/std:c++14 --host_cxxopt=/std:c++14 build:windows --enable_runfiles + +# Local remote execution flags. + +# TODO(aaronmondal): rules_rust doesn't work with this enabled. +# +# Tracked in: https://github.com/TraceMachina/nativelink/issues/477. +build:lre --incompatible_enable_cc_toolchain_resolution + +# TODO(aaronmondal): Remove when https://github.com/bazelbuild/bazel/issues/7254 +# is resolved. +build:lre --define=EXECUTOR=remote + +# See: https://github.com/bazelbuild/bazel/issues/19714#issuecomment-1745604978 +build:lre --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 diff --git a/.github/workflows/lre.yaml b/.github/workflows/lre.yaml new file mode 100644 index 000000000..5f41755ef --- /dev/null +++ b/.github/workflows/lre.yaml @@ -0,0 +1,40 @@ +--- +name: Local Remote Execution + +on: + push: + branches: [main] + pull_request: + branches: [main] + +permissions: read-all + +jobs: + local: + strategy: + fail-fast: false + matrix: + os: [ubuntu-22.04] + name: Local / ${{ matrix.os }} + runs-on: ${{ matrix.os }} + steps: + + - name: Checkout + uses: >- # v4.1.1 + actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + + - name: Install Nix + uses: >- #v7 + DeterminateSystems/nix-installer-action@5620eb4af6b562c53e4d4628c0b6e4f9d9ae8612 + + - name: Cache Nix derivations + uses: >- # Custom commit, last pinned at 2023-11-17. + DeterminateSystems/magic-nix-cache-action@a04e6275a6bea232cd04fc6f3cbf20d4cb02a3e1 + + - name: Build hello_lre with LRE toolchain. + run: > + nix develop --impure --command + bash -c "bazel run \ + --config=lre \ + --verbose_failures \ + //local-remote-execution/examples:hello_lre" diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 7c3e9a7c4..89f4e80ce 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -2,6 +2,22 @@ workspace(name = "nativelink") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") +http_archive( + name = "rules_cc", + sha256 = "2037875b9a4456dce4a79d112a8ae885bbc4aad968e6587dca6e64f3a0900cdf", + strip_prefix = "rules_cc-0.0.9", + urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.9/rules_cc-0.0.9.tar.gz"], +) + +register_execution_platforms( + "@nativelink//local-remote-execution/generated/config:platform", +) + +register_toolchains( + "@nativelink//local-remote-execution/generated/config:cc-toolchain", + "@nativelink//local-remote-execution/generated/java:all", +) + http_archive( name = "rules_rust", sha256 = "36ab8f9facae745c9c9c1b33d225623d976e78f2cc3f729b7973d8c20934ab95", diff --git a/flake.nix b/flake.nix index 69859d6e5..1a7adb7a9 100644 --- a/flake.nix +++ b/flake.nix @@ -35,6 +35,13 @@ customStdenv = import ./tools/llvmStdenv.nix { inherit pkgs; }; + # TODO(aaronmondal): This doesn't work with rules_rust yet. + # Tracked in https://github.com/TraceMachina/nativelink/issues/477. + customClang = pkgs.callPackage ./tools/customClang.nix { + inherit pkgs; + stdenv = customStdenv; + }; + craneLib = crane.lib.${system}; src = pkgs.lib.cleanSourceWith { @@ -68,6 +75,8 @@ publish-ghcr = import ./tools/publish-ghcr.nix { inherit pkgs; }; local-image-test = import ./tools/local-image-test.nix { inherit pkgs; }; + + generate-toolchains = import ./tools/generate-toolchains.nix { inherit pkgs; }; in { apps = { @@ -79,6 +88,7 @@ packages = { inherit publish-ghcr local-image-test; default = nativelink; + lre = import ./local-remote-execution/image.nix { inherit pkgs nativelink; }; image = pkgs.dockerTools.streamLayeredImage { name = "nativelink"; contents = [ @@ -124,6 +134,8 @@ # Additional tools from within our development environment. local-image-test + generate-toolchains + customClang ] ++ maybeDarwinDeps; shellHook = '' # Generate the .pre-commit-config.yaml symlink when entering the diff --git a/local-remote-execution/README.md b/local-remote-execution/README.md new file mode 100644 index 000000000..360bdc405 --- /dev/null +++ b/local-remote-execution/README.md @@ -0,0 +1,45 @@ +# Local Remote Execution + +Nativelink's Local Remote Execution is a framework to build and rapidly iterate +custom toolchain setups that are transparent, fully hermetic and reproducible +across machines of the same system architecture. + +When used in conjunction with Nix, Local Remote Execution recreates the remote +execution environment in your local development environment. This lets you +seamlessly switch between remote and local builds while reusing the same cache. + +## Demo + +> [!Note] +> Local Remote Execution currently only works on `x86_64-linux`. + +First, create an OCI image containing with the toolchains: + +``` +generate-toolchains +``` + +The `generate-toolchains` command creates an OCI image from a nix `stdenv` and +generates toolchain configs from it. The resulting [generated C++ toolchains]( +./generated/cc/BUILD) have all tools pinned to specific derivations in +`/nix/store/*`. These paths mirror the ones that you fetched when entering the +flake development environment, i.e. the tools in the container and in you local +environment are the same. + +You can now build targets with the generated toolchain configs: + +``` +bazel run --config=lre //local-remote-execution/examples:hello_lre +``` + +If you have the remote execution container deployed as a worker you can switch +to remote execution. For instance when using the [Kubernetes example](../deployment-examples/kubernetes): + +``` +bazel run \ + --config=lre \ + --remote_cache=grpc://172.20.255.200:50051 \ + --define=EXECUTOR=remote \ + --remote_executor=grpc://172.20.255.201:50052 \ + //local-remote-execution/examples:hello_lre +``` diff --git a/local-remote-execution/cpp_env.json b/local-remote-execution/cpp_env.json new file mode 100644 index 000000000..9730ff80c --- /dev/null +++ b/local-remote-execution/cpp_env.json @@ -0,0 +1,5 @@ +{ + "ABI_LIBC_VERSION": "glibc_2.35", + "BAZEL_TARGET_LIBC": "glibc_2.35", + "BAZEL_HOST_SYSTEM": "x86_64-unknown-linux-gnu" +} diff --git a/local-remote-execution/examples/BUILD.bazel b/local-remote-execution/examples/BUILD.bazel new file mode 100644 index 000000000..d96d0477a --- /dev/null +++ b/local-remote-execution/examples/BUILD.bazel @@ -0,0 +1,7 @@ +load("@rules_cc//cc:defs.bzl", "cc_binary") + +cc_binary( + name = "hello_lre", + srcs = ["hello.cpp"], + copts = ["--verbose"], +) diff --git a/local-remote-execution/examples/hello.cpp b/local-remote-execution/examples/hello.cpp new file mode 100644 index 000000000..e48d8b38d --- /dev/null +++ b/local-remote-execution/examples/hello.cpp @@ -0,0 +1,6 @@ +#include + +auto main() -> int { + std::cout << "Hello, world!" << '\n'; + return 0; +} diff --git a/local-remote-execution/generated/LICENSE b/local-remote-execution/generated/LICENSE new file mode 100755 index 000000000..7b072c685 --- /dev/null +++ b/local-remote-execution/generated/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 Google LLC + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/local-remote-execution/generated/cc/BUILD b/local-remote-execution/generated/cc/BUILD new file mode 100644 index 000000000..c62b690b3 --- /dev/null +++ b/local-remote-execution/generated/cc/BUILD @@ -0,0 +1,171 @@ +# Copyright 2016 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This becomes the BUILD file for @local_config_cc// under non-BSD unixes. + +load("@rules_cc//cc:defs.bzl", "cc_toolchain", "cc_toolchain_suite") +load(":armeabi_cc_toolchain_config.bzl", "armeabi_cc_toolchain_config") +load(":cc_toolchain_config.bzl", "cc_toolchain_config") + +package(default_visibility = ["//visibility:public"]) + +licenses(["notice"]) # Apache 2.0 + +cc_library( + name = "malloc", +) + +filegroup( + name = "empty", + srcs = [], +) + +filegroup( + name = "cc_wrapper", + srcs = ["cc_wrapper.sh"], +) + +filegroup( + name = "compiler_deps", + srcs = glob( + ["extra_tools/**"], + allow_empty = True, + ) + [":builtin_include_directory_paths"], +) + +# This is the entry point for --crosstool_top. Toolchains are found +# by lopping off the name of --crosstool_top and searching for +# the "${CPU}" entry in the toolchains attribute. +cc_toolchain_suite( + name = "toolchain", + toolchains = { + "k8|clang": ":cc-compiler-k8", + "k8": ":cc-compiler-k8", + "armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a", + "armeabi-v7a": ":cc-compiler-armeabi-v7a", + }, +) + +cc_toolchain( + name = "cc-compiler-k8", + all_files = ":compiler_deps", + ar_files = ":compiler_deps", + as_files = ":compiler_deps", + compiler_files = ":compiler_deps", + dwp_files = ":empty", + linker_files = ":compiler_deps", + module_map = ":module.modulemap", + objcopy_files = ":empty", + strip_files = ":empty", + supports_param_files = 1, + toolchain_config = ":local", + toolchain_identifier = "local", +) + +cc_toolchain_config( + name = "local", + abi_libc_version = "glibc_2.35", + abi_version = "local", + compile_flags = [ + "-fstack-protector", + "-Wall", + "-Wthread-safety", + "-Wself-assign", + "-Wunused-but-set-parameter", + "-Wno-free-nonheap-object", + "-fcolor-diagnostics", + "-fno-omit-frame-pointer", + ], + compiler = "clang", + coverage_compile_flags = ["--coverage"], + coverage_link_flags = ["--coverage"], + cpu = "k8", + cxx_builtin_include_directories = [ + "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include", + "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include", + "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share", + "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1", + "/nix/store/iigpn23r754xzf7rzymlpazbayx7jf9x-libcxxabi-16.0.6-dev/include/c++/v1", + ], + cxx_flags = ["-std=c++14"], + dbg_compile_flags = ["-g"], + host_system_name = "x86_64-unknown-linux-gnu", + link_flags = [ + "-Wl,-no-as-needed", + "-Wl,-z,relro,-z,now", + "-B/nix/store/51cw7fa986m44q5rw0rxvl0pbskhccw8-customClang/bin", + "-B/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin", + "-L/nix/store/nn3wm6dxy3ps0835kgc9jx4601l1ai5q-libcxx-16.0.6/lib", + "-L/nix/store/zb21z3mhidfrl3nw6i5a6hrzm84xx7jb-libcxxabi-16.0.6/lib", + "-L/nix/store/1na9hqj99809qdydgqqkipr2b8gqprzb-libunwind-16.0.6/lib", + "-lc++", + "-Wl,-rpath,/nix/store/nn3wm6dxy3ps0835kgc9jx4601l1ai5q-libcxx-16.0.6/lib,-rpath,/nix/store/zb21z3mhidfrl3nw6i5a6hrzm84xx7jb-libcxxabi-16.0.6/lib,-rpath,/nix/store/1na9hqj99809qdydgqqkipr2b8gqprzb-libunwind-16.0.6/lib,-rpath,/nix/store/qn3ggz5sf3hkjs2c797xf7nan3amdxmp-glibc-2.38-27/lib", + ], + link_libs = [ + "-lstdc++", + "-lm", + ], + opt_compile_flags = [ + "-g0", + "-O2", + "-D_FORTIFY_SOURCE=1", + "-DNDEBUG", + "-ffunction-sections", + "-fdata-sections", + ], + opt_link_flags = ["-Wl,--gc-sections"], + supports_start_end_lib = False, + target_libc = "glibc_2.35", + target_system_name = "local", + tool_paths = { + "ar": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/ar", + "ld": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/ld", + "llvm-cov": "None", + "llvm-profdata": "None", + "cpp": "/usr/bin/cpp", + "gcc": "/nix/store/51cw7fa986m44q5rw0rxvl0pbskhccw8-customClang/bin/customClang", + "dwp": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/dwp", + "gcov": "None", + "nm": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/nm", + "objcopy": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/objcopy", + "objdump": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/objdump", + "strip": "/nix/store/jmi5c3rvchaqkj6br68cxfg37b6cqv97-binutils-wrapper-2.40/bin/strip", + }, + toolchain_identifier = "local", + unfiltered_compile_flags = [ + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + ], +) + +# Android tooling requires a default toolchain for the armeabi-v7a cpu. +cc_toolchain( + name = "cc-compiler-armeabi-v7a", + all_files = ":empty", + ar_files = ":empty", + as_files = ":empty", + compiler_files = ":empty", + dwp_files = ":empty", + linker_files = ":empty", + objcopy_files = ":empty", + strip_files = ":empty", + supports_param_files = 1, + toolchain_config = ":stub_armeabi-v7a", + toolchain_identifier = "stub_armeabi-v7a", +) + +armeabi_cc_toolchain_config(name = "stub_armeabi-v7a") diff --git a/local-remote-execution/generated/cc/WORKSPACE b/local-remote-execution/generated/cc/WORKSPACE new file mode 100644 index 000000000..bc05b4c36 --- /dev/null +++ b/local-remote-execution/generated/cc/WORKSPACE @@ -0,0 +1,2 @@ +# DO NOT EDIT: automatically generated WORKSPACE file for cc_autoconf rule +workspace(name = "local_config_cc") diff --git a/local-remote-execution/generated/cc/armeabi_cc_toolchain_config.bzl b/local-remote-execution/generated/cc/armeabi_cc_toolchain_config.bzl new file mode 100644 index 000000000..72ef48ae6 --- /dev/null +++ b/local-remote-execution/generated/cc/armeabi_cc_toolchain_config.bzl @@ -0,0 +1,82 @@ +# Copyright 2019 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""A Starlark cc_toolchain configuration rule""" + +load( + "@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl", + "feature", + "tool_path", +) + +def _impl(ctx): + toolchain_identifier = "stub_armeabi-v7a" + host_system_name = "armeabi-v7a" + target_system_name = "armeabi-v7a" + target_cpu = "armeabi-v7a" + target_libc = "armeabi-v7a" + compiler = "compiler" + abi_version = "armeabi-v7a" + abi_libc_version = "armeabi-v7a" + cc_target_os = None + builtin_sysroot = None + action_configs = [] + + supports_pic_feature = feature(name = "supports_pic", enabled = True) + supports_dynamic_linker_feature = feature(name = "supports_dynamic_linker", enabled = True) + features = [supports_dynamic_linker_feature, supports_pic_feature] + + cxx_builtin_include_directories = [] + artifact_name_patterns = [] + make_variables = [] + + tool_paths = [ + tool_path(name = "ar", path = "/bin/false"), + tool_path(name = "cpp", path = "/bin/false"), + tool_path(name = "dwp", path = "/bin/false"), + tool_path(name = "gcc", path = "/bin/false"), + tool_path(name = "gcov", path = "/bin/false"), + tool_path(name = "ld", path = "/bin/false"), + tool_path(name = "llvm-profdata", path = "/bin/false"), + tool_path(name = "nm", path = "/bin/false"), + tool_path(name = "objcopy", path = "/bin/false"), + tool_path(name = "objdump", path = "/bin/false"), + tool_path(name = "strip", path = "/bin/false"), + ] + + return cc_common.create_cc_toolchain_config_info( + ctx = ctx, + features = features, + action_configs = action_configs, + artifact_name_patterns = artifact_name_patterns, + cxx_builtin_include_directories = cxx_builtin_include_directories, + toolchain_identifier = toolchain_identifier, + host_system_name = host_system_name, + target_system_name = target_system_name, + target_cpu = target_cpu, + target_libc = target_libc, + compiler = compiler, + abi_version = abi_version, + abi_libc_version = abi_libc_version, + tool_paths = tool_paths, + make_variables = make_variables, + builtin_sysroot = builtin_sysroot, + cc_target_os = cc_target_os, + ) + +armeabi_cc_toolchain_config = rule( + implementation = _impl, + attrs = {}, + provides = [CcToolchainConfigInfo], +) diff --git a/local-remote-execution/generated/cc/builtin_include_directory_paths b/local-remote-execution/generated/cc/builtin_include_directory_paths new file mode 100644 index 000000000..782138c02 --- /dev/null +++ b/local-remote-execution/generated/cc/builtin_include_directory_paths @@ -0,0 +1,11 @@ +This file is generated by cc_configure and contains builtin include directories +that /nix/store/51cw7fa986m44q5rw0rxvl0pbskhccw8-customClang/bin/customClang reported. This file is a dependency of every compilation action and +changes to it will be reflected in the action cache key. When some of these +paths change, Bazel will make sure to rerun the action, even though none of +declared action inputs or the action commandline changes. + +/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include +/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include +/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share +/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1 +/nix/store/iigpn23r754xzf7rzymlpazbayx7jf9x-libcxxabi-16.0.6-dev/include/c++/v1 diff --git a/local-remote-execution/generated/cc/cc_toolchain_config.bzl b/local-remote-execution/generated/cc/cc_toolchain_config.bzl new file mode 100644 index 000000000..e65754720 --- /dev/null +++ b/local-remote-execution/generated/cc/cc_toolchain_config.bzl @@ -0,0 +1,1435 @@ +# Copyright 2019 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""A Starlark cc_toolchain configuration rule""" + +load("@bazel_tools//tools/build_defs/cc:action_names.bzl", "ACTION_NAMES") +load( + "@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl", + "action_config", + "artifact_name_pattern", + "feature", + "feature_set", + "flag_group", + "flag_set", + "tool", + "tool_path", + "variable_with_value", + "with_feature_set", +) + +def layering_check_features(compiler): + if compiler != "clang": + return [] + return [ + feature( + name = "use_module_maps", + requires = [feature_set(features = ["module_maps"])], + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ], + flag_groups = [ + flag_group( + flags = [ + "-fmodule-name=%{module_name}", + "-fmodule-map-file=%{module_map_file}", + ], + ), + ], + ), + ], + ), + + # Tell blaze we support module maps in general, so they will be generated + # for all c/c++ rules. + # Note: not all C++ rules support module maps; thus, do not imply this + # feature from other features - instead, require it. + feature(name = "module_maps", enabled = True), + feature( + name = "layering_check", + implies = ["use_module_maps"], + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ], + flag_groups = [ + flag_group(flags = [ + "-fmodules-strict-decluse", + "-Wprivate-header", + ]), + flag_group( + iterate_over = "dependent_module_map_files", + flags = [ + "-fmodule-map-file=%{dependent_module_map_files}", + ], + ), + ], + ), + ], + ), + ] + +all_compile_actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.clif_match, + ACTION_NAMES.lto_backend, +] + +all_cpp_compile_actions = [ + ACTION_NAMES.cpp_compile, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.clif_match, +] + +preprocessor_compile_actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.clif_match, +] + +codegen_compile_actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.lto_backend, +] + +all_link_actions = [ + ACTION_NAMES.cpp_link_executable, + ACTION_NAMES.cpp_link_dynamic_library, + ACTION_NAMES.cpp_link_nodeps_dynamic_library, +] + +lto_index_actions = [ + ACTION_NAMES.lto_index_for_executable, + ACTION_NAMES.lto_index_for_dynamic_library, + ACTION_NAMES.lto_index_for_nodeps_dynamic_library, +] + +def _sanitizer_feature(name = "", specific_compile_flags = [], specific_link_flags = []): + return feature( + name = name, + flag_sets = [ + flag_set( + actions = all_compile_actions, + flag_groups = [ + flag_group(flags = [ + "-fno-omit-frame-pointer", + "-fno-sanitize-recover=all", + ] + specific_compile_flags), + ], + with_features = [ + with_feature_set(features = [name]), + ], + ), + flag_set( + actions = all_link_actions, + flag_groups = [ + flag_group(flags = specific_link_flags), + ], + with_features = [ + with_feature_set(features = [name]), + ], + ), + ], + ) + +def _impl(ctx): + tool_paths = [ + tool_path(name = name, path = path) + for name, path in ctx.attr.tool_paths.items() + ] + action_configs = [] + + llvm_cov_action = action_config( + action_name = ACTION_NAMES.llvm_cov, + tools = [ + tool( + path = ctx.attr.tool_paths["llvm-cov"], + ), + ], + ) + + action_configs.append(llvm_cov_action) + + supports_pic_feature = feature( + name = "supports_pic", + enabled = True, + ) + supports_start_end_lib_feature = feature( + name = "supports_start_end_lib", + enabled = True, + ) + + default_compile_flags_feature = feature( + name = "default_compile_flags", + enabled = True, + flag_sets = [ + flag_set( + actions = all_compile_actions, + flag_groups = [ + flag_group( + # Security hardening requires optimization. + # We need to undef it as some distributions now have it enabled by default. + flags = ["-U_FORTIFY_SOURCE"], + ), + ], + with_features = [ + with_feature_set( + not_features = ["thin_lto"], + ), + ], + ), + flag_set( + actions = all_compile_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.compile_flags, + ), + ] if ctx.attr.compile_flags else []), + ), + flag_set( + actions = all_compile_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.dbg_compile_flags, + ), + ] if ctx.attr.dbg_compile_flags else []), + with_features = [with_feature_set(features = ["dbg"])], + ), + flag_set( + actions = all_compile_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.opt_compile_flags, + ), + ] if ctx.attr.opt_compile_flags else []), + with_features = [with_feature_set(features = ["opt"])], + ), + flag_set( + actions = all_cpp_compile_actions + [ACTION_NAMES.lto_backend], + flag_groups = ([ + flag_group( + flags = ctx.attr.cxx_flags, + ), + ] if ctx.attr.cxx_flags else []), + ), + ], + ) + + default_link_flags_feature = feature( + name = "default_link_flags", + enabled = True, + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.link_flags, + ), + ] if ctx.attr.link_flags else []), + ), + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.opt_link_flags, + ), + ] if ctx.attr.opt_link_flags else []), + with_features = [with_feature_set(features = ["opt"])], + ), + ], + ) + + dbg_feature = feature(name = "dbg") + + opt_feature = feature(name = "opt") + + sysroot_feature = feature( + name = "sysroot", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.lto_backend, + ACTION_NAMES.clif_match, + ] + all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["--sysroot=%{sysroot}"], + expand_if_available = "sysroot", + ), + ], + ), + ], + ) + + fdo_optimize_feature = feature( + name = "fdo_optimize", + flag_sets = [ + flag_set( + actions = [ACTION_NAMES.c_compile, ACTION_NAMES.cpp_compile], + flag_groups = [ + flag_group( + flags = [ + "-fprofile-use=%{fdo_profile_path}", + "-fprofile-correction", + ], + expand_if_available = "fdo_profile_path", + ), + ], + ), + ], + provides = ["profile"], + ) + + supports_dynamic_linker_feature = feature(name = "supports_dynamic_linker", enabled = True) + + user_compile_flags_feature = feature( + name = "user_compile_flags", + enabled = True, + flag_sets = [ + flag_set( + actions = all_compile_actions, + flag_groups = [ + flag_group( + flags = ["%{user_compile_flags}"], + iterate_over = "user_compile_flags", + expand_if_available = "user_compile_flags", + ), + ], + ), + ], + ) + + unfiltered_compile_flags_feature = feature( + name = "unfiltered_compile_flags", + enabled = True, + flag_sets = [ + flag_set( + actions = all_compile_actions, + flag_groups = ([ + flag_group( + flags = ctx.attr.unfiltered_compile_flags, + ), + ] if ctx.attr.unfiltered_compile_flags else []), + ), + ], + ) + + library_search_directories_feature = feature( + name = "library_search_directories", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["-L%{library_search_directories}"], + iterate_over = "library_search_directories", + expand_if_available = "library_search_directories", + ), + ], + ), + ], + ) + + static_libgcc_feature = feature( + name = "static_libgcc", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.cpp_link_executable, + ACTION_NAMES.cpp_link_dynamic_library, + ACTION_NAMES.lto_index_for_executable, + ACTION_NAMES.lto_index_for_dynamic_library, + ], + flag_groups = [flag_group(flags = ["-static-libgcc"])], + with_features = [ + with_feature_set(features = ["static_link_cpp_runtimes"]), + ], + ), + ], + ) + + pic_feature = feature( + name = "pic", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.cpp_module_compile, + ], + flag_groups = [ + flag_group(flags = ["-fPIC"], expand_if_available = "pic"), + ], + ), + ], + ) + + per_object_debug_info_feature = feature( + name = "per_object_debug_info", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_module_codegen, + ], + flag_groups = [ + flag_group( + flags = ["-gsplit-dwarf", "-g"], + expand_if_available = "per_object_debug_info_file", + ), + ], + ), + ], + ) + + preprocessor_defines_feature = feature( + name = "preprocessor_defines", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.clif_match, + ], + flag_groups = [ + flag_group( + flags = ["-D%{preprocessor_defines}"], + iterate_over = "preprocessor_defines", + ), + ], + ), + ], + ) + + cs_fdo_optimize_feature = feature( + name = "cs_fdo_optimize", + flag_sets = [ + flag_set( + actions = [ACTION_NAMES.lto_backend], + flag_groups = [ + flag_group( + flags = [ + "-fprofile-use=%{fdo_profile_path}", + "-Wno-profile-instr-unprofiled", + "-Wno-profile-instr-out-of-date", + "-fprofile-correction", + ], + expand_if_available = "fdo_profile_path", + ), + ], + ), + ], + provides = ["csprofile"], + ) + + autofdo_feature = feature( + name = "autofdo", + flag_sets = [ + flag_set( + actions = [ACTION_NAMES.c_compile, ACTION_NAMES.cpp_compile], + flag_groups = [ + flag_group( + flags = [ + "-fauto-profile=%{fdo_profile_path}", + "-fprofile-correction", + ], + expand_if_available = "fdo_profile_path", + ), + ], + ), + ], + provides = ["profile"], + ) + + runtime_library_search_directories_feature = feature( + name = "runtime_library_search_directories", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + iterate_over = "runtime_library_search_directories", + flag_groups = [ + flag_group( + flags = [ + "-Xlinker", + "-rpath", + "-Xlinker", + "$EXEC_ORIGIN/%{runtime_library_search_directories}", + ], + expand_if_true = "is_cc_test", + ), + flag_group( + flags = [ + "-Xlinker", + "-rpath", + "-Xlinker", + "$ORIGIN/%{runtime_library_search_directories}", + ], + expand_if_false = "is_cc_test", + ), + ], + expand_if_available = + "runtime_library_search_directories", + ), + ], + with_features = [ + with_feature_set(features = ["static_link_cpp_runtimes"]), + ], + ), + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + iterate_over = "runtime_library_search_directories", + flag_groups = [ + flag_group( + flags = [ + "-Xlinker", + "-rpath", + "-Xlinker", + "$ORIGIN/%{runtime_library_search_directories}", + ], + ), + ], + expand_if_available = + "runtime_library_search_directories", + ), + ], + with_features = [ + with_feature_set( + not_features = ["static_link_cpp_runtimes"], + ), + ], + ), + ], + ) + + fission_support_feature = feature( + name = "fission_support", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["-Wl,--gdb-index"], + expand_if_available = "is_using_fission", + ), + ], + ), + ], + ) + + shared_flag_feature = feature( + name = "shared_flag", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.cpp_link_dynamic_library, + ACTION_NAMES.cpp_link_nodeps_dynamic_library, + ACTION_NAMES.lto_index_for_dynamic_library, + ACTION_NAMES.lto_index_for_nodeps_dynamic_library, + ], + flag_groups = [flag_group(flags = ["-shared"])], + ), + ], + ) + + random_seed_feature = feature( + name = "random_seed", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_module_codegen, + ACTION_NAMES.cpp_module_compile, + ], + flag_groups = [ + flag_group( + flags = ["-frandom-seed=%{output_file}"], + expand_if_available = "output_file", + ), + ], + ), + ], + ) + + includes_feature = feature( + name = "includes", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.clif_match, + ACTION_NAMES.objc_compile, + ACTION_NAMES.objcpp_compile, + ], + flag_groups = [ + flag_group( + flags = ["-include", "%{includes}"], + iterate_over = "includes", + expand_if_available = "includes", + ), + ], + ), + ], + ) + + fdo_instrument_feature = feature( + name = "fdo_instrument", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ] + all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = [ + "-fprofile-generate=%{fdo_instrument_path}", + "-fno-data-sections", + ], + expand_if_available = "fdo_instrument_path", + ), + ], + ), + ], + provides = ["profile"], + ) + + cs_fdo_instrument_feature = feature( + name = "cs_fdo_instrument", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.lto_backend, + ] + all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = [ + "-fcs-profile-generate=%{cs_fdo_instrument_path}", + ], + expand_if_available = "cs_fdo_instrument_path", + ), + ], + ), + ], + provides = ["csprofile"], + ) + + include_paths_feature = feature( + name = "include_paths", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.clif_match, + ACTION_NAMES.objc_compile, + ACTION_NAMES.objcpp_compile, + ], + flag_groups = [ + flag_group( + flags = ["-iquote", "%{quote_include_paths}"], + iterate_over = "quote_include_paths", + ), + flag_group( + flags = ["-I%{include_paths}"], + iterate_over = "include_paths", + ), + flag_group( + flags = ["-isystem", "%{system_include_paths}"], + iterate_over = "system_include_paths", + ), + ], + ), + ], + ) + + external_include_paths_feature = feature( + name = "external_include_paths", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.linkstamp_compile, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.clif_match, + ACTION_NAMES.objc_compile, + ACTION_NAMES.objcpp_compile, + ], + flag_groups = [ + flag_group( + flags = ["-isystem", "%{external_include_paths}"], + iterate_over = "external_include_paths", + expand_if_available = "external_include_paths", + ), + ], + ), + ], + ) + + symbol_counts_feature = feature( + name = "symbol_counts", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = [ + "-Wl,--print-symbol-counts=%{symbol_counts_output}", + ], + expand_if_available = "symbol_counts_output", + ), + ], + ), + ], + ) + + strip_debug_symbols_feature = feature( + name = "strip_debug_symbols", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["-Wl,-S"], + expand_if_available = "strip_debug_symbols", + ), + ], + ), + ], + ) + + build_interface_libraries_feature = feature( + name = "build_interface_libraries", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.cpp_link_dynamic_library, + ACTION_NAMES.cpp_link_nodeps_dynamic_library, + ACTION_NAMES.lto_index_for_dynamic_library, + ACTION_NAMES.lto_index_for_nodeps_dynamic_library, + ], + flag_groups = [ + flag_group( + flags = [ + "%{generate_interface_library}", + "%{interface_library_builder_path}", + "%{interface_library_input_path}", + "%{interface_library_output_path}", + ], + expand_if_available = "generate_interface_library", + ), + ], + with_features = [ + with_feature_set( + features = ["supports_interface_shared_libraries"], + ), + ], + ), + ], + ) + + libraries_to_link_feature = feature( + name = "libraries_to_link", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + iterate_over = "libraries_to_link", + flag_groups = [ + flag_group( + flags = ["-Wl,--start-lib"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file_group", + ), + ), + flag_group( + flags = ["-Wl,-whole-archive"], + expand_if_true = + "libraries_to_link.is_whole_archive", + ), + flag_group( + flags = ["%{libraries_to_link.object_files}"], + iterate_over = "libraries_to_link.object_files", + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file_group", + ), + ), + flag_group( + flags = ["%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file", + ), + ), + flag_group( + flags = ["%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "interface_library", + ), + ), + flag_group( + flags = ["%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "static_library", + ), + ), + flag_group( + flags = ["-l%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "dynamic_library", + ), + ), + flag_group( + flags = ["-l:%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "versioned_dynamic_library", + ), + ), + flag_group( + flags = ["-Wl,-no-whole-archive"], + expand_if_true = "libraries_to_link.is_whole_archive", + ), + flag_group( + flags = ["-Wl,--end-lib"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file_group", + ), + ), + ], + expand_if_available = "libraries_to_link", + ), + flag_group( + flags = ["-Wl,@%{thinlto_param_file}"], + expand_if_true = "thinlto_param_file", + ), + ], + ), + ], + ) + + user_link_flags_feature = feature( + name = "user_link_flags", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["%{user_link_flags}"], + iterate_over = "user_link_flags", + expand_if_available = "user_link_flags", + ), + ], + ), + ], + ) + + default_link_libs_feature = feature( + name = "default_link_libs", + enabled = True, + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [flag_group(flags = ctx.attr.link_libs)] if ctx.attr.link_libs else [], + ), + ], + ) + + fdo_prefetch_hints_feature = feature( + name = "fdo_prefetch_hints", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.lto_backend, + ], + flag_groups = [ + flag_group( + flags = [ + "-mllvm", + "-prefetch-hints-file=%{fdo_prefetch_hints_path}", + ], + expand_if_available = "fdo_prefetch_hints_path", + ), + ], + ), + ], + ) + + linkstamps_feature = feature( + name = "linkstamps", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["%{linkstamp_paths}"], + iterate_over = "linkstamp_paths", + expand_if_available = "linkstamp_paths", + ), + ], + ), + ], + ) + + archiver_flags_feature = feature( + name = "archiver_flags", + flag_sets = [ + flag_set( + actions = [ACTION_NAMES.cpp_link_static_library], + flag_groups = [ + flag_group(flags = ["rcsD"]), + flag_group( + flags = ["%{output_execpath}"], + expand_if_available = "output_execpath", + ), + ], + with_features = [ + with_feature_set( + not_features = ["libtool"], + ), + ], + ), + flag_set( + actions = [ACTION_NAMES.cpp_link_static_library], + flag_groups = [ + flag_group(flags = ["-static", "-s"]), + flag_group( + flags = ["-o", "%{output_execpath}"], + expand_if_available = "output_execpath", + ), + ], + with_features = [ + with_feature_set( + features = ["libtool"], + ), + ], + ), + flag_set( + actions = [ACTION_NAMES.cpp_link_static_library], + flag_groups = [ + flag_group( + iterate_over = "libraries_to_link", + flag_groups = [ + flag_group( + flags = ["%{libraries_to_link.name}"], + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file", + ), + ), + flag_group( + flags = ["%{libraries_to_link.object_files}"], + iterate_over = "libraries_to_link.object_files", + expand_if_equal = variable_with_value( + name = "libraries_to_link.type", + value = "object_file_group", + ), + ), + ], + expand_if_available = "libraries_to_link", + ), + ], + ), + flag_set( + actions = [ACTION_NAMES.cpp_link_static_library], + flag_groups = ([ + flag_group( + flags = ctx.attr.archive_flags, + ), + ] if ctx.attr.archive_flags else []), + ), + ], + ) + + force_pic_flags_feature = feature( + name = "force_pic_flags", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.cpp_link_executable, + ACTION_NAMES.lto_index_for_executable, + ], + flag_groups = [ + flag_group( + flags = ["-pie"], + expand_if_available = "force_pic", + ), + ], + ), + ], + ) + + dependency_file_feature = feature( + name = "dependency_file", + enabled = True, + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.objc_compile, + ACTION_NAMES.objcpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.clif_match, + ], + flag_groups = [ + flag_group( + flags = ["-MD", "-MF", "%{dependency_file}"], + expand_if_available = "dependency_file", + ), + ], + ), + ], + ) + + serialized_diagnostics_file_feature = feature( + name = "serialized_diagnostics_file", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.assemble, + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_module_compile, + ACTION_NAMES.objc_compile, + ACTION_NAMES.objcpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.clif_match, + ], + flag_groups = [ + flag_group( + flags = ["--serialize-diagnostics", "%{serialized_diagnostics_file}"], + expand_if_available = "serialized_diagnostics_file", + ), + ], + ), + ], + ) + + dynamic_library_linker_tool_feature = feature( + name = "dynamic_library_linker_tool", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.cpp_link_dynamic_library, + ACTION_NAMES.cpp_link_nodeps_dynamic_library, + ACTION_NAMES.lto_index_for_dynamic_library, + ACTION_NAMES.lto_index_for_nodeps_dynamic_library, + ], + flag_groups = [ + flag_group( + flags = [" + cppLinkDynamicLibraryToolPath + "], + expand_if_available = "generate_interface_library", + ), + ], + with_features = [ + with_feature_set( + features = ["supports_interface_shared_libraries"], + ), + ], + ), + ], + ) + + output_execpath_flags_feature = feature( + name = "output_execpath_flags", + flag_sets = [ + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = [ + flag_group( + flags = ["-o", "%{output_execpath}"], + expand_if_available = "output_execpath", + ), + ], + ), + ], + ) + + # Note that we also set --coverage for c++-link-nodeps-dynamic-library. The + # generated code contains references to gcov symbols, and the dynamic linker + # can't resolve them unless the library is linked against gcov. + coverage_feature = feature( + name = "coverage", + provides = ["profile"], + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.preprocess_assemble, + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ACTION_NAMES.cpp_header_parsing, + ACTION_NAMES.cpp_module_compile, + ], + flag_groups = ([ + flag_group(flags = ctx.attr.coverage_compile_flags), + ] if ctx.attr.coverage_compile_flags else []), + ), + flag_set( + actions = all_link_actions + lto_index_actions, + flag_groups = ([ + flag_group(flags = ctx.attr.coverage_link_flags), + ] if ctx.attr.coverage_link_flags else []), + ), + ], + ) + + thinlto_feature = feature( + name = "thin_lto", + flag_sets = [ + flag_set( + actions = [ + ACTION_NAMES.c_compile, + ACTION_NAMES.cpp_compile, + ] + all_link_actions + lto_index_actions, + flag_groups = [ + flag_group(flags = ["-flto=thin"]), + flag_group( + expand_if_available = "lto_indexing_bitcode_file", + flags = [ + "-Xclang", + "-fthin-link-bitcode=%{lto_indexing_bitcode_file}", + ], + ), + ], + ), + flag_set( + actions = [ACTION_NAMES.linkstamp_compile], + flag_groups = [flag_group(flags = ["-DBUILD_LTO_TYPE=thin"])], + ), + flag_set( + actions = lto_index_actions, + flag_groups = [ + flag_group(flags = [ + "-flto=thin", + "-Wl,-plugin-opt,thinlto-index-only%{thinlto_optional_params_file}", + "-Wl,-plugin-opt,thinlto-emit-imports-files", + "-Wl,-plugin-opt,thinlto-prefix-replace=%{thinlto_prefix_replace}", + ]), + flag_group( + expand_if_available = "thinlto_object_suffix_replace", + flags = [ + "-Wl,-plugin-opt,thinlto-object-suffix-replace=%{thinlto_object_suffix_replace}", + ], + ), + flag_group( + expand_if_available = "thinlto_merged_object_file", + flags = [ + "-Wl,-plugin-opt,obj-path=%{thinlto_merged_object_file}", + ], + ), + ], + ), + flag_set( + actions = [ACTION_NAMES.lto_backend], + flag_groups = [ + flag_group(flags = [ + "-c", + "-fthinlto-index=%{thinlto_index}", + "-o", + "%{thinlto_output_object_file}", + "-x", + "ir", + "%{thinlto_input_bitcode_file}", + ]), + ], + ), + ], + ) + + treat_warnings_as_errors_feature = feature( + name = "treat_warnings_as_errors", + flag_sets = [ + flag_set( + actions = [ACTION_NAMES.c_compile, ACTION_NAMES.cpp_compile], + flag_groups = [flag_group(flags = ["-Werror"])], + ), + flag_set( + actions = all_link_actions, + flag_groups = [flag_group(flags = ["-Wl,-fatal-warnings"])], + ), + ], + ) + + archive_param_file_feature = feature( + name = "archive_param_file", + enabled = True, + ) + + asan_feature = _sanitizer_feature( + name = "asan", + specific_compile_flags = [ + "-fsanitize=address", + "-fno-common", + ], + specific_link_flags = [ + "-fsanitize=address", + ], + ) + + tsan_feature = _sanitizer_feature( + name = "tsan", + specific_compile_flags = [ + "-fsanitize=thread", + ], + specific_link_flags = [ + "-fsanitize=thread", + ], + ) + + ubsan_feature = _sanitizer_feature( + name = "ubsan", + specific_compile_flags = [ + "-fsanitize=undefined", + ], + specific_link_flags = [ + "-fsanitize=undefined", + ], + ) + + is_linux = ctx.attr.target_libc != "macosx" + libtool_feature = feature( + name = "libtool", + enabled = not is_linux, + ) + + # TODO(#8303): Mac crosstool should also declare every feature. + if is_linux: + # Linux artifact name patterns are the default. + artifact_name_patterns = [] + features = [ + dependency_file_feature, + serialized_diagnostics_file_feature, + random_seed_feature, + pic_feature, + per_object_debug_info_feature, + preprocessor_defines_feature, + includes_feature, + include_paths_feature, + external_include_paths_feature, + fdo_instrument_feature, + cs_fdo_instrument_feature, + cs_fdo_optimize_feature, + thinlto_feature, + fdo_prefetch_hints_feature, + autofdo_feature, + build_interface_libraries_feature, + dynamic_library_linker_tool_feature, + symbol_counts_feature, + shared_flag_feature, + linkstamps_feature, + output_execpath_flags_feature, + runtime_library_search_directories_feature, + library_search_directories_feature, + libtool_feature, + archiver_flags_feature, + force_pic_flags_feature, + fission_support_feature, + strip_debug_symbols_feature, + coverage_feature, + supports_pic_feature, + asan_feature, + tsan_feature, + ubsan_feature, + ] + ( + [ + supports_start_end_lib_feature, + ] if ctx.attr.supports_start_end_lib else [] + ) + [ + default_compile_flags_feature, + default_link_flags_feature, + libraries_to_link_feature, + user_link_flags_feature, + default_link_libs_feature, + static_libgcc_feature, + fdo_optimize_feature, + supports_dynamic_linker_feature, + dbg_feature, + opt_feature, + user_compile_flags_feature, + sysroot_feature, + unfiltered_compile_flags_feature, + treat_warnings_as_errors_feature, + archive_param_file_feature, + ] + layering_check_features(ctx.attr.compiler) + else: + # macOS artifact name patterns differ from the defaults only for dynamic + # libraries. + artifact_name_patterns = [ + artifact_name_pattern( + category_name = "dynamic_library", + prefix = "lib", + extension = ".dylib", + ), + ] + features = [ + libtool_feature, + archiver_flags_feature, + supports_pic_feature, + asan_feature, + tsan_feature, + ubsan_feature, + ] + ( + [ + supports_start_end_lib_feature, + ] if ctx.attr.supports_start_end_lib else [] + ) + [ + coverage_feature, + default_compile_flags_feature, + default_link_flags_feature, + user_link_flags_feature, + default_link_libs_feature, + fdo_optimize_feature, + supports_dynamic_linker_feature, + dbg_feature, + opt_feature, + user_compile_flags_feature, + sysroot_feature, + unfiltered_compile_flags_feature, + treat_warnings_as_errors_feature, + archive_param_file_feature, + ] + layering_check_features(ctx.attr.compiler) + + return cc_common.create_cc_toolchain_config_info( + ctx = ctx, + features = features, + action_configs = action_configs, + artifact_name_patterns = artifact_name_patterns, + cxx_builtin_include_directories = ctx.attr.cxx_builtin_include_directories, + toolchain_identifier = ctx.attr.toolchain_identifier, + host_system_name = ctx.attr.host_system_name, + target_system_name = ctx.attr.target_system_name, + target_cpu = ctx.attr.cpu, + target_libc = ctx.attr.target_libc, + compiler = ctx.attr.compiler, + abi_version = ctx.attr.abi_version, + abi_libc_version = ctx.attr.abi_libc_version, + tool_paths = tool_paths, + builtin_sysroot = ctx.attr.builtin_sysroot, + ) + +cc_toolchain_config = rule( + implementation = _impl, + attrs = { + "cpu": attr.string(mandatory = True), + "compiler": attr.string(mandatory = True), + "toolchain_identifier": attr.string(mandatory = True), + "host_system_name": attr.string(mandatory = True), + "target_system_name": attr.string(mandatory = True), + "target_libc": attr.string(mandatory = True), + "abi_version": attr.string(mandatory = True), + "abi_libc_version": attr.string(mandatory = True), + "cxx_builtin_include_directories": attr.string_list(), + "tool_paths": attr.string_dict(), + "compile_flags": attr.string_list(), + "dbg_compile_flags": attr.string_list(), + "opt_compile_flags": attr.string_list(), + "cxx_flags": attr.string_list(), + "link_flags": attr.string_list(), + "archive_flags": attr.string_list(), + "link_libs": attr.string_list(), + "opt_link_flags": attr.string_list(), + "unfiltered_compile_flags": attr.string_list(), + "coverage_compile_flags": attr.string_list(), + "coverage_link_flags": attr.string_list(), + "supports_start_end_lib": attr.bool(), + "builtin_sysroot": attr.string(), + }, + provides = [CcToolchainConfigInfo], +) diff --git a/local-remote-execution/generated/cc/cc_wrapper.sh b/local-remote-execution/generated/cc/cc_wrapper.sh new file mode 100644 index 000000000..90cdb096d --- /dev/null +++ b/local-remote-execution/generated/cc/cc_wrapper.sh @@ -0,0 +1,25 @@ +#!/nix/store/ind5lrh54vbfm0j7q3qf53710hf9rznr-bash/bin/bash +# +# Copyright 2015 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Ship the environment to the C++ action +# +set -eu + +# Set-up the environment + + +# Call the C++ compiler +/nix/store/51cw7fa986m44q5rw0rxvl0pbskhccw8-customClang/bin/customClang "$@" diff --git a/local-remote-execution/generated/cc/module.modulemap b/local-remote-execution/generated/cc/module.modulemap new file mode 100644 index 000000000..0e47d9b42 --- /dev/null +++ b/local-remote-execution/generated/cc/module.modulemap @@ -0,0 +1,2512 @@ +module "crosstool" [system] { + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_builtin_vars.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_cmath.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_complex_builtins.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_device_functions.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_intrinsics.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_libdevice_declares.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_math.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_math_forward_declares.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_runtime_wrapper.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_cuda_texture_intrinsics.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_hip_cmath.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_hip_libdevice_declares.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_hip_math.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_hip_runtime_wrapper.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__clang_hip_stdlib.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__stddef_max_align_t.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__wmmintrin_aes.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/__wmmintrin_pclmul.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/adxintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/altivec.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ammintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/amxfp16intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/amxintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm64intr.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_acle.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_bf16.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_cde.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_cmse.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_fp16.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_mve.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_neon.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_neon_sve_bridge.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/arm_sve.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/armintr.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx2intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512bf16intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512bitalgintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512bwintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512cdintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512dqintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512erintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512fintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512fp16intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512ifmaintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512ifmavlintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512pfintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vbmi2intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vbmiintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vbmivlintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlbf16intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlbitalgintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlbwintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlcdintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vldqintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlfp16intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlvbmi2intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlvnniintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vlvp2intersectintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vnniintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vp2intersectintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vpopcntdqintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avx512vpopcntdqvlintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avxifmaintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avxintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avxneconvertintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avxvnniint8intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/avxvnniintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/bmi2intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/bmiintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/builtins.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cet.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cetintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cldemoteintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/clflushoptintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/clwbintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/clzerointrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cmpccxaddintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cpuid.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/crc32intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cuda_wrappers/algorithm" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cuda_wrappers/cmath" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cuda_wrappers/complex" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/cuda_wrappers/new" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/emmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/enqcmdintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/f16cintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/float.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/fma4intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/fmaintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/fxsrintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/gfniintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/hexagon_circ_brev_intrinsics.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/hexagon_protos.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/hexagon_types.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/hresetintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/htmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/htmxlintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/hvx_hexagon_protos.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ia32intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/immintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/inttypes.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/invpcidintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/iso646.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/keylockerintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/larchintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/limits.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/lwpintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/lzcntintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/mm3dnow.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/mm_malloc.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/mmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/module.modulemap" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/movdirintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/msa.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/mwaitxintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/nmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/opencl-c-base.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/opencl-c.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/__clang_openmp_device_functions.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/cmath" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/complex" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/complex.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/complex_cmath.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/math.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/openmp_wrappers/new" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/pconfigintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/pkuintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/pmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/popcntintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/bmi2intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/bmiintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/emmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/immintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/mm_malloc.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/mmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/pmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/smmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/tmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/x86gprintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/x86intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ppc_wrappers/xmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/prfchiintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/prfchwintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/ptwriteintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/raointintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/rdpruintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/rdseedintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/riscv_vector.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/rtmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/s390intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/serializeintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/sgxintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/shaintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/smmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdalign.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdarg.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdatomic.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdbool.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stddef.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdint.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/stdnoreturn.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/tbmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/tgmath.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/tmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/tsxldtrkintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/uintrintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/unwind.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/vadefs.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/vaesintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/varargs.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/vecintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/velintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/velintrin_approx.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/velintrin_gen.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/vpclmulqdqintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/waitpkgintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/wasm_simd128.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/wbnoinvdintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/wmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/x86gprintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/x86intrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xmmintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xopintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xsavecintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xsaveintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xsaveoptintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xsavesintrin.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/include/xtestintrin.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/a.out.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/aio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/aliases.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/alloca.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/argp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/argz.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/ftp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/inet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/nameser.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/nameser_compat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/telnet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/arpa/tftp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/auxvec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/bitsperlong.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/bpf_perf_event.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/errno-base.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/hugetlb_encode.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/int-l64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/int-ll64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/ioctls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/ipcbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/kvm_para.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/mman-common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/mman.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/msgbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/posix_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/resource.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/sembuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/setup.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/shmbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/siginfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/signal-defs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/signal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/sockios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/statfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/swab.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/termbits-common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/termbits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/ucontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm-generic/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/a.out.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/amd_hsmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/auxvec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/bitsperlong.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/boot.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/bootparam.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/bpf_perf_event.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/byteorder.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/debugreg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/e820.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/hw_breakpoint.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/hwcap2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ioctls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ipcbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ist.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/kvm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/kvm_para.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/kvm_perf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ldt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/mce.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/mman.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/msgbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/msr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/mtrr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/perf_regs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/posix_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/posix_types_32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/posix_types_64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/posix_types_x32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/prctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/processor-flags.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ptrace-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ptrace.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/resource.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/sembuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/setup.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/sgx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/shmbuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/sigcontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/sigcontext32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/siginfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/signal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/sockios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/statfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/svm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/swab.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/termbits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/ucontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/unistd_32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/unistd_64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/unistd_x32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/vm86.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/vmx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/asm/vsyscall.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/assert.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/a.out.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/argp-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/atomic_wide_counter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/byteswap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/cmathcalls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/confname.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/cpu-set.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/dirent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/dirent_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/dl_find_object.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/dlfcn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/elfclass.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/endian.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/endianness.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/environments.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/epoll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/err-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/error-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/error.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/eventfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fcntl-linux.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fcntl2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fenv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/floatn-common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/floatn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/flt-eval-method.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fp-fast.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/fp-logb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/getopt_core.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/getopt_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/getopt_posix.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/hwcap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/in.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/indirect-return.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/initspin.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/inotify.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ioctl-types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ioctls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ipc-perm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ipc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ipctypes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/iscanonical.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/libc-header-start.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/libm-simd-decl-stubs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/link.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/link_lavcurrent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/local_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/locale.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/long-double.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/math-vector.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mathcalls-helper-functions.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mathcalls-narrow.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mathcalls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mathdef.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mman-linux.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mman-map-flags-generic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mman-shared.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mman.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mman_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/monetary-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mqueue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/mqueue2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/msq.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/netdb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/platform/x86.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/poll2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/posix1_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/posix2_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/posix_opt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/printf-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/procfs-extra.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/procfs-id.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/procfs-prregset.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/procfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/pthread_stack_min-dynamic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/pthread_stack_min.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/pthreadtypes-arch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/pthreadtypes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ptrace-shared.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/resource.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/rseq.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sched.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/select-decl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/select.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/select2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/semaphore.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/setjmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/setjmp2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/shm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/shmlba.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigaction.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigcontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigevent-consts.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/siginfo-arch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/siginfo-consts-arch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/siginfo-consts.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/signal_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/signalfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/signum-arch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/signum-generic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigstack.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigstksz.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sigthread.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sockaddr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/socket-constants.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/socket2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/socket_type.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/ss_flags.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stab.def" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/statfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/statvfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/statx-generic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/statx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdint-intn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdint-uintn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdio-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdio2-decl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdio2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdio_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdlib-bsearch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdlib-float.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdlib-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/stdlib.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/string_fortified.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/strings_fortified.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/struct_mutex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/struct_rwlock.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/struct_stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/struct_stat_time64_helper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/syscall.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/syslog-decl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/syslog-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/syslog-path.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/syslog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/sysmacros.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-baud.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-c_cc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-c_cflag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-c_iflag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-c_lflag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-c_oflag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-misc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-struct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios-tcflow.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/thread-shared-types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/time.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/time64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/timerfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/timesize.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/timex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/FILE.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__FILE.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__fpos64_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__fpos_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__locale_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__mbstate_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__sigset_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/__sigval_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/clock_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/clockid_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/cookie_io_functions_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/error_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/idtype_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/locale_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/mbstate_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/res_state.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/sig_atomic_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/sigevent_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/siginfo_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/sigset_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/sigval_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/stack_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_FILE.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct___jmp_buf_tag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_iovec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_itimerspec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_msqid64_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_msqid64_ds_helper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_msqid_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_osockaddr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_rusage.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_sched_param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_semid64_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_semid64_ds_helper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_semid_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_shmid64_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_shmid64_ds_helper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_shmid_ds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_sigstack.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_statx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_statx_timestamp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_timeb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_timespec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_timeval.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/struct_tm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/time_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/timer_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/types/wint_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/typesizes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/uintn-identity.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/uio-ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/uio_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/unistd-decl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/unistd_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/utmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/utmpx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/utsname.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/waitflags.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/waitstatus.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wchar-ldbl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wchar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wchar2-decl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wchar2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wctype-wchar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/wordsize.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/bits/xopen_lim.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/byteswap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/complex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/config/kernel.release" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/cpio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ctype.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/dirent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/dlfcn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/amdgpu_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/armada_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/drm_fourcc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/drm_mode.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/drm_sarea.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/etnaviv_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/exynos_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/habanalabs_accel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/i915_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/ivpu_accel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/lima_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/msm_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/nouveau_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/omap_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/panfrost_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/qaic_accel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/qxl_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/radeon_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/tegra_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/v3d_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/vc4_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/vgem_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/virtgpu_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/drm/vmwgfx_drm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/elf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/endian.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/envz.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/err.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/error.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/execinfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/features-time64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/features.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fenv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/finclude/math-vector-fortran.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fmtmsg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fnmatch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fpu_control.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fstab.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/fts.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ftw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gconv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/getopt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/glob.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu-versions.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu/lib-names-64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu/lib-names.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu/libc-version.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu/stubs-64.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gnu/stubs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/grp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/gshadow.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/iconv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ieee754.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ifaddrs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/inttypes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/langinfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/lastlog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/libgen.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/libintl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/limits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/link.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/a.out.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/acct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/acrn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/adb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/adfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/affs_hardblocks.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/agpgart.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/aio_abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/am437x-vpfe.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/amt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/android/binder.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/android/binderfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/apm_bios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/arcfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/arm_sdei.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/aspeed-lpc-ctrl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/aspeed-p2a-ctrl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/aspeed-video.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atalk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_eni.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_he.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_idt77105.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_nicstar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_tcp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atm_zatm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmapi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmarp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmbr2684.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmclip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmioc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmlec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmmpc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmppp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmsap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/atmsvc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/audit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/auto_dev-ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/auto_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/auto_fs4.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/auxvec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ax25.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/batadv_packet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/batman_adv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/baycom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bcm933xx_hcs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/binfmts.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/blkpg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/blktrace_api.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/blkzoned.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bpf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bpf_common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bpf_perf_event.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bpfilter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bpqether.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bsg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/bt-bmc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/btf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/btrfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/btrfs_tree.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/byteorder/big_endian.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/byteorder/little_endian.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cachefiles.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/caif/caif_socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/caif/if_caif.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/bcm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/error.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/gw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/isotp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/j1939.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/raw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/can/vxcan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/capability.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/capi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cciss_defs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cciss_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ccs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cdrom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cec-funcs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cfm_bridge.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cgroupstats.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/chio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cifs/cifs_mount.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cifs/cifs_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/close_range.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cn_proc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/coda.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/coff.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/comedi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/connector.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/const.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/coresight-stm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/counter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cramfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cryptouser.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cuda.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cxl_mem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cyclades.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/cycx_cfm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dcbnl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dccp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/devlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dlm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dlm_device.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dlm_plock.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dlmconstants.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dm-ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dm-log-userspace.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dma-buf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dma-heap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dns_resolver.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dqblk_xfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/audio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/ca.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/dmx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/frontend.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/net.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/osd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/version.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dvb/video.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/dw100.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/edd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/efs_fs_sb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/elf-em.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/elf-fdpic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/elf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/errqueue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/erspan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ethtool.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ethtool_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/eventfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/eventpoll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ext4.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/f2fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fadvise.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/falloc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fanotify.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fdreg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fib_rules.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fiemap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/filter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/firewire-cdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/firewire-constants.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fou.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fpga-dfl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fscrypt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fsi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fsl_hypervisor.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fsl_mc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fsmap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fsverity.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/fuse.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/futex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gameport.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gen_stats.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/genetlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/genwqe/genwqe_card.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gfs2_ondisk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gpio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gsmmux.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/gtp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/handshake.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hash_info.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hdlc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hdlc/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hdlcdrv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hdreg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hiddev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hidraw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hpet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hsi/cs-protocol.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hsi/hsi_char.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hsr_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hw_breakpoint.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/hyperv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/i2c-dev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/i2c.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/i2o-dev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/i8k.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/icmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/icmpv6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/idxd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_addr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_addrlabel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_alg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_arcnet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_arp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_bonding.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_bridge.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_cablemodem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_eql.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_ether.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_fc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_fddi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_hippi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_infiniband.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_link.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_ltalk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_macsec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_packet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_phonet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_plip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_ppp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_pppol2tp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_pppox.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_slip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_team.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_tun.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_tunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_vlan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_x25.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/if_xdp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ife.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/igmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iio/buffer.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iio/events.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iio/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ila.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/in.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/in6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/in_route.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/inet_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/inotify.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/input-event-codes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/input.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/io_uring.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ioam6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ioam6_genl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ioam6_iptunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iommu.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iommufd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ioprio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ip6_tunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ip_vs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipmi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipmi_bmc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipmi_msgdefs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipmi_ssif_bmc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipsec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipv6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ipv6_route.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/irqnr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/isdn/capicmd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/iso_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/isst_if.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ivtv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ivtvfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/jffs2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/joystick.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kcm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kcmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kcov.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kdev_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kernel-page-flags.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kernel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kernelcapi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kexec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/keyboard.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/keyctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kfd_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kfd_sysfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kvm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/kvm_para.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/l2tp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/landlock.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/libc-compat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/limits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/lirc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/llc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/loadpin.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/loop.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/lp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/lwtunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/magic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/major.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/map_to_14segment.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/map_to_7segment.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/matroxfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/max2175.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mctp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mdio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/media-bus-format.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/media.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mei.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mei_uuid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/membarrier.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/memfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mempolicy.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mii.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/minix_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/misc/bcm_vk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mman.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mmc/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mmtimer.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/module.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mount.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mpls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mpls_iptunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mptcp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mqueue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mroute.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mroute6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mrp_bridge.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/msdos_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/msg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/mtio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nbd-netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nbd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ncsi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ndctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/neighbour.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/net.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/net_dropmon.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/net_namespace.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/net_tstamp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netconf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netdevice.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/ipset/ip_set.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/ipset/ip_set_bitmap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/ipset/ip_set_hash.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/ipset/ip_set_list.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_conntrack_common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_conntrack_ftp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_conntrack_sctp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_conntrack_tcp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_conntrack_tuple_common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_log.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_nat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_synproxy.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_tables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nf_tables_compat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_acct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_compat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_conntrack.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_cthelper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_cttimeout.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_hook.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_log.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_osf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/nfnetlink_queue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/x_tables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_AUDIT.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_CHECKSUM.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_CLASSIFY.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_CONNMARK.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_CONNSECMARK.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_CT.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_DSCP.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_HMARK.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_IDLETIMER.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_LED.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_LOG.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_MARK.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_NFLOG.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_NFQUEUE.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_RATEEST.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_SECMARK.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_SYNPROXY.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_TCPMSS.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_TCPOPTSTRIP.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_TEE.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_TPROXY.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_addrtype.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_bpf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_cgroup.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_cluster.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_comment.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_connbytes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_connlabel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_connlimit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_connmark.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_conntrack.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_cpu.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_dccp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_devgroup.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_dscp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_ecn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_esp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_hashlimit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_helper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_ipcomp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_iprange.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_ipvs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_l2tp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_length.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_limit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_mac.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_mark.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_multiport.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_nfacct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_osf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_owner.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_physdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_pkttype.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_policy.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_quota.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_rateest.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_realm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_recent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_rpfilter.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_sctp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_set.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_state.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_statistic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_string.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_tcpmss.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_tcpudp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_time.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter/xt_u32.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_arp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_arp/arp_tables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_arp/arpt_mangle.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_802_3.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_among.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_arp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_arpreply.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_ip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_ip6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_limit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_log.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_mark_m.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_mark_t.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_nat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_nflog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_pkttype.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_redirect.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_stp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebt_vlan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_bridge/ebtables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ip_tables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_CLUSTERIP.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_ECN.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_LOG.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_REJECT.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_TTL.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_ah.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_ecn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv4/ipt_ttl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6_tables.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_HL.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_LOG.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_NPT.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_REJECT.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_ah.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_frag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_hl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_ipv6header.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_mh.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_opts.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_rt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netfilter_ipv6/ip6t_srh.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netlink_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/netrom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nexthop.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs3.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs4.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs4_mount.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs_idmap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfs_mount.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfsacl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfsd/cld.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfsd/debug.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfsd/export.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nfsd/stats.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nilfs2_api.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nilfs2_ondisk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nitro_enclaves.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nl80211-vnd-intel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nl80211.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nsfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nubus.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nvme_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/nvram.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/omap3isp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/omapfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/oom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/openat2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/openvswitch.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/packet_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/parport.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/patchkey.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pci.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pci_regs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pcitest.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/perf_event.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/personality.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pfkeyv2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pfrut.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/phantom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/phonet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pidfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pkt_cls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pkt_sched.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pktcdvd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pmu.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/posix_acl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/posix_acl_xattr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/posix_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ppdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ppp-comp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ppp-ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ppp_defs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pps.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/pr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/prctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/psample.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/psci.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/psp-sev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ptp_clock.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ptrace.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/qemu_fw_cfg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/qnx4_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/qnxtypes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/qrtr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/quota.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/radeonfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/raid/md_p.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/raid/md_u.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/random.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/reboot.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/reiserfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/reiserfs_xattr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/remoteproc_cdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/resource.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rfkill.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rio_cm_cdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rio_mport_cdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rkisp1-config.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/romfs_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rose.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/route.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rpl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rpl_iptunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rpmsg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rpmsg_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rseq.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rtc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rtnetlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/rxrpc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/scc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sched.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sched/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/scif_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/screen_info.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sctp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seccomp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/securebits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sed-opal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seg6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seg6_genl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seg6_hmac.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seg6_iptunnel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/seg6_local.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/selinux_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/serial.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/serial_core.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/serial_reg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/serio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sev-guest.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/shm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/signal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/signalfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/smc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/smc_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/smiapp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/snmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sock_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sockios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sonet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sonypi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sound.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/soundcard.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/spi/spi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/spi/spidev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/stddef.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/stm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/string.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sunrpc/debug.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/surface_aggregator/cdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/surface_aggregator/dtx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/suspend_ioctls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/swab.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/switchtec_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sync_file.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/synclink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sysctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/sysinfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/target_core_user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/taskstats.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_bpf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_connmark.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_csum.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_ct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_ctinfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_defact.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_gact.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_gate.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_ife.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_ipt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_mirred.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_mpls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_nat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_pedit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_sample.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_skbedit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_skbmod.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_tunnel_key.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_act/tc_vlan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_ematch/tc_em_cmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_ematch/tc_em_ipt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_ematch/tc_em_meta.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_ematch/tc_em_nbyte.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tc_ematch/tc_em_text.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tcp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tcp_metrics.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tdx-guest.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tee.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/thermal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/time.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/time_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/timerfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/times.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/timex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tiocl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tipc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tipc_config.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tipc_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tipc_sockets_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/toshiba.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tps6594_pfsm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tty.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/tty_flags.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ublk_cmd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/udf_fs_i.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/udmabuf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/udp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uhid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uinput.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uleds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/ultrasound.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/um_timetravel.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/un.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/unix_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/audio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/cdc-wdm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/cdc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/ch11.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/ch9.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/charger.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/functionfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/g_printer.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/g_uvc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/gadgetfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/midi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/raw_gadget.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/tmc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usb/video.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usbdevice_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/usbip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/user_events.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/userfaultfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/userio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/utime.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/utsname.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uuid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/uvcvideo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/v4l2-common.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/v4l2-controls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/v4l2-dv-timings.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/v4l2-mediabus.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/v4l2-subdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vbox_err.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vbox_vmmdev_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vboxguest.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vdpa.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vduse.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/version.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/veth.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vfio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vfio_ccw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vfio_zdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vhost.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vhost_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/videodev2.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_9p.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_balloon.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_blk.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_bt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_config.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_console.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_crypto.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_fs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_gpio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_gpu.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_i2c.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_ids.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_input.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_iommu.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_mem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_mmio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_net.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_pci.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_pcidev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_pmem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_ring.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_rng.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_scmi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_scsi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_snd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/virtio_vsock.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vm_sockets.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vm_sockets_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vmcore.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vsockmon.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/vtpm_proxy.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/wait.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/watch_queue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/watchdog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/wireguard.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/wireless.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/wmi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/wwan.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/x25.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/xattr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/xdp_diag.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/xfrm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/xilinx-v4l2-controls.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/zorro.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/linux/zorro_ids.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/locale.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/malloc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/math.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mcheck.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/memory.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/cxl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/fastrpc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/ocxl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/pvpanic.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/uacce/hisi_qm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/uacce/uacce.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/misc/xilinx_sdfec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mntent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/monetary.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mqueue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mtd/inftl-user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mtd/mtd-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mtd/mtd-user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mtd/nftl-user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/mtd/ubi-user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/ethernet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if_arp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if_packet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if_ppp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if_shaper.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/if_slip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/ppp-comp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/ppp_defs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/net/route.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netash/ash.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netatalk/at.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netax25/ax25.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netdb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/neteconet/ec.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/ether.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/icmp6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/if_ether.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/if_fddi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/if_tr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/igmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/in.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/in_systm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/ip.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/ip6.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/ip_icmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/tcp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netinet/udp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netipx/ipx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netiucv/iucv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netpacket/packet.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netrom/netrom.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/netrose/rose.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/nfs/nfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/nl_types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/nss.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/obstack.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/paths.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/printf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/proc_service.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/protocols/routed.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/protocols/rwhod.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/protocols/talkd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/protocols/timed.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/pthread.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/pty.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/pwd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/bnxt_re-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/cxgb4-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/efa-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/erdma-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/hfi/hfi1_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/hfi/hfi1_user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/hns-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ib_user_ioctl_cmds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ib_user_ioctl_verbs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ib_user_mad.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ib_user_sa.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ib_user_verbs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/irdma-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mana-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mlx4-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mlx5-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mlx5_user_ioctl_cmds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mlx5_user_ioctl_verbs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/mthca-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/ocrdma-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/qedr-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rdma_netlink.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rdma_user_cm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rdma_user_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rdma_user_ioctl_cmds.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rdma_user_rxe.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/rvt-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/siw-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rdma/vmw_pvrdma-abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/re_comp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/regex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/regexp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/resolv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/rpc/netdb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sched.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/scsi/scsi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/scsi/scsi_ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/scsi/sg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/search.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/semaphore.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/setjmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sgtty.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/shadow.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/signal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/asequencer.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/asoc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/asound.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/asound_fm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/compress_offload.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/compress_params.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/emu10k1.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/firewire.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/hdsp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/hdspm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/intel/avs/tokens.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sb16_csp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sfnt_info.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/skl-tplg-interface.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/snd_ar_tokens.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/snd_sst_tokens.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sof/abi.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sof/fw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sof/header.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/sof/tokens.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/tlv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sound/usb_stream.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/spawn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stab.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stdc-predef.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stdint.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stdio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stdio_ext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/stdlib.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/string.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/strings.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/acct.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/auxv.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/bitypes.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/cdefs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/debugreg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/dir.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/elf.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/epoll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/errno.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/eventfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/fanotify.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/fcntl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/file.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/fsuid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/gmon.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/gmon_out.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/inotify.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/io.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ioctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ipc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/kd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/klog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/mman.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/mount.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/msg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/mtio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/param.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/pci.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/perm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/personality.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/pidfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/platform/x86.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/poll.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/prctl.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/procfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/profil.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ptrace.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/queue.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/quota.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/random.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/raw.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/reboot.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/reg.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/resource.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/rseq.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/select.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/sem.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/sendfile.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/shm.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/signal.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/signalfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/single_threaded.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/socket.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/socketvar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/soundcard.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/stat.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/statfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/statvfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/swap.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/syscall.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/sysinfo.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/syslog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/sysmacros.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/time.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/timeb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/timerfd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/times.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/timex.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ttychars.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ttydefaults.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/types.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/ucontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/uio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/un.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/user.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/utsname.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/vfs.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/vlimit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/vm86.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/vt.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/wait.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sys/xattr.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/syscall.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/sysexits.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/syslog.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/tar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/termio.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/termios.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/tgmath.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/thread_db.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/threads.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/time.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ttyent.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/uchar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ucontext.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/ulimit.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/unistd.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/utime.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/utmp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/utmpx.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/values.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/video/edid.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/video/sisfb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/video/uvesafb.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/wait.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/wchar.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/wctype.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/wordexp.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/xen/evtchn.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/xen/gntalloc.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/xen/gntdev.h" + textual header "/nix/store/mrgib0s2ayr81xv1q84xsjg8ijybalq3-glibc-2.38-27-dev/include/xen/privcmd.h" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share/asan_ignorelist.txt" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share/cfi_ignorelist.txt" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share/dfsan_abilist.txt" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share/hwasan_ignorelist.txt" + textual header "/nix/store/i7sgy7izmjhdajnjmqzfp7v5j9jhy0qp-clang-wrapper-16.0.6/resource-root/share/msan_ignorelist.txt" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/adjacent_find.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/all_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/any_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/binary_search.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/clamp.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/comp.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/comp_ref_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/copy_backward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/copy_move_common.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/copy_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/count.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/count_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/equal.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/equal_range.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/fill.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/fill_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/find.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/find_end.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/find_first_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/find_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/find_if_not.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/for_each.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/for_each_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/generate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/generate_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/half_positive.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_found_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_fun_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_in_out_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_in_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_out_out_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/in_out_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/includes.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/inplace_merge.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_heap_until.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_partitioned.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_sorted.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/is_sorted_until.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/iter_swap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/iterator_operations.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/lexicographical_compare.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/lower_bound.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/make_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/make_projected.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/max.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/max_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/merge.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/min.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/min_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/min_max_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/minmax.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/minmax_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/mismatch.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/move.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/move_backward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/next_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/none_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/nth_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/partial_sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/partial_sort_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/partition.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/partition_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/partition_point.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/pop_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/prev_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/push_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_adjacent_find.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_all_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_any_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_binary_search.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_clamp.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_copy_backward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_copy_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_count.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_count_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_equal.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_equal_range.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_fill.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_fill_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_find.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_find_end.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_find_first_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_find_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_find_if_not.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_for_each.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_for_each_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_generate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_generate_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_includes.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_inplace_merge.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_heap_until.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_partitioned.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_sorted.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_is_sorted_until.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_iterator_concept.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_lexicographical_compare.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_lower_bound.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_make_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_max.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_max_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_merge.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_min.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_min_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_minmax.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_minmax_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_mismatch.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_move.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_move_backward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_next_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_none_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_nth_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_partial_sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_partial_sort_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_partition.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_partition_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_partition_point.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_pop_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_prev_permutation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_push_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_remove.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_remove_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_remove_copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_remove_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_replace.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_replace_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_replace_copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_replace_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_reverse.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_reverse_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_rotate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_rotate_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_sample.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_search.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_search_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_set_difference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_set_intersection.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_set_symmetric_difference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_set_union.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_shuffle.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_sort_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_stable_partition.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_stable_sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_swap_ranges.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_transform.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_unique.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_unique_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/ranges_upper_bound.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/remove.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/remove_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/remove_copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/remove_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/replace.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/replace_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/replace_copy_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/replace_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/reverse.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/reverse_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/rotate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/rotate_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/sample.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/search.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/search_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/set_difference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/set_intersection.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/set_symmetric_difference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/set_union.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/shift_left.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/shift_right.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/shuffle.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/sift_down.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/sort_heap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/stable_partition.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/stable_sort.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/swap_ranges.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/transform.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/uniform_random_bit_generator_adaptor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/unique.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/unique_copy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/unwrap_iter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/unwrap_range.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__algorithm/upper_bound.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__assert" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__availability" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/bit_cast.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/bit_ceil.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/bit_floor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/bit_log2.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/bit_width.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/blsr.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/byteswap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/countl.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/countr.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/endian.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/has_single_bit.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/popcount.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit/rotate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bit_reference" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bsd_locale_defaults.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__bsd_locale_fallbacks.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__charconv/chars_format.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__charconv/from_chars_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__charconv/tables.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__charconv/to_chars_base_10.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__charconv/to_chars_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/calendar.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/convert_to_timespec.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/convert_to_tm.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/day.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/duration.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/file_clock.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/formatter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/hh_mm_ss.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/high_resolution_clock.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/literals.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/month.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/month_weekday.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/monthday.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/ostream.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/parser_std_format_spec.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/statically_widen.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/steady_clock.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/system_clock.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/time_point.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/weekday.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/year.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/year_month.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/year_month_day.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__chrono/year_month_weekday.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/common_comparison_category.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/compare_partial_order_fallback.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/compare_strong_order_fallback.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/compare_three_way.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/compare_three_way_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/compare_weak_order_fallback.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/is_eq.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/ordering.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/partial_order.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/strong_order.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/synth_three_way.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/three_way_comparable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__compare/weak_order.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/arithmetic.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/boolean_testable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/class_or_enum.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/common_reference_with.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/common_with.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/convertible_to.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/copyable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/derived_from.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/destructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/different_from.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/equality_comparable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/invocable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/movable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/predicate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/regular.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/relation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/same_as.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/semiregular.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/swappable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__concepts/totally_ordered.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__config" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__config_site" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__coroutine/coroutine_handle.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__coroutine/coroutine_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__coroutine/noop_coroutine_handle.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__coroutine/trivial_awaitables.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__debug" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__debug_utils/randomize_range.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__errc" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__expected/bad_expected_access.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__expected/expected.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__expected/unexpect.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__expected/unexpected.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/copy_options.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/directory_entry.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/directory_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/directory_options.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/file_status.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/file_time_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/file_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/filesystem_error.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/operations.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/path.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/path_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/perm_options.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/perms.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/recursive_directory_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/space_info.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__filesystem/u8path.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/buffer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/concepts.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/container_adaptor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/enable_insertable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/escaped_output_table.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/extended_grapheme_cluster_table.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_arg.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_arg_store.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_args.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_context.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_error.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_functions.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_fwd.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_parse_context.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_string.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/format_to_n_result.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_bool.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_char.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_floating_point.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_integer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_integral.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_output.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_string.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/formatter_tuple.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/parser_std_format_spec.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/range_default_formatter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/range_formatter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__format/unicode.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/binary_function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/binary_negate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/bind.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/bind_back.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/bind_front.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/binder1st.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/binder2nd.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/boyer_moore_searcher.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/compose.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/default_searcher.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/hash.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/identity.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/invoke.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/is_transparent.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/mem_fn.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/mem_fun_ref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/not_fn.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/operations.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/perfect_forward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/pointer_to_binary_function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/pointer_to_unary_function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/ranges_operations.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/reference_wrapper.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/unary_function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/unary_negate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/unwrap_ref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__functional/weak_result_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/array.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/get.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/hash.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/memory_resource.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/pair.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/span.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/string.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/string_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/subrange.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__fwd/tuple.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__hash_table" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ios/fpos.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/access.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/advance.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/back_insert_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/bounded_iter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/common_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/concepts.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/counted_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/data.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/default_sentinel.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/distance.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/empty.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/erase_if_container.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/front_insert_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/incrementable_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/indirectly_comparable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/insert_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/istream_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/istreambuf_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/iter_move.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/iter_swap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/iterator_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/iterator_with_data.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/mergeable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/move_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/move_sentinel.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/next.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/ostream_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/ostreambuf_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/permutable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/prev.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/projected.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/readable_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/reverse_access.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/reverse_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/segmented_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/size.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/sortable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/unreachable_sentinel.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__iterator/wrap_iter.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__locale" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__mbstate_t.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/addressof.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/align.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocate_at_least.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocation_guard.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocator_arg_t.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocator_destructor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/allocator_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/assume_aligned.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/auto_ptr.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/builtin_new_allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/compressed_pair.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/concepts.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/construct_at.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/destruct_n.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/pointer_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/ranges_construct_at.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/ranges_uninitialized_algorithms.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/raw_storage_iterator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/shared_ptr.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/swap_allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/temp_value.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/temporary_buffer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/uninitialized_algorithms.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/unique_ptr.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/uses_allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/uses_allocator_construction.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory/voidify.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/memory_resource.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/monotonic_buffer_resource.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/polymorphic_allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/pool_options.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/synchronized_pool_resource.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__memory_resource/unsynchronized_pool_resource.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__mutex_base" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__node_handle" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/accumulate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/adjacent_difference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/exclusive_scan.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/gcd_lcm.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/inclusive_scan.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/inner_product.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/iota.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/midpoint.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/partial_sum.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/reduce.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/transform_exclusive_scan.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/transform_inclusive_scan.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__numeric/transform_reduce.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/bernoulli_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/binomial_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/cauchy_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/chi_squared_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/clamp_to_integral.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/default_random_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/discard_block_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/discrete_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/exponential_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/extreme_value_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/fisher_f_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/gamma_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/generate_canonical.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/geometric_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/independent_bits_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/is_seed_sequence.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/is_valid.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/knuth_b.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/linear_congruential_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/log2.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/lognormal_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/mersenne_twister_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/negative_binomial_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/normal_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/piecewise_constant_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/piecewise_linear_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/poisson_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/random_device.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/ranlux.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/seed_seq.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/shuffle_order_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/student_t_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/subtract_with_carry_engine.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/uniform_int_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/uniform_random_bit_generator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/uniform_real_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__random/weibull_distribution.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/access.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/all.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/as_rvalue_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/common_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/concepts.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/copyable_box.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/counted.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/dangling.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/data.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/drop_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/drop_while_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/elements_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/empty.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/empty_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/enable_borrowed_range.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/enable_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/filter_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/iota_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/istream_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/join_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/lazy_split_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/non_propagating_cache.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/owning_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/range_adaptor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/rbegin.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/ref_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/rend.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/reverse_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/single_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/size.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/split_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/subrange.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/take_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/take_while_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/transform_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/view_interface.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/views.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__ranges/zip_view.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__split_buffer" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__std_stream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__string/char_traits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__string/extern_template_lists.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/android/locale_bionic.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/fuchsia/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/ibm/gettod_zos.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/ibm/locale_mgmt_zos.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/ibm/nanosleep.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/ibm/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/musl/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/newlib/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/openbsd/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/solaris/floatingpoint.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/solaris/wchar.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/solaris/xlocale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/win32/locale_win32.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/xlocale/__nop_locale_mgmt.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/xlocale/__posix_l_fallback.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__support/xlocale/__strtonum_fallback.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__thread/poll_with_backoff.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__thread/timed_backoff_policy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__threading_support" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tree" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/apply_cv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/make_tuple_types.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/pair_like.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/sfinae_helpers.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_element.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_indices.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_like.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_like_ext.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_size.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__tuple_dir/tuple_types.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_const.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_cv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_lvalue_reference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_rvalue_reference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/add_volatile.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/aligned_storage.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/aligned_union.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/alignment_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/apply_cv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/can_extract_key.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/common_reference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/common_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/conditional.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/conjunction.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/copy_cv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/copy_cvref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/decay.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/dependent_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/disjunction.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/enable_if.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/extent.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/has_unique_object_representation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/has_virtual_destructor.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/integral_constant.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_abstract.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_aggregate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_allocator.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_always_bitcastable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_arithmetic.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_array.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_base_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_bounded_array.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_callable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_char_like_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_class.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_compound.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_const.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_constant_evaluated.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_convertible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_copy_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_copy_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_core_convertible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_default_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_destructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_empty.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_enum.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_final.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_floating_point.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_function.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_fundamental.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_implicitly_default_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_integral.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_literal_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_member_function_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_member_object_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_member_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_move_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_move_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_convertible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_default_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_destructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_move_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_nothrow_move_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_null_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_object.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_pod.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_polymorphic.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_primary_template.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_reference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_reference_wrapper.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_referenceable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_same.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_scalar.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_scoped_enum.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_signed.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_signed_integer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_specialization.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_standard_layout.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_swappable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivial.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_copy_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_copy_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_copyable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_default_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_destructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_move_assignable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_trivially_move_constructible.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_unbounded_array.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_union.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_unsigned.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_unsigned_integer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_valid_expansion.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_void.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/is_volatile.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/lazy.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/make_32_64_or_128_bit.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/make_const_lvalue_ref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/make_signed.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/make_unsigned.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/maybe_const.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/nat.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/negation.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/noexcept_move_assign_container.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/promote.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/rank.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_all_extents.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_const.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_const_ref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_cv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_cvref.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_extent.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_pointer.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_reference.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/remove_volatile.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/result_of.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/strip_signature.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/type_identity.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/type_list.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/underlying_type.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__type_traits/void_t.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__undef_macros" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/as_const.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/auto_cast.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/cmp.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/convert_to_integral.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/declval.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/exception_guard.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/exchange.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/forward.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/forward_like.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/in_place.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/integer_sequence.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/move.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/pair.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/piecewise_construct.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/priority_tag.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/rel_ops.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/swap.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/to_underlying.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__utility/unreachable.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__variant/monostate.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/__verbose_abort" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/algorithm" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/any" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/array" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/atomic" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/barrier" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/bit" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/bitset" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cassert" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ccomplex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cctype" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cerrno" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cfenv" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cfloat" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/charconv" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/chrono" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cinttypes" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ciso646" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/climits" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/clocale" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cmath" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/codecvt" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/compare" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/complex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/complex.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/concepts" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/condition_variable" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/coroutine" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/csetjmp" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/csignal" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstdarg" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstdbool" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstddef" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstdint" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstdio" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstdlib" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cstring" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ctgmath" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ctime" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ctype.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cuchar" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cwchar" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/cwctype" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/deque" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/errno.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/exception" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/execution" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/expected" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/__config" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/__memory" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/algorithm" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/coroutine" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/deque" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/forward_list" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/functional" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/iterator" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/list" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/map" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/memory_resource" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/propagate_const" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/regex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/set" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/simd" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/string" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/type_traits" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/unordered_map" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/unordered_set" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/utility" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/experimental/vector" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ext/__hash" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ext/hash_map" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ext/hash_set" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/fenv.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/filesystem" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/float.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/format" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/forward_list" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/fstream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/functional" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/future" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/initializer_list" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/inttypes.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/iomanip" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ios" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/iosfwd" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/iostream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/istream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/iterator" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/latch" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/libcxx.imp" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/limits" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/limits.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/list" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/locale" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/locale.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/map" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/math.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/memory" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/memory_resource" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/module.modulemap" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/mutex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/new" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/numbers" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/numeric" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/optional" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ostream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/queue" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/random" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ranges" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/ratio" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/regex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/scoped_allocator" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/semaphore" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/set" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/setjmp.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/shared_mutex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/source_location" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/span" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/sstream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stack" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdatomic.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdbool.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stddef.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdexcept" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdint.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdio.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/stdlib.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/streambuf" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/string" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/string.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/string_view" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/strstream" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/system_error" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/tgmath.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/thread" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/tuple" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/type_traits" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/typeindex" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/typeinfo" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/uchar.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/unordered_map" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/unordered_set" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/utility" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/valarray" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/variant" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/vector" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/version" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/wchar.h" + textual header "/nix/store/wh3jv0niw62xfngky1lhi4sfnjrgyqg6-libcxx-16.0.6-dev/include/c++/v1/wctype.h" + textual header "/nix/store/iigpn23r754xzf7rzymlpazbayx7jf9x-libcxxabi-16.0.6-dev/include/c++/v1/__cxxabi_config.h" + textual header "/nix/store/iigpn23r754xzf7rzymlpazbayx7jf9x-libcxxabi-16.0.6-dev/include/c++/v1/cxxabi.h" +} diff --git a/local-remote-execution/generated/cc/tools/cpp/empty.cc b/local-remote-execution/generated/cc/tools/cpp/empty.cc new file mode 100644 index 000000000..237c8ce18 --- /dev/null +++ b/local-remote-execution/generated/cc/tools/cpp/empty.cc @@ -0,0 +1 @@ +int main() {} diff --git a/local-remote-execution/generated/config/BUILD b/local-remote-execution/generated/config/BUILD new file mode 100755 index 000000000..20c328b37 --- /dev/null +++ b/local-remote-execution/generated/config/BUILD @@ -0,0 +1,47 @@ +# Copyright 2020 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This file is auto-generated by github.com/bazelbuild/bazel-toolchains/pkg/rbeconfigsgen +# and should not be modified directly. + +package(default_visibility = ["//visibility:public"]) + +toolchain( + name = "cc-toolchain", + exec_compatible_with = [ + "@platforms//os:linux", + "@platforms//cpu:x86_64", + "@bazel_tools//tools/cpp:clang", + ], + target_compatible_with = [ + "@platforms//os:linux", + "@platforms//cpu:x86_64", + ], + toolchain = "//local-remote-execution/generated/cc:cc-compiler-k8", + toolchain_type = "@bazel_tools//tools/cpp:toolchain_type", +) + +platform( + name = "platform", + constraint_values = [ + "@platforms//os:linux", + "@platforms//cpu:x86_64", + "@bazel_tools//tools/cpp:clang", + ], + exec_properties = { + "container-image": "docker://native-link-toolchain:f8741wsgd3ischk87gl8ks8brwfxszk9", + "OSFamily": "Linux", + }, + parents = ["@local_config_platform//:host"], +) diff --git a/local-remote-execution/generated/java/BUILD b/local-remote-execution/generated/java/BUILD new file mode 100755 index 000000000..9f5508b4b --- /dev/null +++ b/local-remote-execution/generated/java/BUILD @@ -0,0 +1,31 @@ +# Copyright 2020 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This file is auto-generated by github.com/bazelbuild/bazel-toolchains/pkg/rbeconfigsgen +# and should not be modified directly. + +load("@bazel_tools//tools/jdk:local_java_repository.bzl", "local_java_runtime") + +package(default_visibility = ["//visibility:public"]) + +alias( + name = "jdk", + actual = "rbe_jdk", +) + +local_java_runtime( + name = "rbe_jdk", + java_home = "/nix/store/kdfki5cyfmkc7axr1r6ayj2r67vq39r7-openjdk-headless-11.0.19+7/lib/openjdk", + version = "11.0.19", +) diff --git a/local-remote-execution/image.nix b/local-remote-execution/image.nix new file mode 100644 index 000000000..76180f463 --- /dev/null +++ b/local-remote-execution/image.nix @@ -0,0 +1,94 @@ +{ pkgs, nativelink, ... }: + +let + customStdenv = import ../tools/llvmStdenv.nix { inherit pkgs; }; + customClang = pkgs.callPackage ../tools/customClang.nix { + inherit pkgs; + stdenv = customStdenv; + }; +in + +# TODO(aaronmondal): Bazel and a few other tools in this container are only +# required to generate the toolchains but are not needed +# during runtime. Split this image into a generator image and +# a toolchain container and write a new rbe_configs_gen tool. +# This will enable endless optimization and customization +# opportunities for custom toolchain containers. +pkgs.dockerTools.streamLayeredImage { + name = "nativelink-toolchain"; + + contents = [ + # The worker. + nativelink + + # Required to generate toolchain configs. + pkgs.bazel + + # Minimal user setup. Required by Bazel. + pkgs.fakeNss + + # Required for communication with trusted sources. + pkgs.cacert + + # Tools that we would usually forward from the host. + pkgs.bash + pkgs.coreutils + + # We need these tools to generate the RBE autoconfiguration. + pkgs.findutils + pkgs.gnutar + + customStdenv.cc.bintools + + pkgs.llvmPackages_16.libunwind + ]; + + extraCommands = '' + mkdir -m 0777 tmp + + # Bazel process wrappers expect `env` at `/usr/bin/env` + mkdir -p -m 0777 usr/bin + ln -s /bin/env usr/bin/env + ''; + + config = { + WorkingDir = "/home/bazelbuild"; + Env = [ + # Add all tooling here so that the generated toolchains use `/nix/store/*` + # paths instead of `/bin` or `/usr/bin`. This way we're guaranteed to use + # binary identical toolchains during local and remote execution. + ("PATH=" + (pkgs.lib.strings.concatStringsSep ":" [ + "${customStdenv.cc.bintools}/bin" + "${customClang}/bin" + "${customStdenv}/bin" + "${pkgs.coreutils}/bin" + "${pkgs.findutils}/bin" + "${pkgs.gnutar}/bin" + ])) + "JAVA_HOME=${pkgs.jdk11_headless}/lib/openjdk" + + "CC=${customClang}/bin/customClang" + + # TODO(aaronmondal): The rbe_config_gen tool invokes bazel inside the + # container to determine compileflags/linkflags. + # Setting these variables here causes them to be baked + # into the generated toolchain config. They don't + # influence remote action invocations as NativeLink + # invokes commands "raw" in the container. However, it + # would be nicer to handle this as part of the nix + # stdenv instead. + "BAZEL_LINKOPTS=${pkgs.lib.concatStringsSep ":" [ + "-L${pkgs.llvmPackages_16.libcxx}/lib" + "-L${pkgs.llvmPackages_16.libcxxabi}/lib" + "-L${pkgs.llvmPackages_16.libunwind}/lib" + "-lc++" + ("-Wl," + + "-rpath,${pkgs.llvmPackages_16.libcxx}/lib," + + "-rpath,${pkgs.llvmPackages_16.libcxxabi}/lib," + + "-rpath,${pkgs.llvmPackages_16.libunwind}/lib," + + "-rpath,${pkgs.glibc}/lib" + ) + ]}" + ]; + }; +} diff --git a/local-remote-execution/rbe-configs-gen.nix b/local-remote-execution/rbe-configs-gen.nix new file mode 100644 index 000000000..a2598bfcd --- /dev/null +++ b/local-remote-execution/rbe-configs-gen.nix @@ -0,0 +1,26 @@ +{ pkgs, ... }: + +pkgs.buildGoModule rec { + pname = "bazel-toolchains"; + version = "5.1.2"; + + patches = [ + ./rbe_configs_gen_skip_pull.diff + ]; + + src = pkgs.fetchFromGitHub { + owner = "bazelbuild"; + repo = "bazel-toolchains"; + rev = "v${version}"; + sha256 = "sha256-J1RFrDGBF7YR5O4D/kNNu6fkxImHpLR+fxhp+R1MaGE="; + }; + + vendorHash = "sha256-E6PylI2prXCXqOUYgYi5nZ4qptqOqbcaOquDfEkhaQ4="; + + meta = with pkgs.lib; { + description = "Generate Bazel toolchain configs for remote execution."; + homepage = "https://github.com/bazelbuild/bazel-toolchains"; + license = licenses.asl20; + maintainers = [ maintainers.aaronmondal ]; + }; +} diff --git a/local-remote-execution/rbe_configs_gen_skip_pull.diff b/local-remote-execution/rbe_configs_gen_skip_pull.diff new file mode 100644 index 000000000..9822a0194 --- /dev/null +++ b/local-remote-execution/rbe_configs_gen_skip_pull.diff @@ -0,0 +1,41 @@ +diff --git a/pkg/rbeconfigsgen/rbeconfigsgen.go b/pkg/rbeconfigsgen/rbeconfigsgen.go +index a752642..b3d8206 100644 +--- a/pkg/rbeconfigsgen/rbeconfigsgen.go ++++ b/pkg/rbeconfigsgen/rbeconfigsgen.go +@@ -260,16 +260,26 @@ func newDockerRunner(containerImage string, stopContainer bool) (*dockerRunner, + stopContainer: stopContainer, + dockerPath: "docker", + } +- if _, err := runCmd(d.dockerPath, "pull", d.containerImage); err != nil { +- return nil, fmt.Errorf("docker was unable to pull the toolchain container image %q: %w", d.containerImage, err) +- } +- resolvedImage, err := runCmd(d.dockerPath, "inspect", "--format={{index .RepoDigests 0}}", d.containerImage) +- if err != nil { +- return nil, fmt.Errorf("failed to convert toolchain container image %q into a fully qualified image name by digest: %w", d.containerImage, err) +- } +- resolvedImage = strings.TrimSpace(resolvedImage) +- log.Printf("Resolved toolchain image %q to fully qualified reference %q.", d.containerImage, resolvedImage) +- d.resolvedImage = resolvedImage ++ // We're disabling this because Skopeo lets us directly load the image into ++ // the docker-daemon instead of pulling it from an intermediary container ++ // registry. Skipping this hash is not a generally safe practice and only ++ // works for us because our images are reproducible. ++ // ++ // TODO(aaronmondal): In our case it's technically not necessary to use ++ // images at all since we can get all the information we ++ // need directly from nix derivations. Rewrite this tool ++ // for much more performant and flexible toochain config ++ // generation. ++ // if _, err := runCmd(d.dockerPath, "pull", d.containerImage); err != nil { ++ // return nil, fmt.Errorf("docker was unable to pull the toolchain container image %q: %w", d.containerImage, err) ++ // } ++ // resolvedImage, err := runCmd(d.dockerPath, "inspect", "--format={{index .RepoDigests 0}}", d.containerImage) ++ // if err != nil { ++ // return nil, fmt.Errorf("failed to convert toolchain container image %q into a fully qualified image name by digest: %w", d.containerImage, err) ++ // } ++ // resolvedImage = strings.TrimSpace(resolvedImage) ++ // log.Printf("Resolved toolchain image %q to fully qualified reference %q.", d.containerImage, resolvedImage) ++ d.resolvedImage = d.containerImage + + cid, err := runCmd(d.dockerPath, "create", "--rm", d.resolvedImage, "sleep", "infinity") + if err != nil { diff --git a/tools/customClang.nix b/tools/customClang.nix new file mode 100644 index 000000000..6246c902c --- /dev/null +++ b/tools/customClang.nix @@ -0,0 +1,22 @@ +{ pkgs, stdenv }: + +# Bazel expects a single frontend for both C and C++. That works for GCC but +# not for clang. This wrapper selects `clang` or `clang++` depending on file +# ending. +# TODO(aaronmondal): The necessity of this is a bug. +# See: https://github.com/NixOS/nixpkgs/issues/216047 +# and https://github.com/NixOS/nixpkgs/issues/150655 +pkgs.writeShellScriptBin "customClang" '' + #! ${stdenv.shell} + function isCxx() { + if [ $# -eq 0 ]; then false + elif [ "$1" == '-xc++' ]; then true + elif [[ -f "$1" && "$1" =~ [.](hh|H|hp|hxx|hpp|HPP|h[+]{2}|tcc|cc|cp|cxx|cpp|CPP|c[+]{2}|C)$ ]]; then true + else isCxx "''${@:2}"; fi + } + if isCxx "$@"; then + exec "${stdenv.cc}/bin/clang++" "$@" + else + exec "${stdenv.cc}/bin/clang" "$@" + fi +'' diff --git a/tools/generate-toolchains.nix b/tools/generate-toolchains.nix new file mode 100644 index 000000000..bcb440293 --- /dev/null +++ b/tools/generate-toolchains.nix @@ -0,0 +1,39 @@ +{ pkgs, }: + +let + +rbeConfigsGen = import ../local-remote-execution/rbe-configs-gen.nix { + inherit pkgs; +}; + +in + +pkgs.writeShellScriptBin "generate-toolchains" '' + #!{pkgs.bash}/bin/bash + set -xeuo pipefail + + SRC_ROOT=$(git rev-parse --show-toplevel) + + cd "''${SRC_ROOT}" + + IMAGE_TAG=$(nix eval .#lre.imageTag --raw) + + $(nix build .#lre --print-build-logs --verbose) \ + && ./result \ + | ${pkgs.skopeo}/bin/skopeo \ + copy \ + docker-archive:/dev/stdin \ + docker-daemon:native-link-toolchain:''${IMAGE_TAG} + + ${rbeConfigsGen}/bin/rbe_configs_gen \ + --toolchain_container=native-link-toolchain:''${IMAGE_TAG} \ + --exec_os=linux \ + --target_os=linux \ + --bazel_version=${pkgs.bazel.version} \ + --output_src_root=''${SRC_ROOT} \ + --output_config_path=local-remote-execution/generated \ + --bazel_path=${pkgs.bazel}/bin/bazel \ + --cpp_env_json=local-remote-execution/cpp_env.json + + pre-commit run -a +'' diff --git a/tools/pre-commit-hooks.nix b/tools/pre-commit-hooks.nix index 157b4d06a..40170651c 100644 --- a/tools/pre-commit-hooks.nix +++ b/tools/pre-commit-hooks.nix @@ -58,7 +58,7 @@ in enable = true; name = "buildifier format"; description = "Format Starlark"; - entry = "${pkgs.bazel-buildtools}/bin/buildifier"; + entry = "${pkgs.bazel-buildtools}/bin/buildifier -lint=fix"; types = [ "bazel" ]; }; bazel-buildifier-lint = {