zig/CMakeLists.txt

4959 lines
205 KiB
CMake
Raw Normal View History

2016-02-01 14:26:01 -08:00
cmake_minimum_required(VERSION 2.8.5)
2015-08-05 15:23:15 -07:00
2016-02-01 14:26:01 -08:00
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." FORCE)
endif()
2015-08-05 15:23:15 -07:00
if(NOT CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}" CACHE STRING
"Directory to install zig to" FORCE)
endif()
2017-04-21 08:06:15 -07:00
project(zig C CXX)
2015-08-05 15:23:15 -07:00
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
2015-08-05 15:46:40 -07:00
set(ZIG_VERSION_MAJOR 0)
2018-09-28 06:03:40 -07:00
set(ZIG_VERSION_MINOR 3)
2018-03-15 06:15:05 -07:00
set(ZIG_VERSION_PATCH 0)
2015-08-05 15:23:15 -07:00
set(ZIG_VERSION "${ZIG_VERSION_MAJOR}.${ZIG_VERSION_MINOR}.${ZIG_VERSION_PATCH}")
find_program(GIT_EXE NAMES git)
if(GIT_EXE)
execute_process(
COMMAND ${GIT_EXE} -C ${CMAKE_SOURCE_DIR} name-rev HEAD --tags --name-only --no-undefined --always
OUTPUT_VARIABLE ZIG_GIT_REV
OUTPUT_STRIP_TRAILING_WHITESPACE)
if(ZIG_GIT_REV MATCHES "\\^0$")
if(NOT("${ZIG_GIT_REV}" STREQUAL "${ZIG_VERSION}^0"))
message("WARNING: Tag does not match configured Zig version")
endif()
else()
set(ZIG_VERSION "${ZIG_VERSION}+${ZIG_GIT_REV}")
endif()
endif()
2015-08-05 15:23:15 -07:00
message("Configuring zig version ${ZIG_VERSION}")
set(ZIG_STATIC off CACHE BOOL "Attempt to build a static zig executable (not compatible with glibc)")
string(REGEX REPLACE "\\\\" "\\\\\\\\" ZIG_LIBC_LIB_DIR_ESCAPED "${ZIG_LIBC_LIB_DIR}")
string(REGEX REPLACE "\\\\" "\\\\\\\\" ZIG_LIBC_STATIC_LIB_DIR_ESCAPED "${ZIG_LIBC_STATIC_LIB_DIR}")
string(REGEX REPLACE "\\\\" "\\\\\\\\" ZIG_LIBC_INCLUDE_DIR_ESCAPED "${ZIG_LIBC_INCLUDE_DIR}")
2016-04-23 09:57:38 -07:00
option(ZIG_TEST_COVERAGE "Build Zig with test coverage instrumentation" OFF)
2017-08-28 00:12:23 -07:00
# To see what patches have been applied to LLD in this repository:
# git log -p -- deps/lld
option(ZIG_FORCE_EXTERNAL_LLD "If your system has the LLD patches use it instead of the embedded LLD" OFF)
find_package(llvm)
find_package(clang)
if(APPLE AND ZIG_STATIC)
list(REMOVE_ITEM LLVM_LIBRARIES "-lz")
list(REMOVE_ITEM LLVM_LIBRARIES "-lcurses")
find_library(ZLIB NAMES z zlib libz)
find_library(LIBNCURSES NAMES libncurses.a)
list(APPEND LLVM_LIBRARIES "${LIBNCURSES}" "${ZLIB}")
endif()
set(ZIG_CPP_LIB_DIR "${CMAKE_BINARY_DIR}/zig_cpp")
2017-08-28 00:12:23 -07:00
if(ZIG_FORCE_EXTERNAL_LLD)
find_package(lld)
2017-12-01 10:44:28 -08:00
include_directories(${LLVM_INCLUDE_DIRS})
2017-08-28 00:12:23 -07:00
include_directories(${LLD_INCLUDE_DIRS})
2017-12-01 10:44:28 -08:00
include_directories(${CLANG_INCLUDE_DIRS})
2017-08-28 00:12:23 -07:00
else()
2017-12-01 10:44:28 -08:00
# This goes first so that we find embedded LLD instead
# of system LLD.
include_directories("${CMAKE_SOURCE_DIR}/deps/lld/include")
include_directories(${LLVM_INCLUDE_DIRS})
include_directories(${CLANG_INCLUDE_DIRS})
2017-08-28 00:12:23 -07:00
set(EMBEDDED_LLD_LIB_SOURCES
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Args.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/ErrorHandler.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Memory.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Reproduce.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Strings.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/TargetOptionsCommandFlags.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Threads.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Timer.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/Common/Version.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/DefinedAtom.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/Error.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/File.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/LinkingContext.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/Reader.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/Resolver.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/SymbolTable.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Core/Writer.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/Driver/DarwinLdDriver.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/FileArchive.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ArchHandler.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/GOTPass.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/LayoutPass.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ObjCPass.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/ShimPass.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/StubsPass.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/TLVPass.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/MachO/WriterMachO.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp"
2017-08-28 00:12:23 -07:00
)
set(EMBEDDED_LLD_ELF_SOURCES
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/AArch64ErrataFix.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/AArch64.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/AMDGPU.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/ARM.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/AVR.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/Hexagon.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/Mips.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/MipsArchTree.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/PPC.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/PPC64.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/SPARCV9.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/X86.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Arch/X86_64.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/CallGraphSort.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Driver.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/DriverUtils.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/EhFrame.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Filesystem.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/GdbIndex.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/ICF.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/InputFiles.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/InputSection.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/LTO.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/LinkerScript.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/MapFile.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/MarkLive.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/OutputSections.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Relocations.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/ScriptLexer.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/ScriptParser.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/SymbolTable.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Symbols.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/SyntheticSections.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Target.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Thunks.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/ELF/Writer.cpp"
2017-08-28 00:12:23 -07:00
)
2018-01-17 14:29:21 -08:00
2017-08-28 00:12:23 -07:00
set(EMBEDDED_LLD_COFF_SOURCES
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/Chunks.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/DLL.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/Driver.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/DriverUtils.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/ICF.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/InputFiles.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/LTO.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/MapFile.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/MarkLive.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/MinGW.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/PDB.cpp"
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/SymbolTable.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/Symbols.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/COFF/Writer.cpp"
2018-01-17 14:29:21 -08:00
)
set(EMBEDDED_LLD_MINGW_SOURCES
"${CMAKE_SOURCE_DIR}/deps/lld/MinGW/Driver.cpp"
)
set(EMBEDDED_LLD_WASM_SOURCES
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/Driver.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/InputChunks.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/InputFiles.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/LTO.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/MarkLive.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/OutputSections.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/SymbolTable.cpp"
2018-08-04 15:09:19 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/Symbols.cpp"
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/Writer.cpp"
"${CMAKE_SOURCE_DIR}/deps/lld/wasm/WriterUtils.cpp"
2017-08-28 00:12:23 -07:00
)
add_library(embedded_lld_lib ${EMBEDDED_LLD_LIB_SOURCES})
add_library(embedded_lld_elf ${EMBEDDED_LLD_ELF_SOURCES})
add_library(embedded_lld_coff ${EMBEDDED_LLD_COFF_SOURCES})
2018-01-17 14:29:21 -08:00
add_library(embedded_lld_mingw ${EMBEDDED_LLD_MINGW_SOURCES})
add_library(embedded_lld_wasm ${EMBEDDED_LLD_WASM_SOURCES})
if(MSVC)
set(ZIG_LLD_COMPILE_FLAGS "-std=c++11 -D_CRT_SECURE_NO_WARNINGS /w")
else()
set(ZIG_LLD_COMPILE_FLAGS "-std=c++11 -fno-exceptions -fno-rtti -Wno-comment")
2018-09-29 23:34:38 -07:00
if(MINGW)
set(ZIG_LLD_COMPILE_FLAGS "${ZIG_LLD_COMPILE_FLAGS} -D__STDC_FORMAT_MACROS -D__USE_MINGW_ANSI_STDIO -Wno-pedantic-ms-format")
endif()
2017-09-10 13:05:18 -07:00
endif()
2017-08-28 00:12:23 -07:00
set_target_properties(embedded_lld_lib PROPERTIES
COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
2017-08-28 00:12:23 -07:00
LINK_FLAGS " "
)
set_target_properties(embedded_lld_elf PROPERTIES
COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
2017-08-28 00:12:23 -07:00
LINK_FLAGS " "
)
set_target_properties(embedded_lld_coff PROPERTIES
COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
2017-08-28 00:12:23 -07:00
LINK_FLAGS " "
)
2018-01-17 14:29:21 -08:00
set_target_properties(embedded_lld_mingw PROPERTIES
COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
LINK_FLAGS " "
)
set_target_properties(embedded_lld_wasm PROPERTIES
COMPILE_FLAGS ${ZIG_LLD_COMPILE_FLAGS}
LINK_FLAGS " "
)
target_include_directories(embedded_lld_lib PRIVATE
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/include"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
)
target_include_directories(embedded_lld_elf PRIVATE
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/ELF"
"${CMAKE_SOURCE_DIR}/deps/lld/include"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/ELF"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
)
target_include_directories(embedded_lld_coff PRIVATE
2017-08-28 00:12:23 -07:00
"${CMAKE_SOURCE_DIR}/deps/lld/COFF"
"${CMAKE_SOURCE_DIR}/deps/lld/include"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/COFF"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
)
target_include_directories(embedded_lld_mingw PRIVATE
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/MinGW"
"${CMAKE_SOURCE_DIR}/deps/lld/include"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/MinGW"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
)
target_include_directories(embedded_lld_wasm PRIVATE
2018-01-17 14:29:21 -08:00
"${CMAKE_SOURCE_DIR}/deps/lld/wasm"
"${CMAKE_SOURCE_DIR}/deps/lld/include"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt/wasm"
"${CMAKE_SOURCE_DIR}/deps/lld-prebuilt"
)
2017-08-28 00:12:23 -07:00
set(LLD_INCLUDE_DIRS "")
set(LLD_LIBRARIES
embedded_lld_elf
embedded_lld_coff
2018-01-17 14:29:21 -08:00
embedded_lld_mingw
embedded_lld_wasm
2017-08-28 00:34:50 -07:00
embedded_lld_lib
2017-08-28 00:12:23 -07:00
)
2018-01-17 14:29:21 -08:00
install(TARGETS embedded_lld_elf embedded_lld_coff embedded_lld_mingw embedded_lld_wasm embedded_lld_lib DESTINATION "${ZIG_CPP_LIB_DIR}")
2017-08-28 00:12:23 -07:00
endif()
2017-03-13 08:54:56 -07:00
2018-03-09 12:06:06 -08:00
# No patches have been applied to SoftFloat-3e
set(EMBEDDED_SOFTFLOAT_SOURCES
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/f128M_isSignalingNaN.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_commonNaNToF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_commonNaNToF16UI.c"
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_commonNaNToF32UI.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_commonNaNToF64UI.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_f128MToCommonNaN.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_f16UIToCommonNaN.c"
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_f32UIToCommonNaN.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_f64UIToCommonNaN.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_propagateNaNF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/s_propagateNaNF16UI.c"
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086/softfloat_raiseFlags.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_add.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_div.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_eq.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_eq_signaling.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_le.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_le_quiet.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_lt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_lt_quiet.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_mul.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_mulAdd.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_rem.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_roundToInt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_sqrt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_sub.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_f16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_f32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_f64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_i32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_i32_r_minMag.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_i64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_i64_r_minMag.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_ui32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_ui32_r_minMag.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_ui64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f128M_to_ui64_r_minMag.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_add.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_div.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_eq.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_lt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_mul.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_rem.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_roundToInt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_sqrt.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_sub.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_to_f128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f16_to_f64.c"
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f32_to_f128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f64_to_f128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/f64_to_f16.c"
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_add256M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addCarryM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addComplCarryM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addMagsF16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addMagsF32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_addMagsF64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_approxRecip32_1.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_approxRecipSqrt32_1.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_approxRecipSqrt_1Ks.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_approxRecip_1Ks.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_compare128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_compare96M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_countLeadingZeros16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_countLeadingZeros32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_countLeadingZeros64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_countLeadingZeros8.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_eq128.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_invalidF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_isNaNF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_le128.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_lt128.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mul128MTo256M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mul64To128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mulAddF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mulAddF16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mulAddF32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_mulAddF64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_negXM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normRoundPackMToF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normRoundPackToF16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normRoundPackToF32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normRoundPackToF64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normSubnormalF128SigM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normSubnormalF16Sig.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normSubnormalF32Sig.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_normSubnormalF64Sig.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_remStepMBy32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundMToI64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundMToUI64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundPackMToF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundPackToF16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundPackToF32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundPackToF64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundToI32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundToI64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundToUI32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_roundToUI64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftLeftM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftNormSigF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftRightJam256M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftRightJam32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftRightJam64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftRightJamM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shiftRightM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftLeft64To96M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftLeftM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftRightExtendM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftRightJam64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftRightJamM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_shortShiftRightM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_sub1XM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_sub256M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_subM.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_subMagsF16.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_subMagsF32.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_subMagsF64.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/s_tryPropagateNaNF128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/softfloat_state.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/ui32_to_f128M.c"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/ui64_to_f128M.c"
)
add_library(embedded_softfloat ${EMBEDDED_SOFTFLOAT_SOURCES})
if(MSVC)
set_target_properties(embedded_softfloat PROPERTIES
COMPILE_FLAGS "-std=c99 /w"
)
else()
set_target_properties(embedded_softfloat PROPERTIES
COMPILE_FLAGS "-std=c99 -O3"
)
endif()
target_include_directories(embedded_softfloat PUBLIC
2018-03-09 12:06:06 -08:00
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e-prebuilt"
"${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/8086"
2015-08-05 15:46:40 -07:00
)
2018-03-09 12:06:06 -08:00
include_directories("${CMAKE_SOURCE_DIR}/deps/SoftFloat-3e/source/include")
set(SOFTFLOAT_LIBRARIES embedded_softfloat)
find_package(Threads)
2015-08-05 15:46:40 -07:00
2015-08-05 15:23:15 -07:00
set(ZIG_SOURCES
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/analyze.cpp"
"${CMAKE_SOURCE_DIR}/src/ast_render.cpp"
2017-06-26 11:41:47 -07:00
"${CMAKE_SOURCE_DIR}/src/bigfloat.cpp"
"${CMAKE_SOURCE_DIR}/src/bigint.cpp"
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/buffer.cpp"
2016-04-21 15:48:13 -07:00
"${CMAKE_SOURCE_DIR}/src/c_tokenizer.cpp"
"${CMAKE_SOURCE_DIR}/src/cache_hash.cpp"
"${CMAKE_SOURCE_DIR}/src/codegen.cpp"
"${CMAKE_SOURCE_DIR}/src/compiler.cpp"
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/errmsg.cpp"
2015-11-04 23:05:25 -08:00
"${CMAKE_SOURCE_DIR}/src/error.cpp"
2016-12-18 13:56:50 -08:00
"${CMAKE_SOURCE_DIR}/src/ir.cpp"
"${CMAKE_SOURCE_DIR}/src/ir_print.cpp"
"${CMAKE_SOURCE_DIR}/src/libc_installation.cpp"
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/link.cpp"
2015-11-04 23:05:25 -08:00
"${CMAKE_SOURCE_DIR}/src/main.cpp"
"${CMAKE_SOURCE_DIR}/src/os.cpp"
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/parser.cpp"
"${CMAKE_SOURCE_DIR}/src/range_set.cpp"
2016-09-29 23:21:21 -07:00
"${CMAKE_SOURCE_DIR}/src/target.cpp"
"${CMAKE_SOURCE_DIR}/src/tokenizer.cpp"
2015-11-04 23:05:25 -08:00
"${CMAKE_SOURCE_DIR}/src/util.cpp"
2017-11-24 11:56:05 -08:00
"${CMAKE_SOURCE_DIR}/src/translate_c.cpp"
)
2018-09-11 14:29:18 -07:00
set(BLAKE_SOURCES
"${CMAKE_SOURCE_DIR}/src/blake2b.c"
)
set(ZIG_CPP_SOURCES
"${CMAKE_SOURCE_DIR}/src/zig_llvm.cpp"
"${CMAKE_SOURCE_DIR}/src/zig_clang.cpp"
"${CMAKE_SOURCE_DIR}/src/zig_clang_driver.cpp"
"${CMAKE_SOURCE_DIR}/src/zig_clang_cc1_main.cpp"
"${CMAKE_SOURCE_DIR}/src/zig_clang_cc1as_main.cpp"
"${CMAKE_SOURCE_DIR}/src/windows_sdk.cpp"
2015-08-05 15:23:15 -07:00
)
set(ZIG_STD_FILES
"array_list.zig"
2019-03-02 13:46:04 -08:00
"atomic.zig"
"atomic/int.zig"
"atomic/queue.zig"
2018-05-06 22:04:43 -07:00
"atomic/stack.zig"
"base64.zig"
"buf_map.zig"
"buf_set.zig"
"buffer.zig"
"build.zig"
"build/fmt.zig"
2019-03-02 13:46:04 -08:00
"c.zig"
"c/darwin.zig"
2018-10-17 12:21:48 -07:00
"c/freebsd.zig"
"c/linux.zig"
"c/netbsd.zig"
"c/windows.zig"
"coff.zig"
2019-03-02 13:46:04 -08:00
"crypto.zig"
2018-05-06 22:04:43 -07:00
"crypto/blake2.zig"
"crypto/chacha20.zig"
2018-05-06 22:04:43 -07:00
"crypto/hmac.zig"
"crypto/md5.zig"
2019-02-01 09:22:21 -08:00
"crypto/poly1305.zig"
"crypto/sha1.zig"
"crypto/sha2.zig"
"crypto/sha3.zig"
"crypto/x25519.zig"
"cstr.zig"
2019-03-02 13:46:04 -08:00
"debug.zig"
"debug/failing_allocator.zig"
"dwarf.zig"
"dynamic_library.zig"
"elf.zig"
"empty.zig"
2018-04-08 21:52:45 -07:00
"event.zig"
2018-07-09 19:22:44 -07:00
"event/channel.zig"
"event/fs.zig"
"event/future.zig"
"event/group.zig"
"event/io.zig"
2018-07-09 19:22:44 -07:00
"event/lock.zig"
"event/locked.zig"
"event/loop.zig"
2018-09-30 07:37:58 -07:00
"event/net.zig"
"event/rwlock.zig"
"event/rwlocked.zig"
2019-03-02 13:46:04 -08:00
"fmt.zig"
"fmt/errol.zig"
"fmt/errol/enum3.zig"
"fmt/errol/lookup.zig"
"fmt/parse_float.zig"
2019-03-02 13:46:04 -08:00
"hash.zig"
"hash/adler.zig"
"hash/crc.zig"
"hash/fnv.zig"
"hash/siphash.zig"
2018-05-06 22:04:43 -07:00
"hash_map.zig"
"heap.zig"
"io.zig"
"io/seekable_stream.zig"
"json.zig"
"lazy_init.zig"
"linked_list.zig"
"macho.zig"
2019-03-02 13:46:04 -08:00
"math.zig"
"math/acos.zig"
"math/acosh.zig"
"math/asin.zig"
"math/asinh.zig"
"math/atan.zig"
"math/atan2.zig"
"math/atanh.zig"
2019-03-02 13:46:04 -08:00
"math/big.zig"
"math/big/int.zig"
"math/cbrt.zig"
"math/ceil.zig"
2019-03-02 13:46:04 -08:00
"math/complex.zig"
2018-05-06 22:04:43 -07:00
"math/complex/abs.zig"
"math/complex/acos.zig"
"math/complex/acosh.zig"
"math/complex/arg.zig"
"math/complex/asin.zig"
"math/complex/asinh.zig"
"math/complex/atan.zig"
"math/complex/atanh.zig"
"math/complex/conj.zig"
"math/complex/cos.zig"
"math/complex/cosh.zig"
"math/complex/exp.zig"
"math/complex/ldexp.zig"
"math/complex/log.zig"
"math/complex/pow.zig"
"math/complex/proj.zig"
"math/complex/sin.zig"
"math/complex/sinh.zig"
"math/complex/sqrt.zig"
"math/complex/tan.zig"
"math/complex/tanh.zig"
"math/copysign.zig"
"math/cos.zig"
"math/cosh.zig"
"math/exp.zig"
"math/exp2.zig"
"math/expm1.zig"
"math/expo2.zig"
"math/fabs.zig"
"math/floor.zig"
"math/fma.zig"
"math/frexp.zig"
"math/hypot.zig"
"math/ilogb.zig"
"math/inf.zig"
"math/isfinite.zig"
"math/isinf.zig"
"math/isnan.zig"
"math/isnormal.zig"
"math/ln.zig"
"math/log.zig"
"math/log10.zig"
"math/log1p.zig"
"math/log2.zig"
"math/modf.zig"
"math/nan.zig"
"math/pow.zig"
"math/powi.zig"
"math/round.zig"
"math/scalbn.zig"
"math/signbit.zig"
"math/sin.zig"
"math/sinh.zig"
"math/sqrt.zig"
"math/tan.zig"
"math/tanh.zig"
"math/trunc.zig"
2019-02-01 09:22:21 -08:00
"mem.zig"
2019-03-02 13:46:04 -08:00
"meta.zig"
2018-10-20 08:40:26 -07:00
"meta/trait.zig"
"mutex.zig"
"net.zig"
2019-03-02 13:46:04 -08:00
"os.zig"
"os/child_process.zig"
"os/darwin.zig"
2018-07-21 21:04:24 -07:00
"os/darwin/errno.zig"
2018-05-06 22:04:43 -07:00
"os/epoch.zig"
"os/file.zig"
2019-03-02 13:46:04 -08:00
"os/freebsd.zig"
2019-02-01 09:22:21 -08:00
"os/freebsd/errno.zig"
"os/get_app_data_dir.zig"
"os/get_user_id.zig"
2019-03-02 13:46:04 -08:00
"os/linux.zig"
2019-02-01 09:22:21 -08:00
"os/linux/arm64.zig"
"os/linux/errno.zig"
"os/linux/vdso.zig"
"os/linux/x86_64.zig"
2019-03-02 13:46:04 -08:00
"os/netbsd.zig"
"os/netbsd/errno.zig"
"os/path.zig"
2018-04-18 11:55:42 -07:00
"os/time.zig"
2018-12-26 12:25:54 -08:00
"os/uefi.zig"
2019-03-02 13:46:04 -08:00
"os/windows.zig"
"os/windows/advapi32.zig"
"os/windows/error.zig"
"os/windows/kernel32.zig"
"os/windows/ntdll.zig"
"os/windows/ole32.zig"
"os/windows/shell32.zig"
"os/windows/util.zig"
2018-01-07 01:43:08 -08:00
"os/zen.zig"
"pdb.zig"
2019-02-25 11:25:21 -08:00
"priority_queue.zig"
2019-03-02 13:46:04 -08:00
"rand.zig"
"rand/ziggurat.zig"
2018-05-06 22:04:43 -07:00
"segmented_list.zig"
"sort.zig"
"special/bootstrap.zig"
"special/bootstrap_lib.zig"
"special/bootstrap_windows_tls.zig"
"special/build_runner.zig"
"special/builtin.zig"
2019-03-02 13:46:04 -08:00
"special/compiler_rt.zig"
"special/compiler_rt/addXf3.zig"
"special/compiler_rt/aulldiv.zig"
"special/compiler_rt/aullrem.zig"
"special/compiler_rt/comparetf2.zig"
2018-06-13 03:25:04 -07:00
"special/compiler_rt/divti3.zig"
"special/compiler_rt/extendXfYf2.zig"
2019-02-01 09:22:21 -08:00
"special/compiler_rt/fixdfdi.zig"
"special/compiler_rt/fixdfsi.zig"
"special/compiler_rt/fixdfti.zig"
"special/compiler_rt/fixint.zig"
"special/compiler_rt/fixsfdi.zig"
"special/compiler_rt/fixsfsi.zig"
"special/compiler_rt/fixsfti.zig"
"special/compiler_rt/fixtfdi.zig"
"special/compiler_rt/fixtfsi.zig"
"special/compiler_rt/fixtfti.zig"
"special/compiler_rt/fixuint.zig"
"special/compiler_rt/fixunsdfdi.zig"
"special/compiler_rt/fixunsdfsi.zig"
"special/compiler_rt/fixunsdfti.zig"
"special/compiler_rt/fixunssfdi.zig"
"special/compiler_rt/fixunssfsi.zig"
"special/compiler_rt/fixunssfti.zig"
"special/compiler_rt/fixunstfdi.zig"
"special/compiler_rt/fixunstfsi.zig"
"special/compiler_rt/fixunstfti.zig"
"special/compiler_rt/floattidf.zig"
"special/compiler_rt/floattisf.zig"
"special/compiler_rt/floattitf.zig"
"special/compiler_rt/floatunditf.zig"
"special/compiler_rt/floatunsitf.zig"
"special/compiler_rt/floatuntidf.zig"
"special/compiler_rt/floatuntisf.zig"
"special/compiler_rt/floatuntitf.zig"
"special/compiler_rt/muloti4.zig"
"special/compiler_rt/multi3.zig"
2019-03-05 20:09:00 -08:00
"special/compiler_rt/popcountdi2.zig"
"special/compiler_rt/truncXfYf2.zig"
"special/compiler_rt/udivmod.zig"
"special/compiler_rt/udivmoddi4.zig"
"special/compiler_rt/udivmodti4.zig"
"special/compiler_rt/udivti3.zig"
"special/compiler_rt/umodti3.zig"
2019-02-15 21:42:56 -08:00
"special/fmt_runner.zig"
"special/init-exe/build.zig"
"special/init-exe/src/main.zig"
"special/init-lib/build.zig"
"special/init-lib/src/main.zig"
"special/panic.zig"
"special/test_runner.zig"
"spinlock.zig"
2019-02-01 09:22:21 -08:00
"statically_initialized_mutex.zig"
2019-03-02 13:46:04 -08:00
"std.zig"
"testing.zig"
"unicode.zig"
"valgrind.zig"
2018-12-30 07:55:24 -08:00
"valgrind/callgrind.zig"
"valgrind/memcheck.zig"
2019-03-02 13:46:04 -08:00
"zig.zig"
"zig/ast.zig"
"zig/parse.zig"
"zig/parse_string_literal.zig"
"zig/render.zig"
"zig/tokenizer.zig"
)
set(ZIG_C_HEADER_FILES
"__clang_cuda_builtin_vars.h"
"__clang_cuda_cmath.h"
"__clang_cuda_complex_builtins.h"
2018-10-04 15:14:57 -07:00
"__clang_cuda_device_functions.h"
"__clang_cuda_intrinsics.h"
2018-10-04 15:14:57 -07:00
"__clang_cuda_libdevice_declares.h"
"__clang_cuda_math_forward_declares.h"
"__clang_cuda_runtime_wrapper.h"
"__stddef_max_align_t.h"
"__wmmintrin_aes.h"
"__wmmintrin_pclmul.h"
"adxintrin.h"
"altivec.h"
"ammintrin.h"
2018-02-23 10:15:16 -08:00
"arm64intr.h"
"arm_acle.h"
2018-10-04 15:14:57 -07:00
"arm_fp16.h"
"arm_neon.h"
"armintr.h"
"avx2intrin.h"
2018-02-23 10:15:16 -08:00
"avx512bitalgintrin.h"
"avx512bwintrin.h"
"avx512cdintrin.h"
"avx512dqintrin.h"
"avx512erintrin.h"
"avx512fintrin.h"
"avx512ifmaintrin.h"
"avx512ifmavlintrin.h"
"avx512pfintrin.h"
2018-02-23 10:15:16 -08:00
"avx512vbmi2intrin.h"
"avx512vbmiintrin.h"
"avx512vbmivlintrin.h"
2018-02-23 10:15:16 -08:00
"avx512vlbitalgintrin.h"
"avx512vlbwintrin.h"
"avx512vlcdintrin.h"
"avx512vldqintrin.h"
"avx512vlintrin.h"
2018-02-23 10:15:16 -08:00
"avx512vlvbmi2intrin.h"
"avx512vlvnniintrin.h"
"avx512vnniintrin.h"
"avx512vpopcntdqintrin.h"
2018-02-23 10:15:16 -08:00
"avx512vpopcntdqvlintrin.h"
"avxintrin.h"
"bmi2intrin.h"
"bmiintrin.h"
2018-02-23 10:15:16 -08:00
"cetintrin.h"
2018-10-04 15:14:57 -07:00
"cldemoteintrin.h"
"clflushoptintrin.h"
2018-02-23 10:15:16 -08:00
"clwbintrin.h"
"clzerointrin.h"
"cpuid.h"
"cuda_wrappers/algorithm"
"cuda_wrappers/complex"
"cuda_wrappers/new"
"emmintrin.h"
"f16cintrin.h"
"float.h"
"fma4intrin.h"
"fmaintrin.h"
"fxsrintrin.h"
2018-02-23 10:15:16 -08:00
"gfniintrin.h"
"htmintrin.h"
"htmxlintrin.h"
"ia32intrin.h"
"immintrin.h"
"intrin.h"
"inttypes.h"
2018-10-04 15:14:57 -07:00
"invpcidintrin.h"
"iso646.h"
"limits.h"
"lwpintrin.h"
"lzcntintrin.h"
"mm3dnow.h"
"mm_malloc.h"
"mmintrin.h"
"module.modulemap"
2018-10-04 15:14:57 -07:00
"movdirintrin.h"
"msa.h"
"mwaitxintrin.h"
"nmmintrin.h"
"opencl-c.h"
2018-10-04 15:14:57 -07:00
"pconfigintrin.h"
"pkuintrin.h"
"pmmintrin.h"
"popcntintrin.h"
"prfchwintrin.h"
2018-10-04 15:14:57 -07:00
"ptwriteintrin.h"
"rdseedintrin.h"
"rtmintrin.h"
"s390intrin.h"
2018-10-04 15:14:57 -07:00
"sgxintrin.h"
"shaintrin.h"
"smmintrin.h"
"stdalign.h"
"stdarg.h"
"stdatomic.h"
"stdbool.h"
"stddef.h"
"stdint.h"
"stdnoreturn.h"
"tbmintrin.h"
"tgmath.h"
"tmmintrin.h"
"unwind.h"
"vadefs.h"
2018-02-23 10:15:16 -08:00
"vaesintrin.h"
"varargs.h"
"vecintrin.h"
2018-02-23 10:15:16 -08:00
"vpclmulqdqintrin.h"
2018-10-04 15:14:57 -07:00
"waitpkgintrin.h"
"wbnoinvdintrin.h"
"wmmintrin.h"
"x86intrin.h"
"xmmintrin.h"
"xopintrin.h"
"xsavecintrin.h"
"xsaveintrin.h"
"xsaveoptintrin.h"
"xsavesintrin.h"
"xtestintrin.h"
)
2019-03-04 19:15:53 -08:00
set(ZIG_LIBC_FILES
2019-03-05 15:17:22 -08:00
"dummy/c.zig"
2019-03-07 09:16:10 -08:00
"dummy/c/i386.zig"
"dummy/c/x86_64.zig"
2019-03-05 15:17:22 -08:00
"dummy/dl.zig"
"dummy/m.zig"
"dummy/pthread.zig"
"dummy/rt.zig"
2019-03-04 19:15:53 -08:00
"glibc/bits/byteswap.h"
"glibc/bits/endian.h"
"glibc/bits/floatn-common.h"
"glibc/bits/libc-header-start.h"
"glibc/bits/long-double.h"
2019-03-05 15:17:22 -08:00
"glibc/bits/pthreadtypes.h"
"glibc/bits/select.h"
"glibc/bits/signum-generic.h"
"glibc/bits/stat.h"
2019-03-04 19:15:53 -08:00
"glibc/bits/stdint-intn.h"
2019-03-05 15:17:22 -08:00
"glibc/bits/stdlib-bsearch.h"
"glibc/bits/time64.h"
2019-03-04 19:15:53 -08:00
"glibc/bits/timesize.h"
2019-03-05 15:17:22 -08:00
"glibc/bits/types/__sigset_t.h"
"glibc/bits/types/struct_sched_param.h"
2019-03-04 19:15:53 -08:00
"glibc/bits/typesizes.h"
"glibc/bits/uintn-identity.h"
"glibc/bits/waitflags.h"
"glibc/bits/waitstatus.h"
"glibc/csu/abi-note.S"
"glibc/csu/abi-tag.h"
"glibc/csu/elf-init.c"
"glibc/debug/stack_chk_fail_local.c"
2019-03-05 15:17:22 -08:00
"glibc/elf/elf.h"
2019-03-04 19:15:53 -08:00
"glibc/include/alloca.h"
2019-03-05 15:17:22 -08:00
"glibc/include/bits/cpu-set.h"
"glibc/include/bits/statx.h"
"glibc/include/bits/stdlib-float.h"
2019-03-04 19:15:53 -08:00
"glibc/include/bits/types.h"
"glibc/include/bits/types/__locale_t.h"
"glibc/include/bits/types/clock_t.h"
"glibc/include/bits/types/clockid_t.h"
"glibc/include/bits/types/locale_t.h"
2019-03-05 15:17:22 -08:00
"glibc/include/bits/types/sig_atomic_t.h"
2019-03-04 19:15:53 -08:00
"glibc/include/bits/types/sigset_t.h"
2019-03-05 15:17:22 -08:00
"glibc/include/bits/types/struct_itimerspec.h"
2019-03-04 19:15:53 -08:00
"glibc/include/bits/types/struct_timespec.h"
2019-03-05 15:17:22 -08:00
"glibc/include/bits/types/struct_timeval.h"
"glibc/include/bits/types/struct_tm.h"
"glibc/include/bits/types/time_t.h"
"glibc/include/bits/types/timer_t.h"
2019-03-04 19:15:53 -08:00
"glibc/include/config.h"
2019-03-05 15:17:22 -08:00
"glibc/include/dso_handle.h"
2019-03-04 19:15:53 -08:00
"glibc/include/elf.h"
"glibc/include/endian.h"
"glibc/include/features.h"
"glibc/include/gnu/stubs.h"
"glibc/include/libc-modules.h"
2019-03-05 15:17:22 -08:00
"glibc/include/libc-pointer-arith.h"
2019-03-04 19:15:53 -08:00
"glibc/include/libc-symbols.h"
2019-03-05 15:17:22 -08:00
"glibc/include/pthread.h"
"glibc/include/signal.h"
"glibc/include/stap-probe.h"
2019-03-04 19:15:53 -08:00
"glibc/include/stdc-predef.h"
"glibc/include/stdlib.h"
"glibc/include/sys/cdefs.h"
"glibc/include/sys/select.h"
2019-03-05 15:17:22 -08:00
"glibc/include/sys/signal.h"
2019-03-04 19:15:53 -08:00
"glibc/include/sys/stat.h"
2019-03-05 15:17:22 -08:00
"glibc/include/sys/types.h"
"glibc/include/syscall.h"
2019-03-05 15:17:22 -08:00
"glibc/io/bits/statx.h"
2019-03-04 19:15:53 -08:00
"glibc/io/fstat.c"
"glibc/io/fstat64.c"
"glibc/io/fstatat.c"
"glibc/io/fstatat64.c"
"glibc/io/lstat.c"
"glibc/io/lstat64.c"
"glibc/io/mknod.c"
"glibc/io/mknodat.c"
"glibc/io/stat.c"
"glibc/io/stat64.c"
"glibc/io/sys/stat.h"
"glibc/locale/bits/types/__locale_t.h"
"glibc/locale/bits/types/locale_t.h"
"glibc/misc/sys/cdefs.h"
"glibc/misc/sys/select.h"
"glibc/misc/syscall.h"
2019-03-04 19:15:53 -08:00
"glibc/nptl/pthread_atfork.c"
2019-03-05 15:17:22 -08:00
"glibc/posix/bits/cpu-set.h"
2019-03-04 19:15:53 -08:00
"glibc/posix/bits/types.h"
2019-03-05 15:17:22 -08:00
"glibc/posix/sys/types.h"
"glibc/signal/bits/types/sig_atomic_t.h"
"glibc/signal/bits/types/sigset_t.h"
"glibc/signal/signal.h"
"glibc/signal/sys/signal.h"
"glibc/stdlib/alloca.h"
2019-03-04 19:15:53 -08:00
"glibc/stdlib/at_quick_exit.c"
"glibc/stdlib/atexit.c"
2019-03-05 15:17:22 -08:00
"glibc/stdlib/bits/stdlib-float.h"
2019-03-04 19:15:53 -08:00
"glibc/stdlib/exit.h"
"glibc/stdlib/stdlib.h"
2019-03-05 15:17:22 -08:00
"glibc/string/endian.h"
"glibc/sysdeps/aarch64/bits/endian.h"
"glibc/sysdeps/aarch64/crti.S"
"glibc/sysdeps/aarch64/crtn.S"
"glibc/sysdeps/aarch64/dl-sysdep.h"
"glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/aarch64/start.S"
"glibc/sysdeps/aarch64/sysdep.h"
"glibc/sysdeps/alpha/bits/endian.h"
"glibc/sysdeps/alpha/crti.S"
"glibc/sysdeps/alpha/crtn.S"
"glibc/sysdeps/alpha/dl-dtprocnum.h"
"glibc/sysdeps/alpha/dl-sysdep.h"
"glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/alpha/start.S"
"glibc/sysdeps/arm/bits/endian.h"
"glibc/sysdeps/arm/crti.S"
"glibc/sysdeps/arm/crtn.S"
"glibc/sysdeps/arm/dl-sysdep.h"
"glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/arm/start.S"
"glibc/sysdeps/arm/sysdep.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/generic/dl-dtprocnum.h"
"glibc/sysdeps/generic/dl-sysdep.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/generic/dwarf2.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/generic/libc-lock.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/generic/symbol-hacks.h"
"glibc/sysdeps/generic/sys/syscall.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/generic/sysdep.h"
"glibc/sysdeps/generic/tls.h"
"glibc/sysdeps/hppa/bits/endian.h"
"glibc/sysdeps/hppa/crti.S"
"glibc/sysdeps/hppa/crtn.S"
"glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/hppa/start.S"
"glibc/sysdeps/hppa/sysdep.h"
"glibc/sysdeps/htl/bits/pthread.h"
"glibc/sysdeps/htl/bits/thread-shared-types.h"
"glibc/sysdeps/htl/libc-lockP.h"
"glibc/sysdeps/htl/pthread.h"
"glibc/sysdeps/i386/crti.S"
"glibc/sysdeps/i386/crtn.S"
"glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/i386/start.S"
"glibc/sysdeps/i386/symbol-hacks.h"
"glibc/sysdeps/i386/sysdep.h"
"glibc/sysdeps/ia64/crti.S"
"glibc/sysdeps/ia64/crtn.S"
"glibc/sysdeps/ia64/dl-dtprocnum.h"
"glibc/sysdeps/ia64/dl-sysdep.h"
"glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/ia64/start.S"
"glibc/sysdeps/ia64/sysdep.h"
"glibc/sysdeps/init_array/crti.S"
"glibc/sysdeps/init_array/crtn.S"
"glibc/sysdeps/m68k/bits/endian.h"
"glibc/sysdeps/m68k/coldfire/sysdep.h"
"glibc/sysdeps/m68k/crti.S"
"glibc/sysdeps/m68k/crtn.S"
"glibc/sysdeps/m68k/m680x0/sysdep.h"
"glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/m68k/start.S"
"glibc/sysdeps/m68k/symbol-hacks.h"
"glibc/sysdeps/m68k/sysdep.h"
"glibc/sysdeps/mach/hurd/bits/stat.h"
"glibc/sysdeps/mach/hurd/bits/typesizes.h"
"glibc/sysdeps/mach/hurd/dl-sysdep.h"
"glibc/sysdeps/mach/hurd/kernel-features.h"
"glibc/sysdeps/mach/i386/sysdep.h"
"glibc/sysdeps/mach/libc-lock.h"
"glibc/sysdeps/mach/sys/syscall.h"
"glibc/sysdeps/mach/sysdep.h"
"glibc/sysdeps/microblaze/bits/endian.h"
"glibc/sysdeps/microblaze/crti.S"
"glibc/sysdeps/microblaze/crtn.S"
"glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/microblaze/start.S"
"glibc/sysdeps/microblaze/sysdep.h"
"glibc/sysdeps/mips/bits/endian.h"
"glibc/sysdeps/mips/dl-dtprocnum.h"
"glibc/sysdeps/mips/mips32/crti.S"
"glibc/sysdeps/mips/mips32/crtn.S"
"glibc/sysdeps/mips/mips64/n32/crti.S"
"glibc/sysdeps/mips/mips64/n32/crtn.S"
"glibc/sysdeps/mips/mips64/n64/crti.S"
"glibc/sysdeps/mips/mips64/n64/crtn.S"
"glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/mips/start.S"
"glibc/sysdeps/nios2/bits/endian.h"
"glibc/sysdeps/nios2/crti.S"
"glibc/sysdeps/nios2/crtn.S"
"glibc/sysdeps/nios2/dl-sysdep.h"
"glibc/sysdeps/nios2/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/nios2/start.S"
"glibc/sysdeps/nios2/sysdep.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/nptl/bits/pthreadtypes.h"
"glibc/sysdeps/nptl/bits/thread-shared-types.h"
"glibc/sysdeps/nptl/libc-lock.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/nptl/libc-lockP.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/nptl/pthread.h"
"glibc/sysdeps/powerpc/bits/endian.h"
"glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/powerpc/powerpc32/crti.S"
"glibc/sysdeps/powerpc/powerpc32/crtn.S"
"glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h"
"glibc/sysdeps/powerpc/powerpc32/start.S"
"glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h"
"glibc/sysdeps/powerpc/powerpc32/sysdep.h"
"glibc/sysdeps/powerpc/powerpc64/crti.S"
"glibc/sysdeps/powerpc/powerpc64/crtn.S"
"glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h"
"glibc/sysdeps/powerpc/powerpc64/start.S"
"glibc/sysdeps/powerpc/powerpc64/sysdep.h"
"glibc/sysdeps/powerpc/sysdep.h"
"glibc/sysdeps/riscv/bits/endian.h"
"glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/riscv/start.S"
"glibc/sysdeps/s390/bits/endian.h"
"glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/s390/s390-32/crti.S"
"glibc/sysdeps/s390/s390-32/crtn.S"
"glibc/sysdeps/s390/s390-32/dl-sysdep.h"
"glibc/sysdeps/s390/s390-32/start.S"
"glibc/sysdeps/s390/s390-32/symbol-hacks.h"
"glibc/sysdeps/s390/s390-32/sysdep.h"
"glibc/sysdeps/s390/s390-64/crti.S"
"glibc/sysdeps/s390/s390-64/crtn.S"
"glibc/sysdeps/s390/s390-64/start.S"
"glibc/sysdeps/s390/s390-64/sysdep.h"
"glibc/sysdeps/sh/bits/endian.h"
"glibc/sysdeps/sh/crti.S"
"glibc/sysdeps/sh/crtn.S"
"glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/sh/start.S"
"glibc/sysdeps/sh/sysdep.h"
"glibc/sysdeps/sparc/bits/endian.h"
"glibc/sysdeps/sparc/crti.S"
"glibc/sysdeps/sparc/crtn.S"
"glibc/sysdeps/sparc/dl-dtprocnum.h"
"glibc/sysdeps/sparc/dl-sysdep.h"
"glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h"
"glibc/sysdeps/sparc/sparc32/start.S"
"glibc/sysdeps/sparc/sparc64/start.S"
"glibc/sysdeps/sparc/sysdep.h"
"glibc/sysdeps/unix/alpha/sysdep.h"
"glibc/sysdeps/unix/arm/sysdep.h"
"glibc/sysdeps/unix/i386/sysdep.h"
"glibc/sysdeps/unix/mips/mips32/sysdep.h"
"glibc/sysdeps/unix/mips/mips64/n32/sysdep.h"
"glibc/sysdeps/unix/mips/mips64/n64/sysdep.h"
"glibc/sysdeps/unix/mips/sysdep.h"
"glibc/sysdeps/unix/powerpc/sysdep.h"
"glibc/sysdeps/unix/sh/sysdep.h"
"glibc/sysdeps/unix/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h"
"glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h"
"glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h"
"glibc/sysdeps/unix/sysv/linux/arm/sysdep.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/unix/sysv/linux/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/bits/timex.h"
"glibc/sysdeps/unix/sysv/linux/dl-sysdep.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h"
"glibc/sysdeps/unix/sysv/linux/generic/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/hppa/pthread.h"
"glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h"
"glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/i386/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h"
"glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h"
"glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/unix/sysv/linux/include/sys/timex.h"
"glibc/sysdeps/unix/sysv/linux/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/nios2/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h"
"glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h"
"glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/sh/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h"
"glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/sys/syscall.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/unix/sysv/linux/sys/timex.h"
"glibc/sysdeps/unix/sysv/linux/sysdep.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h"
"glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h"
"glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h"
"glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h"
"glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h"
"glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h"
"glibc/sysdeps/unix/x86_64/sysdep.h"
2019-03-07 09:16:10 -08:00
"glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/x86/bits/endian.h"
"glibc/sysdeps/x86/bits/select.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/x86/bits/wordsize.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h"
2019-03-05 15:17:22 -08:00
"glibc/sysdeps/x86/sysdep.h"
2019-03-04 19:15:53 -08:00
"glibc/sysdeps/x86_64/crti.S"
"glibc/sysdeps/x86_64/crtn.S"
"glibc/sysdeps/x86_64/start.S"
"glibc/sysdeps/x86_64/sysdep.h"
"glibc/sysdeps/x86_64/x32/symbol-hacks.h"
"glibc/sysdeps/x86_64/x32/sysdep.h"
2019-03-04 19:15:53 -08:00
"glibc/time/bits/types/clock_t.h"
"glibc/time/bits/types/clockid_t.h"
2019-03-05 15:17:22 -08:00
"glibc/time/bits/types/struct_itimerspec.h"
"glibc/time/bits/types/struct_timespec.h"
"glibc/time/bits/types/struct_timeval.h"
"glibc/time/bits/types/struct_tm.h"
2019-03-04 19:15:53 -08:00
"glibc/time/bits/types/time_t.h"
"glibc/time/bits/types/timer_t.h"
2019-03-07 09:16:10 -08:00
"include/aarch64-linux-gnu/asm/bitsperlong.h"
"include/aarch64-linux-gnu/asm/unistd.h"
"include/aarch64-linux-gnu/bits/endian.h"
"include/aarch64-linux-gnu/bits/fcntl.h"
"include/aarch64-linux-gnu/bits/fenv.h"
"include/aarch64-linux-gnu/bits/floatn.h"
"include/aarch64-linux-gnu/bits/fp-fast.h"
"include/aarch64-linux-gnu/bits/hwcap.h"
"include/aarch64-linux-gnu/bits/ipc.h"
"include/aarch64-linux-gnu/bits/link.h"
"include/aarch64-linux-gnu/bits/local_lim.h"
"include/aarch64-linux-gnu/bits/long-double.h"
"include/aarch64-linux-gnu/bits/procfs.h"
"include/aarch64-linux-gnu/bits/pthreadtypes-arch.h"
"include/aarch64-linux-gnu/bits/semaphore.h"
"include/aarch64-linux-gnu/bits/setjmp.h"
"include/aarch64-linux-gnu/bits/sigstack.h"
"include/aarch64-linux-gnu/bits/stat.h"
"include/aarch64-linux-gnu/bits/statfs.h"
"include/aarch64-linux-gnu/bits/typesizes.h"
"include/aarch64-linux-gnu/bits/wordsize.h"
"include/aarch64-linux-gnu/fpu_control.h"
"include/aarch64-linux-gnu/gnu/lib-names-lp64.h"
"include/aarch64-linux-gnu/gnu/lib-names.h"
"include/aarch64-linux-gnu/gnu/stubs-lp64.h"
"include/aarch64-linux-gnu/gnu/stubs.h"
"include/aarch64-linux-gnu/ieee754.h"
"include/aarch64-linux-gnu/sys/elf.h"
"include/aarch64-linux-gnu/sys/ptrace.h"
"include/aarch64-linux-gnu/sys/ucontext.h"
"include/aarch64-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/aarch64-linux-musleabi/asm/auxvec.h"
"include/aarch64-linux-musleabi/asm/bitsperlong.h"
"include/aarch64-linux-musleabi/asm/bpf_perf_event.h"
"include/aarch64-linux-musleabi/asm/byteorder.h"
"include/aarch64-linux-musleabi/asm/fcntl.h"
"include/aarch64-linux-musleabi/asm/hwcap.h"
"include/aarch64-linux-musleabi/asm/kvm.h"
"include/aarch64-linux-musleabi/asm/kvm_para.h"
"include/aarch64-linux-musleabi/asm/param.h"
"include/aarch64-linux-musleabi/asm/perf_regs.h"
"include/aarch64-linux-musleabi/asm/posix_types.h"
"include/aarch64-linux-musleabi/asm/ptrace.h"
"include/aarch64-linux-musleabi/asm/setup.h"
"include/aarch64-linux-musleabi/asm/sigcontext.h"
"include/aarch64-linux-musleabi/asm/siginfo.h"
"include/aarch64-linux-musleabi/asm/signal.h"
"include/aarch64-linux-musleabi/asm/stat.h"
"include/aarch64-linux-musleabi/asm/statfs.h"
"include/aarch64-linux-musleabi/asm/ucontext.h"
"include/aarch64-linux-musleabi/asm/unistd.h"
"include/aarch64-linux-musleabi/bfd_stdint.h"
"include/aarch64-linux-musleabi/bits/alltypes.h"
"include/aarch64-linux-musleabi/bits/endian.h"
"include/aarch64-linux-musleabi/bits/fenv.h"
"include/aarch64-linux-musleabi/bits/float.h"
"include/aarch64-linux-musleabi/bits/hwcap.h"
"include/aarch64-linux-musleabi/bits/ipc.h"
"include/aarch64-linux-musleabi/bits/limits.h"
"include/aarch64-linux-musleabi/bits/posix.h"
"include/aarch64-linux-musleabi/bits/reg.h"
"include/aarch64-linux-musleabi/bits/sem.h"
"include/aarch64-linux-musleabi/bits/setjmp.h"
"include/aarch64-linux-musleabi/bits/signal.h"
"include/aarch64-linux-musleabi/bits/socket.h"
"include/aarch64-linux-musleabi/bits/stat.h"
"include/aarch64-linux-musleabi/bits/syscall.h"
"include/aarch64-linux-musleabi/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/aarch64_be-linux-gnu/asm/bitsperlong.h"
"include/aarch64_be-linux-gnu/asm/unistd.h"
"include/aarch64_be-linux-gnu/bits/endian.h"
"include/aarch64_be-linux-gnu/bits/fcntl.h"
"include/aarch64_be-linux-gnu/bits/fenv.h"
"include/aarch64_be-linux-gnu/bits/floatn.h"
"include/aarch64_be-linux-gnu/bits/fp-fast.h"
"include/aarch64_be-linux-gnu/bits/hwcap.h"
"include/aarch64_be-linux-gnu/bits/ipc.h"
"include/aarch64_be-linux-gnu/bits/link.h"
"include/aarch64_be-linux-gnu/bits/local_lim.h"
"include/aarch64_be-linux-gnu/bits/long-double.h"
"include/aarch64_be-linux-gnu/bits/procfs.h"
"include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h"
"include/aarch64_be-linux-gnu/bits/semaphore.h"
"include/aarch64_be-linux-gnu/bits/setjmp.h"
"include/aarch64_be-linux-gnu/bits/sigstack.h"
"include/aarch64_be-linux-gnu/bits/stat.h"
"include/aarch64_be-linux-gnu/bits/statfs.h"
"include/aarch64_be-linux-gnu/bits/typesizes.h"
"include/aarch64_be-linux-gnu/bits/wordsize.h"
"include/aarch64_be-linux-gnu/fpu_control.h"
"include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h"
"include/aarch64_be-linux-gnu/gnu/lib-names.h"
"include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h"
"include/aarch64_be-linux-gnu/gnu/stubs.h"
"include/aarch64_be-linux-gnu/ieee754.h"
"include/aarch64_be-linux-gnu/sys/elf.h"
"include/aarch64_be-linux-gnu/sys/ptrace.h"
"include/aarch64_be-linux-gnu/sys/ucontext.h"
"include/aarch64_be-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/aarch64_be-linux-musl/asm/auxvec.h"
"include/aarch64_be-linux-musl/asm/bitsperlong.h"
"include/aarch64_be-linux-musl/asm/bpf_perf_event.h"
"include/aarch64_be-linux-musl/asm/byteorder.h"
"include/aarch64_be-linux-musl/asm/fcntl.h"
"include/aarch64_be-linux-musl/asm/hwcap.h"
"include/aarch64_be-linux-musl/asm/kvm.h"
"include/aarch64_be-linux-musl/asm/kvm_para.h"
"include/aarch64_be-linux-musl/asm/param.h"
"include/aarch64_be-linux-musl/asm/perf_regs.h"
"include/aarch64_be-linux-musl/asm/posix_types.h"
"include/aarch64_be-linux-musl/asm/ptrace.h"
"include/aarch64_be-linux-musl/asm/setup.h"
"include/aarch64_be-linux-musl/asm/sigcontext.h"
"include/aarch64_be-linux-musl/asm/siginfo.h"
"include/aarch64_be-linux-musl/asm/signal.h"
"include/aarch64_be-linux-musl/asm/stat.h"
"include/aarch64_be-linux-musl/asm/statfs.h"
"include/aarch64_be-linux-musl/asm/ucontext.h"
"include/aarch64_be-linux-musl/asm/unistd.h"
"include/aarch64_be-linux-musl/bfd_stdint.h"
"include/aarch64_be-linux-musl/bits/alltypes.h"
"include/aarch64_be-linux-musl/bits/endian.h"
"include/aarch64_be-linux-musl/bits/fenv.h"
"include/aarch64_be-linux-musl/bits/float.h"
"include/aarch64_be-linux-musl/bits/hwcap.h"
"include/aarch64_be-linux-musl/bits/ipc.h"
"include/aarch64_be-linux-musl/bits/limits.h"
"include/aarch64_be-linux-musl/bits/posix.h"
"include/aarch64_be-linux-musl/bits/reg.h"
"include/aarch64_be-linux-musl/bits/sem.h"
"include/aarch64_be-linux-musl/bits/setjmp.h"
"include/aarch64_be-linux-musl/bits/signal.h"
"include/aarch64_be-linux-musl/bits/socket.h"
"include/aarch64_be-linux-musl/bits/stat.h"
"include/aarch64_be-linux-musl/bits/syscall.h"
"include/aarch64_be-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/arm-linux-gnueabi/asm/unistd.h"
"include/arm-linux-gnueabi/bits/endian.h"
"include/arm-linux-gnueabi/bits/fcntl.h"
"include/arm-linux-gnueabi/bits/fenv.h"
"include/arm-linux-gnueabi/bits/floatn.h"
"include/arm-linux-gnueabi/bits/hwcap.h"
"include/arm-linux-gnueabi/bits/link.h"
"include/arm-linux-gnueabi/bits/long-double.h"
"include/arm-linux-gnueabi/bits/procfs-id.h"
"include/arm-linux-gnueabi/bits/procfs.h"
"include/arm-linux-gnueabi/bits/pthreadtypes-arch.h"
"include/arm-linux-gnueabi/bits/semaphore.h"
"include/arm-linux-gnueabi/bits/setjmp.h"
"include/arm-linux-gnueabi/bits/shmlba.h"
"include/arm-linux-gnueabi/bits/stat.h"
"include/arm-linux-gnueabi/bits/wordsize.h"
"include/arm-linux-gnueabi/fpu_control.h"
"include/arm-linux-gnueabi/gnu/lib-names.h"
"include/arm-linux-gnueabi/gnu/stubs.h"
"include/arm-linux-gnueabi/sys/ptrace.h"
"include/arm-linux-gnueabi/sys/ucontext.h"
"include/arm-linux-gnueabi/sys/user.h"
"include/arm-linux-gnueabihf/asm/unistd.h"
"include/arm-linux-gnueabihf/bits/endian.h"
"include/arm-linux-gnueabihf/bits/fcntl.h"
"include/arm-linux-gnueabihf/bits/fenv.h"
"include/arm-linux-gnueabihf/bits/floatn.h"
"include/arm-linux-gnueabihf/bits/hwcap.h"
"include/arm-linux-gnueabihf/bits/link.h"
"include/arm-linux-gnueabihf/bits/long-double.h"
"include/arm-linux-gnueabihf/bits/procfs-id.h"
"include/arm-linux-gnueabihf/bits/procfs.h"
"include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h"
"include/arm-linux-gnueabihf/bits/semaphore.h"
"include/arm-linux-gnueabihf/bits/setjmp.h"
"include/arm-linux-gnueabihf/bits/shmlba.h"
"include/arm-linux-gnueabihf/bits/stat.h"
"include/arm-linux-gnueabihf/bits/wordsize.h"
"include/arm-linux-gnueabihf/fpu_control.h"
"include/arm-linux-gnueabihf/gnu/lib-names.h"
"include/arm-linux-gnueabihf/gnu/stubs.h"
"include/arm-linux-gnueabihf/sys/ptrace.h"
"include/arm-linux-gnueabihf/sys/ucontext.h"
"include/arm-linux-gnueabihf/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/arm-linux-musleabi/asm/fcntl.h"
"include/arm-linux-musleabi/asm/ioctls.h"
"include/arm-linux-musleabi/asm/mman.h"
"include/arm-linux-musleabi/asm/statfs.h"
"include/arm-linux-musleabi/asm/swab.h"
"include/arm-linux-musleabi/asm/types.h"
"include/arm-linux-musleabi/bfd.h"
"include/arm-linux-musleabi/bfd_stdint.h"
"include/arm-linux-musleabi/bits/fcntl.h"
"include/arm-linux-musleabi/bits/hwcap.h"
"include/arm-linux-musleabi/bits/ioctl_fix.h"
"include/arm-linux-musleabi/bits/msg.h"
"include/arm-linux-musleabi/bits/ptrace.h"
"include/arm-linux-musleabi/bits/shm.h"
"include/arm-linux-musleabi/bits/stdint.h"
"include/arm-linux-musleabihf/asm/fcntl.h"
"include/arm-linux-musleabihf/asm/ioctls.h"
"include/arm-linux-musleabihf/asm/mman.h"
"include/arm-linux-musleabihf/asm/statfs.h"
"include/arm-linux-musleabihf/asm/swab.h"
"include/arm-linux-musleabihf/asm/types.h"
"include/arm-linux-musleabihf/bfd.h"
"include/arm-linux-musleabihf/bfd_stdint.h"
"include/arm-linux-musleabihf/bits/fcntl.h"
"include/arm-linux-musleabihf/bits/hwcap.h"
"include/arm-linux-musleabihf/bits/ioctl_fix.h"
"include/arm-linux-musleabihf/bits/msg.h"
"include/arm-linux-musleabihf/bits/ptrace.h"
"include/arm-linux-musleabihf/bits/shm.h"
"include/arm-linux-musleabihf/bits/stdint.h"
2019-03-07 09:16:10 -08:00
"include/armeb-linux-gnueabi/asm/unistd.h"
"include/armeb-linux-gnueabi/bits/endian.h"
"include/armeb-linux-gnueabi/bits/fcntl.h"
"include/armeb-linux-gnueabi/bits/fenv.h"
"include/armeb-linux-gnueabi/bits/floatn.h"
"include/armeb-linux-gnueabi/bits/hwcap.h"
"include/armeb-linux-gnueabi/bits/link.h"
"include/armeb-linux-gnueabi/bits/long-double.h"
"include/armeb-linux-gnueabi/bits/procfs-id.h"
"include/armeb-linux-gnueabi/bits/procfs.h"
"include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h"
"include/armeb-linux-gnueabi/bits/semaphore.h"
"include/armeb-linux-gnueabi/bits/setjmp.h"
"include/armeb-linux-gnueabi/bits/shmlba.h"
"include/armeb-linux-gnueabi/bits/stat.h"
"include/armeb-linux-gnueabi/bits/wordsize.h"
"include/armeb-linux-gnueabi/fpu_control.h"
"include/armeb-linux-gnueabi/gnu/lib-names.h"
"include/armeb-linux-gnueabi/gnu/stubs.h"
"include/armeb-linux-gnueabi/sys/ptrace.h"
"include/armeb-linux-gnueabi/sys/ucontext.h"
"include/armeb-linux-gnueabi/sys/user.h"
"include/armeb-linux-gnueabihf/asm/unistd.h"
"include/armeb-linux-gnueabihf/bits/endian.h"
"include/armeb-linux-gnueabihf/bits/fcntl.h"
"include/armeb-linux-gnueabihf/bits/fenv.h"
"include/armeb-linux-gnueabihf/bits/floatn.h"
"include/armeb-linux-gnueabihf/bits/hwcap.h"
"include/armeb-linux-gnueabihf/bits/link.h"
"include/armeb-linux-gnueabihf/bits/long-double.h"
"include/armeb-linux-gnueabihf/bits/procfs-id.h"
"include/armeb-linux-gnueabihf/bits/procfs.h"
"include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h"
"include/armeb-linux-gnueabihf/bits/semaphore.h"
"include/armeb-linux-gnueabihf/bits/setjmp.h"
"include/armeb-linux-gnueabihf/bits/shmlba.h"
"include/armeb-linux-gnueabihf/bits/stat.h"
"include/armeb-linux-gnueabihf/bits/wordsize.h"
"include/armeb-linux-gnueabihf/fpu_control.h"
"include/armeb-linux-gnueabihf/gnu/lib-names.h"
"include/armeb-linux-gnueabihf/gnu/stubs.h"
"include/armeb-linux-gnueabihf/sys/ptrace.h"
"include/armeb-linux-gnueabihf/sys/ucontext.h"
"include/armeb-linux-gnueabihf/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/armeb-linux-musleabi/asm/fcntl.h"
"include/armeb-linux-musleabi/asm/ioctls.h"
"include/armeb-linux-musleabi/asm/mman.h"
"include/armeb-linux-musleabi/asm/statfs.h"
"include/armeb-linux-musleabi/asm/swab.h"
"include/armeb-linux-musleabi/asm/types.h"
"include/armeb-linux-musleabi/bfd.h"
"include/armeb-linux-musleabi/bfd_stdint.h"
"include/armeb-linux-musleabi/bits/fcntl.h"
"include/armeb-linux-musleabi/bits/hwcap.h"
"include/armeb-linux-musleabi/bits/ioctl_fix.h"
"include/armeb-linux-musleabi/bits/msg.h"
"include/armeb-linux-musleabi/bits/ptrace.h"
"include/armeb-linux-musleabi/bits/shm.h"
"include/armeb-linux-musleabi/bits/stdint.h"
"include/armeb-linux-musleabihf/asm/fcntl.h"
"include/armeb-linux-musleabihf/asm/ioctls.h"
"include/armeb-linux-musleabihf/asm/mman.h"
"include/armeb-linux-musleabihf/asm/statfs.h"
"include/armeb-linux-musleabihf/asm/swab.h"
"include/armeb-linux-musleabihf/asm/types.h"
"include/armeb-linux-musleabihf/bfd.h"
"include/armeb-linux-musleabihf/bfd_stdint.h"
"include/armeb-linux-musleabihf/bits/fcntl.h"
"include/armeb-linux-musleabihf/bits/hwcap.h"
"include/armeb-linux-musleabihf/bits/ioctl_fix.h"
"include/armeb-linux-musleabihf/bits/msg.h"
"include/armeb-linux-musleabihf/bits/ptrace.h"
"include/armeb-linux-musleabihf/bits/shm.h"
"include/armeb-linux-musleabihf/bits/stdint.h"
2019-03-07 09:16:10 -08:00
"include/generic-glibc/a.out.h"
"include/generic-glibc/aio.h"
"include/generic-glibc/aliases.h"
"include/generic-glibc/alloca.h"
"include/generic-glibc/ar.h"
"include/generic-glibc/argp.h"
"include/generic-glibc/argz.h"
"include/generic-glibc/arpa/ftp.h"
"include/generic-glibc/arpa/inet.h"
"include/generic-glibc/arpa/nameser.h"
"include/generic-glibc/arpa/nameser_compat.h"
"include/generic-glibc/arpa/telnet.h"
"include/generic-glibc/arpa/tftp.h"
"include/generic-glibc/asm-generic/bitsperlong.h"
"include/generic-glibc/asm-generic/unistd.h"
"include/generic-glibc/asm/unistd_32.h"
"include/generic-glibc/asm/unistd_64.h"
"include/generic-glibc/assert.h"
"include/generic-glibc/bits/a.out.h"
"include/generic-glibc/bits/argp-ldbl.h"
"include/generic-glibc/bits/byteswap.h"
"include/generic-glibc/bits/cmathcalls.h"
"include/generic-glibc/bits/confname.h"
"include/generic-glibc/bits/cpu-set.h"
"include/generic-glibc/bits/dirent.h"
"include/generic-glibc/bits/dlfcn.h"
"include/generic-glibc/bits/elfclass.h"
"include/generic-glibc/bits/endian.h"
"include/generic-glibc/bits/environments.h"
"include/generic-glibc/bits/epoll.h"
"include/generic-glibc/bits/err-ldbl.h"
"include/generic-glibc/bits/errno.h"
"include/generic-glibc/bits/error-ldbl.h"
"include/generic-glibc/bits/error.h"
"include/generic-glibc/bits/eventfd.h"
"include/generic-glibc/bits/fcntl-linux.h"
"include/generic-glibc/bits/fcntl.h"
"include/generic-glibc/bits/fcntl2.h"
"include/generic-glibc/bits/fenv.h"
"include/generic-glibc/bits/fenvinline.h"
"include/generic-glibc/bits/floatn-common.h"
"include/generic-glibc/bits/floatn.h"
"include/generic-glibc/bits/flt-eval-method.h"
"include/generic-glibc/bits/fp-fast.h"
"include/generic-glibc/bits/fp-logb.h"
"include/generic-glibc/bits/getopt_core.h"
"include/generic-glibc/bits/getopt_ext.h"
"include/generic-glibc/bits/getopt_posix.h"
"include/generic-glibc/bits/hwcap.h"
"include/generic-glibc/bits/in.h"
"include/generic-glibc/bits/indirect-return.h"
"include/generic-glibc/bits/initspin.h"
"include/generic-glibc/bits/inotify.h"
"include/generic-glibc/bits/ioctl-types.h"
"include/generic-glibc/bits/ioctls.h"
"include/generic-glibc/bits/ipc.h"
"include/generic-glibc/bits/ipctypes.h"
"include/generic-glibc/bits/iscanonical.h"
"include/generic-glibc/bits/libc-header-start.h"
"include/generic-glibc/bits/libm-simd-decl-stubs.h"
"include/generic-glibc/bits/link.h"
"include/generic-glibc/bits/local_lim.h"
"include/generic-glibc/bits/locale.h"
"include/generic-glibc/bits/long-double.h"
"include/generic-glibc/bits/math-finite.h"
"include/generic-glibc/bits/math-vector-fortran.h"
"include/generic-glibc/bits/math-vector.h"
"include/generic-glibc/bits/mathcalls-helper-functions.h"
"include/generic-glibc/bits/mathcalls-narrow.h"
"include/generic-glibc/bits/mathcalls.h"
"include/generic-glibc/bits/mathdef.h"
"include/generic-glibc/bits/mathinline.h"
"include/generic-glibc/bits/mman-linux.h"
"include/generic-glibc/bits/mman-map-flags-generic.h"
"include/generic-glibc/bits/mman-shared.h"
"include/generic-glibc/bits/mman.h"
"include/generic-glibc/bits/monetary-ldbl.h"
"include/generic-glibc/bits/mqueue.h"
"include/generic-glibc/bits/mqueue2.h"
"include/generic-glibc/bits/msq-pad.h"
"include/generic-glibc/bits/msq.h"
"include/generic-glibc/bits/netdb.h"
"include/generic-glibc/bits/param.h"
"include/generic-glibc/bits/poll.h"
"include/generic-glibc/bits/poll2.h"
"include/generic-glibc/bits/posix1_lim.h"
"include/generic-glibc/bits/posix2_lim.h"
"include/generic-glibc/bits/posix_opt.h"
"include/generic-glibc/bits/ppc.h"
"include/generic-glibc/bits/printf-ldbl.h"
"include/generic-glibc/bits/procfs-extra.h"
"include/generic-glibc/bits/procfs-id.h"
"include/generic-glibc/bits/procfs-prregset.h"
"include/generic-glibc/bits/procfs.h"
"include/generic-glibc/bits/pthreadtypes-arch.h"
"include/generic-glibc/bits/pthreadtypes.h"
"include/generic-glibc/bits/ptrace-shared.h"
"include/generic-glibc/bits/resource.h"
"include/generic-glibc/bits/sched.h"
"include/generic-glibc/bits/select.h"
"include/generic-glibc/bits/select2.h"
"include/generic-glibc/bits/sem-pad.h"
"include/generic-glibc/bits/sem.h"
"include/generic-glibc/bits/semaphore.h"
"include/generic-glibc/bits/setjmp.h"
"include/generic-glibc/bits/setjmp2.h"
"include/generic-glibc/bits/shm-pad.h"
"include/generic-glibc/bits/shm.h"
"include/generic-glibc/bits/shmlba.h"
"include/generic-glibc/bits/sigaction.h"
"include/generic-glibc/bits/sigcontext.h"
"include/generic-glibc/bits/sigevent-consts.h"
"include/generic-glibc/bits/siginfo-arch.h"
"include/generic-glibc/bits/siginfo-consts-arch.h"
"include/generic-glibc/bits/siginfo-consts.h"
"include/generic-glibc/bits/signalfd.h"
"include/generic-glibc/bits/signum-generic.h"
"include/generic-glibc/bits/signum.h"
"include/generic-glibc/bits/sigstack.h"
"include/generic-glibc/bits/sigthread.h"
"include/generic-glibc/bits/sockaddr.h"
"include/generic-glibc/bits/socket.h"
"include/generic-glibc/bits/socket2.h"
"include/generic-glibc/bits/socket_type.h"
"include/generic-glibc/bits/ss_flags.h"
"include/generic-glibc/bits/stab.def"
"include/generic-glibc/bits/stat.h"
"include/generic-glibc/bits/statfs.h"
"include/generic-glibc/bits/statvfs.h"
"include/generic-glibc/bits/statx.h"
"include/generic-glibc/bits/stdint-intn.h"
"include/generic-glibc/bits/stdint-uintn.h"
"include/generic-glibc/bits/stdio-ldbl.h"
"include/generic-glibc/bits/stdio.h"
"include/generic-glibc/bits/stdio2.h"
"include/generic-glibc/bits/stdio_lim.h"
"include/generic-glibc/bits/stdlib-bsearch.h"
"include/generic-glibc/bits/stdlib-float.h"
"include/generic-glibc/bits/stdlib-ldbl.h"
"include/generic-glibc/bits/stdlib.h"
"include/generic-glibc/bits/string_fortified.h"
"include/generic-glibc/bits/strings_fortified.h"
"include/generic-glibc/bits/stropts.h"
"include/generic-glibc/bits/sys_errlist.h"
"include/generic-glibc/bits/syscall.h"
"include/generic-glibc/bits/sysctl.h"
"include/generic-glibc/bits/syslog-ldbl.h"
"include/generic-glibc/bits/syslog-path.h"
"include/generic-glibc/bits/syslog.h"
"include/generic-glibc/bits/sysmacros.h"
"include/generic-glibc/bits/termios-baud.h"
"include/generic-glibc/bits/termios-c_cc.h"
"include/generic-glibc/bits/termios-c_cflag.h"
"include/generic-glibc/bits/termios-c_iflag.h"
"include/generic-glibc/bits/termios-c_lflag.h"
"include/generic-glibc/bits/termios-c_oflag.h"
"include/generic-glibc/bits/termios-misc.h"
"include/generic-glibc/bits/termios-struct.h"
"include/generic-glibc/bits/termios-tcflow.h"
"include/generic-glibc/bits/termios.h"
"include/generic-glibc/bits/thread-shared-types.h"
"include/generic-glibc/bits/time.h"
"include/generic-glibc/bits/time64.h"
"include/generic-glibc/bits/timerfd.h"
"include/generic-glibc/bits/timesize.h"
"include/generic-glibc/bits/timex.h"
"include/generic-glibc/bits/types.h"
"include/generic-glibc/bits/types/FILE.h"
"include/generic-glibc/bits/types/__FILE.h"
"include/generic-glibc/bits/types/__fpos64_t.h"
"include/generic-glibc/bits/types/__fpos_t.h"
"include/generic-glibc/bits/types/__locale_t.h"
"include/generic-glibc/bits/types/__mbstate_t.h"
"include/generic-glibc/bits/types/__sigset_t.h"
"include/generic-glibc/bits/types/__sigval_t.h"
"include/generic-glibc/bits/types/clock_t.h"
"include/generic-glibc/bits/types/clockid_t.h"
"include/generic-glibc/bits/types/cookie_io_functions_t.h"
"include/generic-glibc/bits/types/error_t.h"
"include/generic-glibc/bits/types/locale_t.h"
"include/generic-glibc/bits/types/mbstate_t.h"
"include/generic-glibc/bits/types/res_state.h"
"include/generic-glibc/bits/types/sig_atomic_t.h"
"include/generic-glibc/bits/types/sigevent_t.h"
"include/generic-glibc/bits/types/siginfo_t.h"
"include/generic-glibc/bits/types/sigset_t.h"
"include/generic-glibc/bits/types/sigval_t.h"
"include/generic-glibc/bits/types/stack_t.h"
"include/generic-glibc/bits/types/struct_FILE.h"
"include/generic-glibc/bits/types/struct_iovec.h"
"include/generic-glibc/bits/types/struct_itimerspec.h"
"include/generic-glibc/bits/types/struct_osockaddr.h"
"include/generic-glibc/bits/types/struct_rusage.h"
"include/generic-glibc/bits/types/struct_sched_param.h"
"include/generic-glibc/bits/types/struct_sigstack.h"
"include/generic-glibc/bits/types/struct_timespec.h"
"include/generic-glibc/bits/types/struct_timeval.h"
"include/generic-glibc/bits/types/struct_tm.h"
"include/generic-glibc/bits/types/time_t.h"
"include/generic-glibc/bits/types/timer_t.h"
"include/generic-glibc/bits/types/wint_t.h"
"include/generic-glibc/bits/typesizes.h"
"include/generic-glibc/bits/uintn-identity.h"
"include/generic-glibc/bits/uio-ext.h"
"include/generic-glibc/bits/uio_lim.h"
"include/generic-glibc/bits/unistd.h"
"include/generic-glibc/bits/unistd_ext.h"
"include/generic-glibc/bits/utmp.h"
"include/generic-glibc/bits/utmpx.h"
"include/generic-glibc/bits/utsname.h"
"include/generic-glibc/bits/waitflags.h"
"include/generic-glibc/bits/waitstatus.h"
"include/generic-glibc/bits/wchar-ldbl.h"
"include/generic-glibc/bits/wchar.h"
"include/generic-glibc/bits/wchar2.h"
"include/generic-glibc/bits/wctype-wchar.h"
"include/generic-glibc/bits/wordsize.h"
"include/generic-glibc/bits/xopen_lim.h"
"include/generic-glibc/bits/xtitypes.h"
"include/generic-glibc/byteswap.h"
"include/generic-glibc/complex.h"
"include/generic-glibc/cpio.h"
"include/generic-glibc/crypt.h"
"include/generic-glibc/ctype.h"
"include/generic-glibc/dirent.h"
"include/generic-glibc/dlfcn.h"
"include/generic-glibc/elf.h"
"include/generic-glibc/endian.h"
"include/generic-glibc/envz.h"
"include/generic-glibc/err.h"
"include/generic-glibc/errno.h"
"include/generic-glibc/error.h"
"include/generic-glibc/execinfo.h"
"include/generic-glibc/fcntl.h"
"include/generic-glibc/features.h"
"include/generic-glibc/fenv.h"
"include/generic-glibc/fmtmsg.h"
"include/generic-glibc/fnmatch.h"
"include/generic-glibc/fpregdef.h"
"include/generic-glibc/fpu_control.h"
"include/generic-glibc/fstab.h"
"include/generic-glibc/fts.h"
"include/generic-glibc/ftw.h"
"include/generic-glibc/gconv.h"
"include/generic-glibc/getopt.h"
"include/generic-glibc/glob.h"
"include/generic-glibc/gnu-versions.h"
"include/generic-glibc/gnu/lib-names-32.h"
"include/generic-glibc/gnu/lib-names-hard.h"
"include/generic-glibc/gnu/lib-names-n32_hard.h"
"include/generic-glibc/gnu/lib-names-n64_hard.h"
"include/generic-glibc/gnu/lib-names-o32_hard.h"
"include/generic-glibc/gnu/lib-names-soft.h"
"include/generic-glibc/gnu/lib-names.h"
"include/generic-glibc/gnu/libc-version.h"
"include/generic-glibc/gnu/stubs-32.h"
"include/generic-glibc/gnu/stubs-hard.h"
"include/generic-glibc/gnu/stubs-n32_hard.h"
"include/generic-glibc/gnu/stubs-n64_hard.h"
"include/generic-glibc/gnu/stubs-o32_hard.h"
"include/generic-glibc/gnu/stubs-soft.h"
"include/generic-glibc/gnu/stubs.h"
"include/generic-glibc/grp.h"
"include/generic-glibc/gshadow.h"
"include/generic-glibc/iconv.h"
"include/generic-glibc/ieee754.h"
"include/generic-glibc/ifaddrs.h"
"include/generic-glibc/inttypes.h"
"include/generic-glibc/langinfo.h"
"include/generic-glibc/lastlog.h"
"include/generic-glibc/libgen.h"
"include/generic-glibc/libintl.h"
"include/generic-glibc/limits.h"
"include/generic-glibc/link.h"
2019-03-08 22:24:30 -08:00
"include/generic-glibc/linux/limits.h"
2019-03-07 09:16:10 -08:00
"include/generic-glibc/locale.h"
"include/generic-glibc/malloc.h"
"include/generic-glibc/math.h"
"include/generic-glibc/mcheck.h"
"include/generic-glibc/memory.h"
"include/generic-glibc/mntent.h"
"include/generic-glibc/monetary.h"
"include/generic-glibc/mqueue.h"
"include/generic-glibc/net/ethernet.h"
"include/generic-glibc/net/if.h"
"include/generic-glibc/net/if_arp.h"
"include/generic-glibc/net/if_packet.h"
"include/generic-glibc/net/if_ppp.h"
"include/generic-glibc/net/if_shaper.h"
"include/generic-glibc/net/if_slip.h"
"include/generic-glibc/net/ppp-comp.h"
"include/generic-glibc/net/ppp_defs.h"
"include/generic-glibc/net/route.h"
"include/generic-glibc/netash/ash.h"
"include/generic-glibc/netatalk/at.h"
"include/generic-glibc/netax25/ax25.h"
"include/generic-glibc/netdb.h"
"include/generic-glibc/neteconet/ec.h"
"include/generic-glibc/netinet/ether.h"
"include/generic-glibc/netinet/icmp6.h"
"include/generic-glibc/netinet/if_ether.h"
"include/generic-glibc/netinet/if_fddi.h"
"include/generic-glibc/netinet/if_tr.h"
"include/generic-glibc/netinet/igmp.h"
"include/generic-glibc/netinet/in.h"
"include/generic-glibc/netinet/in_systm.h"
"include/generic-glibc/netinet/ip.h"
"include/generic-glibc/netinet/ip6.h"
"include/generic-glibc/netinet/ip_icmp.h"
"include/generic-glibc/netinet/tcp.h"
"include/generic-glibc/netinet/udp.h"
"include/generic-glibc/netipx/ipx.h"
"include/generic-glibc/netiucv/iucv.h"
"include/generic-glibc/netpacket/packet.h"
"include/generic-glibc/netrom/netrom.h"
"include/generic-glibc/netrose/rose.h"
"include/generic-glibc/nfs/nfs.h"
"include/generic-glibc/nl_types.h"
"include/generic-glibc/nss.h"
"include/generic-glibc/obstack.h"
"include/generic-glibc/paths.h"
"include/generic-glibc/poll.h"
"include/generic-glibc/printf.h"
"include/generic-glibc/proc_service.h"
"include/generic-glibc/protocols/routed.h"
"include/generic-glibc/protocols/rwhod.h"
"include/generic-glibc/protocols/talkd.h"
"include/generic-glibc/protocols/timed.h"
"include/generic-glibc/pthread.h"
"include/generic-glibc/pty.h"
"include/generic-glibc/pwd.h"
"include/generic-glibc/re_comp.h"
"include/generic-glibc/regdef.h"
"include/generic-glibc/regex.h"
"include/generic-glibc/regexp.h"
"include/generic-glibc/resolv.h"
"include/generic-glibc/rpc/netdb.h"
"include/generic-glibc/sched.h"
"include/generic-glibc/scsi/scsi.h"
"include/generic-glibc/scsi/scsi_ioctl.h"
"include/generic-glibc/scsi/sg.h"
"include/generic-glibc/search.h"
"include/generic-glibc/semaphore.h"
"include/generic-glibc/setjmp.h"
"include/generic-glibc/sgidefs.h"
"include/generic-glibc/sgtty.h"
"include/generic-glibc/shadow.h"
"include/generic-glibc/signal.h"
"include/generic-glibc/spawn.h"
"include/generic-glibc/stab.h"
"include/generic-glibc/stdc-predef.h"
"include/generic-glibc/stdint.h"
"include/generic-glibc/stdio.h"
"include/generic-glibc/stdio_ext.h"
"include/generic-glibc/stdlib.h"
"include/generic-glibc/string.h"
"include/generic-glibc/strings.h"
"include/generic-glibc/stropts.h"
"include/generic-glibc/sys/acct.h"
"include/generic-glibc/sys/asm.h"
"include/generic-glibc/sys/auxv.h"
"include/generic-glibc/sys/bitypes.h"
"include/generic-glibc/sys/cachectl.h"
"include/generic-glibc/sys/cdefs.h"
"include/generic-glibc/sys/debugreg.h"
"include/generic-glibc/sys/dir.h"
"include/generic-glibc/sys/elf.h"
"include/generic-glibc/sys/epoll.h"
"include/generic-glibc/sys/errno.h"
"include/generic-glibc/sys/eventfd.h"
"include/generic-glibc/sys/fanotify.h"
"include/generic-glibc/sys/fcntl.h"
"include/generic-glibc/sys/file.h"
"include/generic-glibc/sys/fpregdef.h"
"include/generic-glibc/sys/fsuid.h"
"include/generic-glibc/sys/gmon.h"
"include/generic-glibc/sys/gmon_out.h"
"include/generic-glibc/sys/inotify.h"
"include/generic-glibc/sys/io.h"
"include/generic-glibc/sys/ioctl.h"
"include/generic-glibc/sys/ipc.h"
"include/generic-glibc/sys/kd.h"
"include/generic-glibc/sys/klog.h"
"include/generic-glibc/sys/mman.h"
"include/generic-glibc/sys/mount.h"
"include/generic-glibc/sys/msg.h"
"include/generic-glibc/sys/mtio.h"
"include/generic-glibc/sys/param.h"
"include/generic-glibc/sys/pci.h"
"include/generic-glibc/sys/perm.h"
"include/generic-glibc/sys/personality.h"
"include/generic-glibc/sys/platform/ppc.h"
"include/generic-glibc/sys/poll.h"
"include/generic-glibc/sys/prctl.h"
"include/generic-glibc/sys/procfs.h"
"include/generic-glibc/sys/profil.h"
"include/generic-glibc/sys/ptrace.h"
"include/generic-glibc/sys/queue.h"
"include/generic-glibc/sys/quota.h"
"include/generic-glibc/sys/random.h"
"include/generic-glibc/sys/raw.h"
"include/generic-glibc/sys/reboot.h"
"include/generic-glibc/sys/reg.h"
"include/generic-glibc/sys/regdef.h"
"include/generic-glibc/sys/resource.h"
"include/generic-glibc/sys/select.h"
"include/generic-glibc/sys/sem.h"
"include/generic-glibc/sys/sendfile.h"
"include/generic-glibc/sys/shm.h"
"include/generic-glibc/sys/signal.h"
"include/generic-glibc/sys/signalfd.h"
"include/generic-glibc/sys/socket.h"
"include/generic-glibc/sys/socketvar.h"
"include/generic-glibc/sys/soundcard.h"
"include/generic-glibc/sys/stat.h"
"include/generic-glibc/sys/statfs.h"
"include/generic-glibc/sys/statvfs.h"
"include/generic-glibc/sys/stropts.h"
"include/generic-glibc/sys/swap.h"
"include/generic-glibc/sys/syscall.h"
"include/generic-glibc/sys/sysctl.h"
"include/generic-glibc/sys/sysinfo.h"
"include/generic-glibc/sys/syslog.h"
"include/generic-glibc/sys/sysmacros.h"
"include/generic-glibc/sys/sysmips.h"
"include/generic-glibc/sys/tas.h"
"include/generic-glibc/sys/termios.h"
"include/generic-glibc/sys/time.h"
"include/generic-glibc/sys/timeb.h"
"include/generic-glibc/sys/timerfd.h"
"include/generic-glibc/sys/times.h"
"include/generic-glibc/sys/timex.h"
"include/generic-glibc/sys/ttychars.h"
"include/generic-glibc/sys/ttydefaults.h"
"include/generic-glibc/sys/types.h"
"include/generic-glibc/sys/ucontext.h"
"include/generic-glibc/sys/uio.h"
"include/generic-glibc/sys/un.h"
"include/generic-glibc/sys/unistd.h"
"include/generic-glibc/sys/user.h"
"include/generic-glibc/sys/utsname.h"
"include/generic-glibc/sys/vfs.h"
"include/generic-glibc/sys/vlimit.h"
"include/generic-glibc/sys/vm86.h"
"include/generic-glibc/sys/vt.h"
"include/generic-glibc/sys/vtimes.h"
"include/generic-glibc/sys/wait.h"
"include/generic-glibc/sys/xattr.h"
"include/generic-glibc/syscall.h"
"include/generic-glibc/sysexits.h"
"include/generic-glibc/syslog.h"
"include/generic-glibc/tar.h"
"include/generic-glibc/termio.h"
"include/generic-glibc/termios.h"
"include/generic-glibc/tgmath.h"
"include/generic-glibc/thread_db.h"
"include/generic-glibc/threads.h"
"include/generic-glibc/time.h"
"include/generic-glibc/ttyent.h"
"include/generic-glibc/uchar.h"
"include/generic-glibc/ucontext.h"
"include/generic-glibc/ulimit.h"
"include/generic-glibc/unistd.h"
"include/generic-glibc/utime.h"
"include/generic-glibc/utmp.h"
"include/generic-glibc/utmpx.h"
"include/generic-glibc/values.h"
"include/generic-glibc/wait.h"
"include/generic-glibc/wchar.h"
"include/generic-glibc/wctype.h"
"include/generic-glibc/wordexp.h"
2019-03-12 07:28:05 -07:00
"include/generic-musl/aio.h"
"include/generic-musl/alloca.h"
"include/generic-musl/ansidecl.h"
"include/generic-musl/ar.h"
"include/generic-musl/arpa/ftp.h"
"include/generic-musl/arpa/inet.h"
"include/generic-musl/arpa/nameser.h"
"include/generic-musl/arpa/nameser_compat.h"
"include/generic-musl/arpa/telnet.h"
"include/generic-musl/arpa/tftp.h"
"include/generic-musl/asm-generic/auxvec.h"
"include/generic-musl/asm-generic/bitsperlong.h"
"include/generic-musl/asm-generic/bpf_perf_event.h"
"include/generic-musl/asm-generic/errno-base.h"
"include/generic-musl/asm-generic/errno.h"
"include/generic-musl/asm-generic/fcntl.h"
"include/generic-musl/asm-generic/hugetlb_encode.h"
"include/generic-musl/asm-generic/int-l64.h"
"include/generic-musl/asm-generic/int-ll64.h"
"include/generic-musl/asm-generic/ioctl.h"
"include/generic-musl/asm-generic/ioctls.h"
"include/generic-musl/asm-generic/ipcbuf.h"
"include/generic-musl/asm-generic/kvm_para.h"
"include/generic-musl/asm-generic/mman-common.h"
"include/generic-musl/asm-generic/mman.h"
"include/generic-musl/asm-generic/msgbuf.h"
"include/generic-musl/asm-generic/param.h"
"include/generic-musl/asm-generic/poll.h"
"include/generic-musl/asm-generic/posix_types.h"
"include/generic-musl/asm-generic/resource.h"
"include/generic-musl/asm-generic/sembuf.h"
"include/generic-musl/asm-generic/setup.h"
"include/generic-musl/asm-generic/shmbuf.h"
"include/generic-musl/asm-generic/shmparam.h"
"include/generic-musl/asm-generic/siginfo.h"
"include/generic-musl/asm-generic/signal-defs.h"
"include/generic-musl/asm-generic/signal.h"
"include/generic-musl/asm-generic/socket.h"
"include/generic-musl/asm-generic/sockios.h"
"include/generic-musl/asm-generic/stat.h"
"include/generic-musl/asm-generic/statfs.h"
"include/generic-musl/asm-generic/swab.h"
"include/generic-musl/asm-generic/termbits.h"
"include/generic-musl/asm-generic/termios.h"
"include/generic-musl/asm-generic/types.h"
"include/generic-musl/asm-generic/ucontext.h"
"include/generic-musl/asm-generic/unistd.h"
"include/generic-musl/asm/a.out.h"
"include/generic-musl/asm/auxvec.h"
"include/generic-musl/asm/bitfield.h"
"include/generic-musl/asm/bitsperlong.h"
"include/generic-musl/asm/boot.h"
"include/generic-musl/asm/bootparam.h"
"include/generic-musl/asm/bootx.h"
"include/generic-musl/asm/bpf_perf_event.h"
"include/generic-musl/asm/break.h"
"include/generic-musl/asm/byteorder.h"
"include/generic-musl/asm/cachectl.h"
"include/generic-musl/asm/cputable.h"
"include/generic-musl/asm/debugreg.h"
"include/generic-musl/asm/e820.h"
"include/generic-musl/asm/eeh.h"
"include/generic-musl/asm/elf.h"
"include/generic-musl/asm/epapr_hcalls.h"
"include/generic-musl/asm/errno.h"
"include/generic-musl/asm/fcntl.h"
"include/generic-musl/asm/hw_breakpoint.h"
"include/generic-musl/asm/hwcap.h"
"include/generic-musl/asm/hwcap2.h"
"include/generic-musl/asm/inst.h"
"include/generic-musl/asm/ioctl.h"
"include/generic-musl/asm/ioctls.h"
"include/generic-musl/asm/ipcbuf.h"
"include/generic-musl/asm/ist.h"
"include/generic-musl/asm/kvm.h"
"include/generic-musl/asm/kvm_para.h"
"include/generic-musl/asm/kvm_perf.h"
"include/generic-musl/asm/ldt.h"
"include/generic-musl/asm/mce.h"
"include/generic-musl/asm/mman.h"
"include/generic-musl/asm/msgbuf.h"
"include/generic-musl/asm/msr.h"
"include/generic-musl/asm/mtrr.h"
"include/generic-musl/asm/nvram.h"
"include/generic-musl/asm/opal-prd.h"
"include/generic-musl/asm/param.h"
"include/generic-musl/asm/perf_event.h"
"include/generic-musl/asm/perf_regs.h"
"include/generic-musl/asm/poll.h"
"include/generic-musl/asm/posix_types.h"
"include/generic-musl/asm/posix_types_32.h"
"include/generic-musl/asm/posix_types_64.h"
"include/generic-musl/asm/posix_types_x32.h"
"include/generic-musl/asm/prctl.h"
"include/generic-musl/asm/processor-flags.h"
"include/generic-musl/asm/ps3fb.h"
"include/generic-musl/asm/ptrace-abi.h"
"include/generic-musl/asm/ptrace.h"
"include/generic-musl/asm/reg.h"
"include/generic-musl/asm/resource.h"
"include/generic-musl/asm/sembuf.h"
"include/generic-musl/asm/setup.h"
"include/generic-musl/asm/sgidefs.h"
"include/generic-musl/asm/shmbuf.h"
"include/generic-musl/asm/sigcontext.h"
"include/generic-musl/asm/sigcontext32.h"
"include/generic-musl/asm/siginfo.h"
"include/generic-musl/asm/signal.h"
"include/generic-musl/asm/socket.h"
"include/generic-musl/asm/sockios.h"
"include/generic-musl/asm/spu_info.h"
"include/generic-musl/asm/stat.h"
"include/generic-musl/asm/statfs.h"
"include/generic-musl/asm/svm.h"
"include/generic-musl/asm/swab.h"
"include/generic-musl/asm/syscalls.h"
"include/generic-musl/asm/sysmips.h"
"include/generic-musl/asm/termbits.h"
"include/generic-musl/asm/termios.h"
"include/generic-musl/asm/tm.h"
"include/generic-musl/asm/types.h"
"include/generic-musl/asm/ucontext.h"
"include/generic-musl/asm/unistd-common.h"
"include/generic-musl/asm/unistd-eabi.h"
"include/generic-musl/asm/unistd-oabi.h"
"include/generic-musl/asm/unistd.h"
"include/generic-musl/asm/unistd_32.h"
"include/generic-musl/asm/unistd_64.h"
"include/generic-musl/asm/unistd_x32.h"
"include/generic-musl/asm/vm86.h"
"include/generic-musl/asm/vmx.h"
"include/generic-musl/asm/vsyscall.h"
"include/generic-musl/assert.h"
"include/generic-musl/bfd.h"
"include/generic-musl/bfdlink.h"
"include/generic-musl/bits/alltypes.h"
"include/generic-musl/bits/endian.h"
"include/generic-musl/bits/errno.h"
"include/generic-musl/bits/fcntl.h"
"include/generic-musl/bits/fenv.h"
"include/generic-musl/bits/float.h"
"include/generic-musl/bits/hwcap.h"
"include/generic-musl/bits/io.h"
"include/generic-musl/bits/ioctl.h"
"include/generic-musl/bits/ioctl_fix.h"
"include/generic-musl/bits/ipc.h"
"include/generic-musl/bits/kd.h"
"include/generic-musl/bits/limits.h"
"include/generic-musl/bits/link.h"
"include/generic-musl/bits/mman.h"
"include/generic-musl/bits/msg.h"
"include/generic-musl/bits/poll.h"
"include/generic-musl/bits/posix.h"
"include/generic-musl/bits/ptrace.h"
"include/generic-musl/bits/reg.h"
"include/generic-musl/bits/resource.h"
"include/generic-musl/bits/sem.h"
"include/generic-musl/bits/setjmp.h"
"include/generic-musl/bits/shm.h"
"include/generic-musl/bits/signal.h"
"include/generic-musl/bits/socket.h"
"include/generic-musl/bits/soundcard.h"
"include/generic-musl/bits/stat.h"
"include/generic-musl/bits/statfs.h"
"include/generic-musl/bits/stdint.h"
"include/generic-musl/bits/syscall.h"
"include/generic-musl/bits/termios.h"
"include/generic-musl/bits/user.h"
"include/generic-musl/bits/vt.h"
"include/generic-musl/byteswap.h"
"include/generic-musl/complex.h"
"include/generic-musl/cpio.h"
"include/generic-musl/crypt.h"
"include/generic-musl/ctype.h"
"include/generic-musl/diagnostics.h"
"include/generic-musl/dirent.h"
"include/generic-musl/dis-asm.h"
"include/generic-musl/dlfcn.h"
"include/generic-musl/drm/amdgpu_drm.h"
"include/generic-musl/drm/armada_drm.h"
"include/generic-musl/drm/drm.h"
"include/generic-musl/drm/drm_fourcc.h"
"include/generic-musl/drm/drm_mode.h"
"include/generic-musl/drm/drm_sarea.h"
"include/generic-musl/drm/etnaviv_drm.h"
"include/generic-musl/drm/exynos_drm.h"
"include/generic-musl/drm/i810_drm.h"
"include/generic-musl/drm/i915_drm.h"
"include/generic-musl/drm/mga_drm.h"
"include/generic-musl/drm/msm_drm.h"
"include/generic-musl/drm/nouveau_drm.h"
"include/generic-musl/drm/omap_drm.h"
"include/generic-musl/drm/qxl_drm.h"
"include/generic-musl/drm/r128_drm.h"
"include/generic-musl/drm/radeon_drm.h"
"include/generic-musl/drm/savage_drm.h"
"include/generic-musl/drm/sis_drm.h"
"include/generic-musl/drm/tegra_drm.h"
"include/generic-musl/drm/v3d_drm.h"
"include/generic-musl/drm/vc4_drm.h"
"include/generic-musl/drm/vgem_drm.h"
"include/generic-musl/drm/via_drm.h"
"include/generic-musl/drm/virtgpu_drm.h"
"include/generic-musl/drm/vmwgfx_drm.h"
"include/generic-musl/elf.h"
"include/generic-musl/endian.h"
"include/generic-musl/err.h"
"include/generic-musl/errno.h"
"include/generic-musl/fcntl.h"
"include/generic-musl/features.h"
"include/generic-musl/fenv.h"
"include/generic-musl/float.h"
"include/generic-musl/fmtmsg.h"
"include/generic-musl/fnmatch.h"
"include/generic-musl/ftw.h"
"include/generic-musl/getopt.h"
"include/generic-musl/glob.h"
"include/generic-musl/grp.h"
"include/generic-musl/iconv.h"
"include/generic-musl/ifaddrs.h"
"include/generic-musl/inttypes.h"
"include/generic-musl/iso646.h"
"include/generic-musl/langinfo.h"
"include/generic-musl/lastlog.h"
"include/generic-musl/libgen.h"
"include/generic-musl/libintl.h"
"include/generic-musl/limits.h"
"include/generic-musl/link.h"
"include/generic-musl/linux/a.out.h"
"include/generic-musl/linux/acct.h"
"include/generic-musl/linux/adb.h"
"include/generic-musl/linux/adfs_fs.h"
"include/generic-musl/linux/affs_hardblocks.h"
"include/generic-musl/linux/agpgart.h"
"include/generic-musl/linux/aio_abi.h"
"include/generic-musl/linux/am437x-vpfe.h"
"include/generic-musl/linux/android/binder.h"
"include/generic-musl/linux/apm_bios.h"
"include/generic-musl/linux/arcfb.h"
"include/generic-musl/linux/arm_sdei.h"
"include/generic-musl/linux/aspeed-lpc-ctrl.h"
"include/generic-musl/linux/atalk.h"
"include/generic-musl/linux/atm.h"
"include/generic-musl/linux/atm_eni.h"
"include/generic-musl/linux/atm_he.h"
"include/generic-musl/linux/atm_idt77105.h"
"include/generic-musl/linux/atm_nicstar.h"
"include/generic-musl/linux/atm_tcp.h"
"include/generic-musl/linux/atm_zatm.h"
"include/generic-musl/linux/atmapi.h"
"include/generic-musl/linux/atmarp.h"
"include/generic-musl/linux/atmbr2684.h"
"include/generic-musl/linux/atmclip.h"
"include/generic-musl/linux/atmdev.h"
"include/generic-musl/linux/atmioc.h"
"include/generic-musl/linux/atmlec.h"
"include/generic-musl/linux/atmmpc.h"
"include/generic-musl/linux/atmppp.h"
"include/generic-musl/linux/atmsap.h"
"include/generic-musl/linux/atmsvc.h"
"include/generic-musl/linux/audit.h"
"include/generic-musl/linux/auto_dev-ioctl.h"
"include/generic-musl/linux/auto_fs.h"
"include/generic-musl/linux/auto_fs4.h"
"include/generic-musl/linux/auxvec.h"
"include/generic-musl/linux/ax25.h"
"include/generic-musl/linux/b1lli.h"
"include/generic-musl/linux/batadv_packet.h"
"include/generic-musl/linux/batman_adv.h"
"include/generic-musl/linux/baycom.h"
"include/generic-musl/linux/bcache.h"
"include/generic-musl/linux/bcm933xx_hcs.h"
"include/generic-musl/linux/bfs_fs.h"
"include/generic-musl/linux/binfmts.h"
"include/generic-musl/linux/blkpg.h"
"include/generic-musl/linux/blktrace_api.h"
"include/generic-musl/linux/blkzoned.h"
"include/generic-musl/linux/bpf.h"
"include/generic-musl/linux/bpf_common.h"
"include/generic-musl/linux/bpf_perf_event.h"
"include/generic-musl/linux/bpfilter.h"
"include/generic-musl/linux/bpqether.h"
"include/generic-musl/linux/bsg.h"
"include/generic-musl/linux/bt-bmc.h"
"include/generic-musl/linux/btf.h"
"include/generic-musl/linux/btrfs.h"
"include/generic-musl/linux/btrfs_tree.h"
"include/generic-musl/linux/byteorder/big_endian.h"
"include/generic-musl/linux/byteorder/little_endian.h"
"include/generic-musl/linux/caif/caif_socket.h"
"include/generic-musl/linux/caif/if_caif.h"
"include/generic-musl/linux/can.h"
"include/generic-musl/linux/can/bcm.h"
"include/generic-musl/linux/can/error.h"
"include/generic-musl/linux/can/gw.h"
"include/generic-musl/linux/can/netlink.h"
"include/generic-musl/linux/can/raw.h"
"include/generic-musl/linux/can/vxcan.h"
"include/generic-musl/linux/capability.h"
"include/generic-musl/linux/capi.h"
"include/generic-musl/linux/cciss_defs.h"
"include/generic-musl/linux/cciss_ioctl.h"
"include/generic-musl/linux/cdrom.h"
"include/generic-musl/linux/cec-funcs.h"
"include/generic-musl/linux/cec.h"
"include/generic-musl/linux/cgroupstats.h"
"include/generic-musl/linux/chio.h"
"include/generic-musl/linux/cifs/cifs_mount.h"
"include/generic-musl/linux/cm4000_cs.h"
"include/generic-musl/linux/cn_proc.h"
"include/generic-musl/linux/coda.h"
"include/generic-musl/linux/coda_psdev.h"
"include/generic-musl/linux/coff.h"
"include/generic-musl/linux/connector.h"
"include/generic-musl/linux/const.h"
"include/generic-musl/linux/coresight-stm.h"
"include/generic-musl/linux/cramfs_fs.h"
"include/generic-musl/linux/cryptouser.h"
"include/generic-musl/linux/cuda.h"
"include/generic-musl/linux/cyclades.h"
"include/generic-musl/linux/cycx_cfm.h"
"include/generic-musl/linux/dcbnl.h"
"include/generic-musl/linux/dccp.h"
"include/generic-musl/linux/devlink.h"
"include/generic-musl/linux/dlm.h"
"include/generic-musl/linux/dlm_device.h"
"include/generic-musl/linux/dlm_netlink.h"
"include/generic-musl/linux/dlm_plock.h"
"include/generic-musl/linux/dlmconstants.h"
"include/generic-musl/linux/dm-ioctl.h"
"include/generic-musl/linux/dm-log-userspace.h"
"include/generic-musl/linux/dma-buf.h"
"include/generic-musl/linux/dn.h"
"include/generic-musl/linux/dqblk_xfs.h"
"include/generic-musl/linux/dvb/audio.h"
"include/generic-musl/linux/dvb/ca.h"
"include/generic-musl/linux/dvb/dmx.h"
"include/generic-musl/linux/dvb/frontend.h"
"include/generic-musl/linux/dvb/net.h"
"include/generic-musl/linux/dvb/osd.h"
"include/generic-musl/linux/dvb/version.h"
"include/generic-musl/linux/dvb/video.h"
"include/generic-musl/linux/edd.h"
"include/generic-musl/linux/efs_fs_sb.h"
"include/generic-musl/linux/elf-em.h"
"include/generic-musl/linux/elf-fdpic.h"
"include/generic-musl/linux/elf.h"
"include/generic-musl/linux/elfcore.h"
"include/generic-musl/linux/errno.h"
"include/generic-musl/linux/errqueue.h"
"include/generic-musl/linux/erspan.h"
"include/generic-musl/linux/ethtool.h"
"include/generic-musl/linux/eventpoll.h"
"include/generic-musl/linux/fadvise.h"
"include/generic-musl/linux/falloc.h"
"include/generic-musl/linux/fanotify.h"
"include/generic-musl/linux/fb.h"
"include/generic-musl/linux/fcntl.h"
"include/generic-musl/linux/fd.h"
"include/generic-musl/linux/fdreg.h"
"include/generic-musl/linux/fib_rules.h"
"include/generic-musl/linux/fiemap.h"
"include/generic-musl/linux/filter.h"
"include/generic-musl/linux/firewire-cdev.h"
"include/generic-musl/linux/firewire-constants.h"
"include/generic-musl/linux/flat.h"
"include/generic-musl/linux/fou.h"
"include/generic-musl/linux/fpga-dfl.h"
"include/generic-musl/linux/fs.h"
"include/generic-musl/linux/fsi.h"
"include/generic-musl/linux/fsl_hypervisor.h"
"include/generic-musl/linux/fsmap.h"
"include/generic-musl/linux/fuse.h"
"include/generic-musl/linux/futex.h"
"include/generic-musl/linux/gameport.h"
"include/generic-musl/linux/gen_stats.h"
"include/generic-musl/linux/genetlink.h"
"include/generic-musl/linux/genwqe/genwqe_card.h"
"include/generic-musl/linux/gfs2_ondisk.h"
"include/generic-musl/linux/gigaset_dev.h"
"include/generic-musl/linux/gpio.h"
"include/generic-musl/linux/gsmmux.h"
"include/generic-musl/linux/gtp.h"
"include/generic-musl/linux/hash_info.h"
"include/generic-musl/linux/hdlc.h"
"include/generic-musl/linux/hdlc/ioctl.h"
"include/generic-musl/linux/hdlcdrv.h"
"include/generic-musl/linux/hdreg.h"
"include/generic-musl/linux/hid.h"
"include/generic-musl/linux/hiddev.h"
"include/generic-musl/linux/hidraw.h"
"include/generic-musl/linux/hpet.h"
"include/generic-musl/linux/hsi/cs-protocol.h"
"include/generic-musl/linux/hsi/hsi_char.h"
"include/generic-musl/linux/hsr_netlink.h"
"include/generic-musl/linux/hw_breakpoint.h"
"include/generic-musl/linux/hyperv.h"
"include/generic-musl/linux/hysdn_if.h"
"include/generic-musl/linux/i2c-dev.h"
"include/generic-musl/linux/i2c.h"
"include/generic-musl/linux/i2o-dev.h"
"include/generic-musl/linux/i8k.h"
"include/generic-musl/linux/icmp.h"
"include/generic-musl/linux/icmpv6.h"
"include/generic-musl/linux/if.h"
"include/generic-musl/linux/if_addr.h"
"include/generic-musl/linux/if_addrlabel.h"
"include/generic-musl/linux/if_alg.h"
"include/generic-musl/linux/if_arcnet.h"
"include/generic-musl/linux/if_arp.h"
"include/generic-musl/linux/if_bonding.h"
"include/generic-musl/linux/if_bridge.h"
"include/generic-musl/linux/if_cablemodem.h"
"include/generic-musl/linux/if_eql.h"
"include/generic-musl/linux/if_ether.h"
"include/generic-musl/linux/if_fc.h"
"include/generic-musl/linux/if_fddi.h"
"include/generic-musl/linux/if_frad.h"
"include/generic-musl/linux/if_hippi.h"
"include/generic-musl/linux/if_infiniband.h"
"include/generic-musl/linux/if_link.h"
"include/generic-musl/linux/if_ltalk.h"
"include/generic-musl/linux/if_macsec.h"
"include/generic-musl/linux/if_packet.h"
"include/generic-musl/linux/if_phonet.h"
"include/generic-musl/linux/if_plip.h"
"include/generic-musl/linux/if_ppp.h"
"include/generic-musl/linux/if_pppol2tp.h"
"include/generic-musl/linux/if_pppox.h"
"include/generic-musl/linux/if_slip.h"
"include/generic-musl/linux/if_team.h"
"include/generic-musl/linux/if_tun.h"
"include/generic-musl/linux/if_tunnel.h"
"include/generic-musl/linux/if_vlan.h"
"include/generic-musl/linux/if_x25.h"
"include/generic-musl/linux/if_xdp.h"
"include/generic-musl/linux/ife.h"
"include/generic-musl/linux/igmp.h"
"include/generic-musl/linux/iio/events.h"
"include/generic-musl/linux/iio/types.h"
"include/generic-musl/linux/ila.h"
"include/generic-musl/linux/in.h"
"include/generic-musl/linux/in6.h"
"include/generic-musl/linux/in_route.h"
"include/generic-musl/linux/inet_diag.h"
"include/generic-musl/linux/inotify.h"
"include/generic-musl/linux/input-event-codes.h"
"include/generic-musl/linux/input.h"
"include/generic-musl/linux/ioctl.h"
"include/generic-musl/linux/ip.h"
"include/generic-musl/linux/ip6_tunnel.h"
"include/generic-musl/linux/ip_vs.h"
"include/generic-musl/linux/ipc.h"
"include/generic-musl/linux/ipmi.h"
"include/generic-musl/linux/ipmi_bmc.h"
"include/generic-musl/linux/ipmi_msgdefs.h"
"include/generic-musl/linux/ipsec.h"
"include/generic-musl/linux/ipv6.h"
"include/generic-musl/linux/ipv6_route.h"
"include/generic-musl/linux/ipx.h"
"include/generic-musl/linux/irqnr.h"
"include/generic-musl/linux/isdn.h"
"include/generic-musl/linux/isdn/capicmd.h"
"include/generic-musl/linux/isdn_divertif.h"
"include/generic-musl/linux/isdn_ppp.h"
"include/generic-musl/linux/isdnif.h"
"include/generic-musl/linux/iso_fs.h"
"include/generic-musl/linux/ivtv.h"
"include/generic-musl/linux/ivtvfb.h"
"include/generic-musl/linux/jffs2.h"
"include/generic-musl/linux/joystick.h"
"include/generic-musl/linux/kcm.h"
"include/generic-musl/linux/kcmp.h"
"include/generic-musl/linux/kcov.h"
"include/generic-musl/linux/kd.h"
"include/generic-musl/linux/kdev_t.h"
"include/generic-musl/linux/kernel-page-flags.h"
"include/generic-musl/linux/kernel.h"
"include/generic-musl/linux/kernelcapi.h"
"include/generic-musl/linux/kexec.h"
"include/generic-musl/linux/keyboard.h"
"include/generic-musl/linux/keyctl.h"
"include/generic-musl/linux/kfd_ioctl.h"
"include/generic-musl/linux/kvm.h"
"include/generic-musl/linux/kvm_para.h"
"include/generic-musl/linux/l2tp.h"
"include/generic-musl/linux/libc-compat.h"
"include/generic-musl/linux/lightnvm.h"
"include/generic-musl/linux/limits.h"
"include/generic-musl/linux/lirc.h"
"include/generic-musl/linux/llc.h"
"include/generic-musl/linux/loop.h"
"include/generic-musl/linux/lp.h"
"include/generic-musl/linux/lwtunnel.h"
"include/generic-musl/linux/magic.h"
"include/generic-musl/linux/major.h"
"include/generic-musl/linux/map_to_7segment.h"
"include/generic-musl/linux/matroxfb.h"
"include/generic-musl/linux/max2175.h"
"include/generic-musl/linux/mdio.h"
"include/generic-musl/linux/media-bus-format.h"
"include/generic-musl/linux/media.h"
"include/generic-musl/linux/mei.h"
"include/generic-musl/linux/membarrier.h"
"include/generic-musl/linux/memfd.h"
"include/generic-musl/linux/mempolicy.h"
"include/generic-musl/linux/meye.h"
"include/generic-musl/linux/mic_common.h"
"include/generic-musl/linux/mic_ioctl.h"
"include/generic-musl/linux/mii.h"
"include/generic-musl/linux/minix_fs.h"
"include/generic-musl/linux/mman.h"
"include/generic-musl/linux/mmc/ioctl.h"
"include/generic-musl/linux/mmtimer.h"
"include/generic-musl/linux/module.h"
"include/generic-musl/linux/mpls.h"
"include/generic-musl/linux/mpls_iptunnel.h"
"include/generic-musl/linux/mqueue.h"
"include/generic-musl/linux/mroute.h"
"include/generic-musl/linux/mroute6.h"
"include/generic-musl/linux/msdos_fs.h"
"include/generic-musl/linux/msg.h"
"include/generic-musl/linux/mtio.h"
"include/generic-musl/linux/n_r3964.h"
"include/generic-musl/linux/nbd-netlink.h"
"include/generic-musl/linux/nbd.h"
"include/generic-musl/linux/ncsi.h"
"include/generic-musl/linux/ndctl.h"
"include/generic-musl/linux/neighbour.h"
"include/generic-musl/linux/net.h"
"include/generic-musl/linux/net_dropmon.h"
"include/generic-musl/linux/net_namespace.h"
"include/generic-musl/linux/net_tstamp.h"
"include/generic-musl/linux/netconf.h"
"include/generic-musl/linux/netdevice.h"
"include/generic-musl/linux/netfilter.h"
"include/generic-musl/linux/netfilter/ipset/ip_set.h"
"include/generic-musl/linux/netfilter/ipset/ip_set_bitmap.h"
"include/generic-musl/linux/netfilter/ipset/ip_set_hash.h"
"include/generic-musl/linux/netfilter/ipset/ip_set_list.h"
"include/generic-musl/linux/netfilter/nf_conntrack_common.h"
"include/generic-musl/linux/netfilter/nf_conntrack_ftp.h"
"include/generic-musl/linux/netfilter/nf_conntrack_sctp.h"
"include/generic-musl/linux/netfilter/nf_conntrack_tcp.h"
"include/generic-musl/linux/netfilter/nf_conntrack_tuple_common.h"
"include/generic-musl/linux/netfilter/nf_log.h"
"include/generic-musl/linux/netfilter/nf_nat.h"
"include/generic-musl/linux/netfilter/nf_tables.h"
"include/generic-musl/linux/netfilter/nf_tables_compat.h"
"include/generic-musl/linux/netfilter/nfnetlink.h"
"include/generic-musl/linux/netfilter/nfnetlink_acct.h"
"include/generic-musl/linux/netfilter/nfnetlink_compat.h"
"include/generic-musl/linux/netfilter/nfnetlink_conntrack.h"
"include/generic-musl/linux/netfilter/nfnetlink_cthelper.h"
"include/generic-musl/linux/netfilter/nfnetlink_cttimeout.h"
"include/generic-musl/linux/netfilter/nfnetlink_log.h"
"include/generic-musl/linux/netfilter/nfnetlink_osf.h"
"include/generic-musl/linux/netfilter/nfnetlink_queue.h"
"include/generic-musl/linux/netfilter/x_tables.h"
"include/generic-musl/linux/netfilter/xt_AUDIT.h"
"include/generic-musl/linux/netfilter/xt_CHECKSUM.h"
"include/generic-musl/linux/netfilter/xt_CLASSIFY.h"
"include/generic-musl/linux/netfilter/xt_CONNMARK.h"
"include/generic-musl/linux/netfilter/xt_CONNSECMARK.h"
"include/generic-musl/linux/netfilter/xt_CT.h"
"include/generic-musl/linux/netfilter/xt_DSCP.h"
"include/generic-musl/linux/netfilter/xt_HMARK.h"
"include/generic-musl/linux/netfilter/xt_IDLETIMER.h"
"include/generic-musl/linux/netfilter/xt_LED.h"
"include/generic-musl/linux/netfilter/xt_LOG.h"
"include/generic-musl/linux/netfilter/xt_MARK.h"
"include/generic-musl/linux/netfilter/xt_NFLOG.h"
"include/generic-musl/linux/netfilter/xt_NFQUEUE.h"
"include/generic-musl/linux/netfilter/xt_RATEEST.h"
"include/generic-musl/linux/netfilter/xt_SECMARK.h"
"include/generic-musl/linux/netfilter/xt_SYNPROXY.h"
"include/generic-musl/linux/netfilter/xt_TCPMSS.h"
"include/generic-musl/linux/netfilter/xt_TCPOPTSTRIP.h"
"include/generic-musl/linux/netfilter/xt_TEE.h"
"include/generic-musl/linux/netfilter/xt_TPROXY.h"
"include/generic-musl/linux/netfilter/xt_addrtype.h"
"include/generic-musl/linux/netfilter/xt_bpf.h"
"include/generic-musl/linux/netfilter/xt_cgroup.h"
"include/generic-musl/linux/netfilter/xt_cluster.h"
"include/generic-musl/linux/netfilter/xt_comment.h"
"include/generic-musl/linux/netfilter/xt_connbytes.h"
"include/generic-musl/linux/netfilter/xt_connlabel.h"
"include/generic-musl/linux/netfilter/xt_connlimit.h"
"include/generic-musl/linux/netfilter/xt_connmark.h"
"include/generic-musl/linux/netfilter/xt_conntrack.h"
"include/generic-musl/linux/netfilter/xt_cpu.h"
"include/generic-musl/linux/netfilter/xt_dccp.h"
"include/generic-musl/linux/netfilter/xt_devgroup.h"
"include/generic-musl/linux/netfilter/xt_dscp.h"
"include/generic-musl/linux/netfilter/xt_ecn.h"
"include/generic-musl/linux/netfilter/xt_esp.h"
"include/generic-musl/linux/netfilter/xt_hashlimit.h"
"include/generic-musl/linux/netfilter/xt_helper.h"
"include/generic-musl/linux/netfilter/xt_ipcomp.h"
"include/generic-musl/linux/netfilter/xt_iprange.h"
"include/generic-musl/linux/netfilter/xt_ipvs.h"
"include/generic-musl/linux/netfilter/xt_l2tp.h"
"include/generic-musl/linux/netfilter/xt_length.h"
"include/generic-musl/linux/netfilter/xt_limit.h"
"include/generic-musl/linux/netfilter/xt_mac.h"
"include/generic-musl/linux/netfilter/xt_mark.h"
"include/generic-musl/linux/netfilter/xt_multiport.h"
"include/generic-musl/linux/netfilter/xt_nfacct.h"
"include/generic-musl/linux/netfilter/xt_osf.h"
"include/generic-musl/linux/netfilter/xt_owner.h"
"include/generic-musl/linux/netfilter/xt_physdev.h"
"include/generic-musl/linux/netfilter/xt_pkttype.h"
"include/generic-musl/linux/netfilter/xt_policy.h"
"include/generic-musl/linux/netfilter/xt_quota.h"
"include/generic-musl/linux/netfilter/xt_rateest.h"
"include/generic-musl/linux/netfilter/xt_realm.h"
"include/generic-musl/linux/netfilter/xt_recent.h"
"include/generic-musl/linux/netfilter/xt_rpfilter.h"
"include/generic-musl/linux/netfilter/xt_sctp.h"
"include/generic-musl/linux/netfilter/xt_set.h"
"include/generic-musl/linux/netfilter/xt_socket.h"
"include/generic-musl/linux/netfilter/xt_state.h"
"include/generic-musl/linux/netfilter/xt_statistic.h"
"include/generic-musl/linux/netfilter/xt_string.h"
"include/generic-musl/linux/netfilter/xt_tcpmss.h"
"include/generic-musl/linux/netfilter/xt_tcpudp.h"
"include/generic-musl/linux/netfilter/xt_time.h"
"include/generic-musl/linux/netfilter/xt_u32.h"
"include/generic-musl/linux/netfilter_arp.h"
"include/generic-musl/linux/netfilter_arp/arp_tables.h"
"include/generic-musl/linux/netfilter_arp/arpt_mangle.h"
"include/generic-musl/linux/netfilter_bridge.h"
"include/generic-musl/linux/netfilter_bridge/ebt_802_3.h"
"include/generic-musl/linux/netfilter_bridge/ebt_among.h"
"include/generic-musl/linux/netfilter_bridge/ebt_arp.h"
"include/generic-musl/linux/netfilter_bridge/ebt_arpreply.h"
"include/generic-musl/linux/netfilter_bridge/ebt_ip.h"
"include/generic-musl/linux/netfilter_bridge/ebt_ip6.h"
"include/generic-musl/linux/netfilter_bridge/ebt_limit.h"
"include/generic-musl/linux/netfilter_bridge/ebt_log.h"
"include/generic-musl/linux/netfilter_bridge/ebt_mark_m.h"
"include/generic-musl/linux/netfilter_bridge/ebt_mark_t.h"
"include/generic-musl/linux/netfilter_bridge/ebt_nat.h"
"include/generic-musl/linux/netfilter_bridge/ebt_nflog.h"
"include/generic-musl/linux/netfilter_bridge/ebt_pkttype.h"
"include/generic-musl/linux/netfilter_bridge/ebt_redirect.h"
"include/generic-musl/linux/netfilter_bridge/ebt_stp.h"
"include/generic-musl/linux/netfilter_bridge/ebt_vlan.h"
"include/generic-musl/linux/netfilter_bridge/ebtables.h"
"include/generic-musl/linux/netfilter_decnet.h"
"include/generic-musl/linux/netfilter_ipv4.h"
"include/generic-musl/linux/netfilter_ipv4/ip_tables.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_CLUSTERIP.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_ECN.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_LOG.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_REJECT.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_TTL.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_ah.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_ecn.h"
"include/generic-musl/linux/netfilter_ipv4/ipt_ttl.h"
"include/generic-musl/linux/netfilter_ipv6.h"
"include/generic-musl/linux/netfilter_ipv6/ip6_tables.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_HL.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_LOG.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_NPT.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_REJECT.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_ah.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_frag.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_hl.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_ipv6header.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_mh.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_opts.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_rt.h"
"include/generic-musl/linux/netfilter_ipv6/ip6t_srh.h"
"include/generic-musl/linux/netlink.h"
"include/generic-musl/linux/netlink_diag.h"
"include/generic-musl/linux/netrom.h"
"include/generic-musl/linux/nfc.h"
"include/generic-musl/linux/nfs.h"
"include/generic-musl/linux/nfs2.h"
"include/generic-musl/linux/nfs3.h"
"include/generic-musl/linux/nfs4.h"
"include/generic-musl/linux/nfs4_mount.h"
"include/generic-musl/linux/nfs_fs.h"
"include/generic-musl/linux/nfs_idmap.h"
"include/generic-musl/linux/nfs_mount.h"
"include/generic-musl/linux/nfsacl.h"
"include/generic-musl/linux/nfsd/cld.h"
"include/generic-musl/linux/nfsd/debug.h"
"include/generic-musl/linux/nfsd/export.h"
"include/generic-musl/linux/nfsd/nfsfh.h"
"include/generic-musl/linux/nfsd/stats.h"
"include/generic-musl/linux/nilfs2_api.h"
"include/generic-musl/linux/nilfs2_ondisk.h"
"include/generic-musl/linux/nl80211.h"
"include/generic-musl/linux/nsfs.h"
"include/generic-musl/linux/nubus.h"
"include/generic-musl/linux/nvme_ioctl.h"
"include/generic-musl/linux/nvram.h"
"include/generic-musl/linux/omap3isp.h"
"include/generic-musl/linux/omapfb.h"
"include/generic-musl/linux/oom.h"
"include/generic-musl/linux/openvswitch.h"
"include/generic-musl/linux/packet_diag.h"
"include/generic-musl/linux/param.h"
"include/generic-musl/linux/parport.h"
"include/generic-musl/linux/patchkey.h"
"include/generic-musl/linux/pci.h"
"include/generic-musl/linux/pci_regs.h"
"include/generic-musl/linux/pcitest.h"
"include/generic-musl/linux/perf_event.h"
"include/generic-musl/linux/personality.h"
"include/generic-musl/linux/pfkeyv2.h"
"include/generic-musl/linux/pg.h"
"include/generic-musl/linux/phantom.h"
"include/generic-musl/linux/phonet.h"
"include/generic-musl/linux/pkt_cls.h"
"include/generic-musl/linux/pkt_sched.h"
"include/generic-musl/linux/pktcdvd.h"
"include/generic-musl/linux/pmu.h"
"include/generic-musl/linux/poll.h"
"include/generic-musl/linux/posix_acl.h"
"include/generic-musl/linux/posix_acl_xattr.h"
"include/generic-musl/linux/posix_types.h"
"include/generic-musl/linux/ppdev.h"
"include/generic-musl/linux/ppp-comp.h"
"include/generic-musl/linux/ppp-ioctl.h"
"include/generic-musl/linux/ppp_defs.h"
"include/generic-musl/linux/pps.h"
"include/generic-musl/linux/pr.h"
"include/generic-musl/linux/prctl.h"
"include/generic-musl/linux/psample.h"
"include/generic-musl/linux/psci.h"
"include/generic-musl/linux/psp-sev.h"
"include/generic-musl/linux/ptp_clock.h"
"include/generic-musl/linux/ptrace.h"
"include/generic-musl/linux/qemu_fw_cfg.h"
"include/generic-musl/linux/qnx4_fs.h"
"include/generic-musl/linux/qnxtypes.h"
"include/generic-musl/linux/qrtr.h"
"include/generic-musl/linux/quota.h"
"include/generic-musl/linux/radeonfb.h"
"include/generic-musl/linux/raid/md_p.h"
"include/generic-musl/linux/raid/md_u.h"
"include/generic-musl/linux/random.h"
"include/generic-musl/linux/raw.h"
"include/generic-musl/linux/rds.h"
"include/generic-musl/linux/reboot.h"
"include/generic-musl/linux/reiserfs_fs.h"
"include/generic-musl/linux/reiserfs_xattr.h"
"include/generic-musl/linux/resource.h"
"include/generic-musl/linux/rfkill.h"
"include/generic-musl/linux/rio_cm_cdev.h"
"include/generic-musl/linux/rio_mport_cdev.h"
"include/generic-musl/linux/romfs_fs.h"
"include/generic-musl/linux/rose.h"
"include/generic-musl/linux/route.h"
"include/generic-musl/linux/rpmsg.h"
"include/generic-musl/linux/rseq.h"
"include/generic-musl/linux/rtc.h"
"include/generic-musl/linux/rtnetlink.h"
"include/generic-musl/linux/rxrpc.h"
"include/generic-musl/linux/scc.h"
"include/generic-musl/linux/sched.h"
"include/generic-musl/linux/sched/types.h"
"include/generic-musl/linux/scif_ioctl.h"
"include/generic-musl/linux/screen_info.h"
"include/generic-musl/linux/sctp.h"
"include/generic-musl/linux/sdla.h"
"include/generic-musl/linux/seccomp.h"
"include/generic-musl/linux/securebits.h"
"include/generic-musl/linux/sed-opal.h"
"include/generic-musl/linux/seg6.h"
"include/generic-musl/linux/seg6_genl.h"
"include/generic-musl/linux/seg6_hmac.h"
"include/generic-musl/linux/seg6_iptunnel.h"
"include/generic-musl/linux/seg6_local.h"
"include/generic-musl/linux/selinux_netlink.h"
"include/generic-musl/linux/sem.h"
"include/generic-musl/linux/serial.h"
"include/generic-musl/linux/serial_core.h"
"include/generic-musl/linux/serial_reg.h"
"include/generic-musl/linux/serio.h"
"include/generic-musl/linux/shm.h"
"include/generic-musl/linux/signal.h"
"include/generic-musl/linux/signalfd.h"
"include/generic-musl/linux/smc.h"
"include/generic-musl/linux/smc_diag.h"
"include/generic-musl/linux/smiapp.h"
"include/generic-musl/linux/snmp.h"
"include/generic-musl/linux/sock_diag.h"
"include/generic-musl/linux/socket.h"
"include/generic-musl/linux/sockios.h"
"include/generic-musl/linux/sonet.h"
"include/generic-musl/linux/sonypi.h"
"include/generic-musl/linux/sound.h"
"include/generic-musl/linux/soundcard.h"
"include/generic-musl/linux/spi/spidev.h"
"include/generic-musl/linux/stat.h"
"include/generic-musl/linux/stddef.h"
"include/generic-musl/linux/stm.h"
"include/generic-musl/linux/string.h"
"include/generic-musl/linux/sunrpc/debug.h"
"include/generic-musl/linux/suspend_ioctls.h"
"include/generic-musl/linux/swab.h"
"include/generic-musl/linux/switchtec_ioctl.h"
"include/generic-musl/linux/sync_file.h"
"include/generic-musl/linux/synclink.h"
"include/generic-musl/linux/sysctl.h"
"include/generic-musl/linux/sysinfo.h"
"include/generic-musl/linux/target_core_user.h"
"include/generic-musl/linux/taskstats.h"
"include/generic-musl/linux/tc_act/tc_bpf.h"
"include/generic-musl/linux/tc_act/tc_connmark.h"
"include/generic-musl/linux/tc_act/tc_csum.h"
"include/generic-musl/linux/tc_act/tc_defact.h"
"include/generic-musl/linux/tc_act/tc_gact.h"
"include/generic-musl/linux/tc_act/tc_ife.h"
"include/generic-musl/linux/tc_act/tc_ipt.h"
"include/generic-musl/linux/tc_act/tc_mirred.h"
"include/generic-musl/linux/tc_act/tc_nat.h"
"include/generic-musl/linux/tc_act/tc_pedit.h"
"include/generic-musl/linux/tc_act/tc_sample.h"
"include/generic-musl/linux/tc_act/tc_skbedit.h"
"include/generic-musl/linux/tc_act/tc_skbmod.h"
"include/generic-musl/linux/tc_act/tc_tunnel_key.h"
"include/generic-musl/linux/tc_act/tc_vlan.h"
"include/generic-musl/linux/tc_ematch/tc_em_cmp.h"
"include/generic-musl/linux/tc_ematch/tc_em_ipt.h"
"include/generic-musl/linux/tc_ematch/tc_em_meta.h"
"include/generic-musl/linux/tc_ematch/tc_em_nbyte.h"
"include/generic-musl/linux/tc_ematch/tc_em_text.h"
"include/generic-musl/linux/tcp.h"
"include/generic-musl/linux/tcp_metrics.h"
"include/generic-musl/linux/tee.h"
"include/generic-musl/linux/termios.h"
"include/generic-musl/linux/thermal.h"
"include/generic-musl/linux/time.h"
"include/generic-musl/linux/timerfd.h"
"include/generic-musl/linux/times.h"
"include/generic-musl/linux/timex.h"
"include/generic-musl/linux/tiocl.h"
"include/generic-musl/linux/tipc.h"
"include/generic-musl/linux/tipc_config.h"
"include/generic-musl/linux/tipc_netlink.h"
"include/generic-musl/linux/tipc_sockets_diag.h"
"include/generic-musl/linux/tls.h"
"include/generic-musl/linux/toshiba.h"
"include/generic-musl/linux/tty.h"
"include/generic-musl/linux/tty_flags.h"
"include/generic-musl/linux/types.h"
"include/generic-musl/linux/udf_fs_i.h"
"include/generic-musl/linux/udp.h"
"include/generic-musl/linux/uhid.h"
"include/generic-musl/linux/uinput.h"
"include/generic-musl/linux/uio.h"
"include/generic-musl/linux/uleds.h"
"include/generic-musl/linux/ultrasound.h"
"include/generic-musl/linux/un.h"
"include/generic-musl/linux/unistd.h"
"include/generic-musl/linux/unix_diag.h"
"include/generic-musl/linux/usb/audio.h"
"include/generic-musl/linux/usb/cdc-wdm.h"
"include/generic-musl/linux/usb/cdc.h"
"include/generic-musl/linux/usb/ch11.h"
"include/generic-musl/linux/usb/ch9.h"
"include/generic-musl/linux/usb/charger.h"
"include/generic-musl/linux/usb/functionfs.h"
"include/generic-musl/linux/usb/g_printer.h"
"include/generic-musl/linux/usb/g_uvc.h"
"include/generic-musl/linux/usb/gadgetfs.h"
"include/generic-musl/linux/usb/midi.h"
"include/generic-musl/linux/usb/tmc.h"
"include/generic-musl/linux/usb/video.h"
"include/generic-musl/linux/usbdevice_fs.h"
"include/generic-musl/linux/usbip.h"
"include/generic-musl/linux/userfaultfd.h"
"include/generic-musl/linux/userio.h"
"include/generic-musl/linux/utime.h"
"include/generic-musl/linux/utsname.h"
"include/generic-musl/linux/uuid.h"
"include/generic-musl/linux/uvcvideo.h"
"include/generic-musl/linux/v4l2-common.h"
"include/generic-musl/linux/v4l2-controls.h"
"include/generic-musl/linux/v4l2-dv-timings.h"
"include/generic-musl/linux/v4l2-mediabus.h"
"include/generic-musl/linux/v4l2-subdev.h"
"include/generic-musl/linux/vbox_err.h"
"include/generic-musl/linux/vbox_vmmdev_types.h"
"include/generic-musl/linux/vboxguest.h"
"include/generic-musl/linux/version.h"
"include/generic-musl/linux/veth.h"
"include/generic-musl/linux/vfio.h"
"include/generic-musl/linux/vfio_ccw.h"
"include/generic-musl/linux/vhost.h"
"include/generic-musl/linux/videodev2.h"
"include/generic-musl/linux/virtio_9p.h"
"include/generic-musl/linux/virtio_balloon.h"
"include/generic-musl/linux/virtio_blk.h"
"include/generic-musl/linux/virtio_config.h"
"include/generic-musl/linux/virtio_console.h"
"include/generic-musl/linux/virtio_crypto.h"
"include/generic-musl/linux/virtio_gpu.h"
"include/generic-musl/linux/virtio_ids.h"
"include/generic-musl/linux/virtio_input.h"
"include/generic-musl/linux/virtio_mmio.h"
"include/generic-musl/linux/virtio_net.h"
"include/generic-musl/linux/virtio_pci.h"
"include/generic-musl/linux/virtio_ring.h"
"include/generic-musl/linux/virtio_rng.h"
"include/generic-musl/linux/virtio_scsi.h"
"include/generic-musl/linux/virtio_types.h"
"include/generic-musl/linux/virtio_vsock.h"
"include/generic-musl/linux/vm_sockets.h"
"include/generic-musl/linux/vm_sockets_diag.h"
"include/generic-musl/linux/vmcore.h"
"include/generic-musl/linux/vsockmon.h"
"include/generic-musl/linux/vt.h"
"include/generic-musl/linux/vtpm_proxy.h"
"include/generic-musl/linux/wait.h"
"include/generic-musl/linux/wanrouter.h"
"include/generic-musl/linux/watchdog.h"
"include/generic-musl/linux/wimax.h"
"include/generic-musl/linux/wimax/i2400m.h"
"include/generic-musl/linux/wireless.h"
"include/generic-musl/linux/wmi.h"
"include/generic-musl/linux/x25.h"
"include/generic-musl/linux/xattr.h"
"include/generic-musl/linux/xfrm.h"
"include/generic-musl/linux/xilinx-v4l2-controls.h"
"include/generic-musl/linux/zorro.h"
"include/generic-musl/linux/zorro_ids.h"
"include/generic-musl/locale.h"
"include/generic-musl/malloc.h"
"include/generic-musl/math.h"
"include/generic-musl/memory.h"
"include/generic-musl/misc/cxl.h"
"include/generic-musl/misc/ocxl.h"
"include/generic-musl/mntent.h"
"include/generic-musl/monetary.h"
"include/generic-musl/mqueue.h"
"include/generic-musl/mtd/inftl-user.h"
"include/generic-musl/mtd/mtd-abi.h"
"include/generic-musl/mtd/mtd-user.h"
"include/generic-musl/mtd/nftl-user.h"
"include/generic-musl/mtd/ubi-user.h"
"include/generic-musl/net/ethernet.h"
"include/generic-musl/net/if.h"
"include/generic-musl/net/if_arp.h"
"include/generic-musl/net/route.h"
"include/generic-musl/netdb.h"
"include/generic-musl/netinet/ether.h"
"include/generic-musl/netinet/icmp6.h"
"include/generic-musl/netinet/if_ether.h"
"include/generic-musl/netinet/igmp.h"
"include/generic-musl/netinet/in.h"
"include/generic-musl/netinet/in_systm.h"
"include/generic-musl/netinet/ip.h"
"include/generic-musl/netinet/ip6.h"
"include/generic-musl/netinet/ip_icmp.h"
"include/generic-musl/netinet/tcp.h"
"include/generic-musl/netinet/udp.h"
"include/generic-musl/netpacket/packet.h"
"include/generic-musl/nl_types.h"
"include/generic-musl/paths.h"
"include/generic-musl/plugin-api.h"
"include/generic-musl/poll.h"
"include/generic-musl/pthread.h"
"include/generic-musl/pty.h"
"include/generic-musl/pwd.h"
"include/generic-musl/rdma/bnxt_re-abi.h"
"include/generic-musl/rdma/cxgb3-abi.h"
"include/generic-musl/rdma/cxgb4-abi.h"
"include/generic-musl/rdma/hfi/hfi1_ioctl.h"
"include/generic-musl/rdma/hfi/hfi1_user.h"
"include/generic-musl/rdma/hns-abi.h"
"include/generic-musl/rdma/i40iw-abi.h"
"include/generic-musl/rdma/ib_user_cm.h"
"include/generic-musl/rdma/ib_user_ioctl_cmds.h"
"include/generic-musl/rdma/ib_user_ioctl_verbs.h"
"include/generic-musl/rdma/ib_user_mad.h"
"include/generic-musl/rdma/ib_user_sa.h"
"include/generic-musl/rdma/ib_user_verbs.h"
"include/generic-musl/rdma/mlx4-abi.h"
"include/generic-musl/rdma/mlx5-abi.h"
"include/generic-musl/rdma/mlx5_user_ioctl_cmds.h"
"include/generic-musl/rdma/mlx5_user_ioctl_verbs.h"
"include/generic-musl/rdma/mthca-abi.h"
"include/generic-musl/rdma/nes-abi.h"
"include/generic-musl/rdma/ocrdma-abi.h"
"include/generic-musl/rdma/qedr-abi.h"
"include/generic-musl/rdma/rdma_netlink.h"
"include/generic-musl/rdma/rdma_user_cm.h"
"include/generic-musl/rdma/rdma_user_ioctl.h"
"include/generic-musl/rdma/rdma_user_ioctl_cmds.h"
"include/generic-musl/rdma/rdma_user_rxe.h"
"include/generic-musl/rdma/vmw_pvrdma-abi.h"
"include/generic-musl/regex.h"
"include/generic-musl/resolv.h"
"include/generic-musl/sched.h"
"include/generic-musl/scsi/cxlflash_ioctl.h"
"include/generic-musl/scsi/fc/fc_els.h"
"include/generic-musl/scsi/fc/fc_fs.h"
"include/generic-musl/scsi/fc/fc_gs.h"
"include/generic-musl/scsi/fc/fc_ns.h"
"include/generic-musl/scsi/scsi.h"
"include/generic-musl/scsi/scsi_bsg_fc.h"
"include/generic-musl/scsi/scsi_ioctl.h"
"include/generic-musl/scsi/scsi_netlink.h"
"include/generic-musl/scsi/scsi_netlink_fc.h"
"include/generic-musl/scsi/sg.h"
"include/generic-musl/search.h"
"include/generic-musl/semaphore.h"
"include/generic-musl/setjmp.h"
"include/generic-musl/shadow.h"
"include/generic-musl/signal.h"
"include/generic-musl/sound/asequencer.h"
"include/generic-musl/sound/asoc.h"
"include/generic-musl/sound/asound.h"
"include/generic-musl/sound/asound_fm.h"
"include/generic-musl/sound/compress_offload.h"
"include/generic-musl/sound/compress_params.h"
"include/generic-musl/sound/emu10k1.h"
"include/generic-musl/sound/firewire.h"
"include/generic-musl/sound/hdsp.h"
"include/generic-musl/sound/hdspm.h"
"include/generic-musl/sound/sb16_csp.h"
"include/generic-musl/sound/sfnt_info.h"
"include/generic-musl/sound/skl-tplg-interface.h"
"include/generic-musl/sound/snd_sst_tokens.h"
"include/generic-musl/sound/tlv.h"
"include/generic-musl/sound/usb_stream.h"
"include/generic-musl/spawn.h"
"include/generic-musl/stdalign.h"
"include/generic-musl/stdarg.h"
"include/generic-musl/stdbool.h"
"include/generic-musl/stdc-predef.h"
"include/generic-musl/stddef.h"
"include/generic-musl/stdint.h"
"include/generic-musl/stdio.h"
"include/generic-musl/stdio_ext.h"
"include/generic-musl/stdlib.h"
"include/generic-musl/stdnoreturn.h"
"include/generic-musl/string.h"
"include/generic-musl/strings.h"
"include/generic-musl/stropts.h"
"include/generic-musl/symcat.h"
"include/generic-musl/sys/acct.h"
"include/generic-musl/sys/auxv.h"
"include/generic-musl/sys/cachectl.h"
"include/generic-musl/sys/dir.h"
"include/generic-musl/sys/epoll.h"
"include/generic-musl/sys/errno.h"
"include/generic-musl/sys/eventfd.h"
"include/generic-musl/sys/fanotify.h"
"include/generic-musl/sys/fcntl.h"
"include/generic-musl/sys/file.h"
"include/generic-musl/sys/fsuid.h"
"include/generic-musl/sys/inotify.h"
"include/generic-musl/sys/io.h"
"include/generic-musl/sys/ioctl.h"
"include/generic-musl/sys/ipc.h"
"include/generic-musl/sys/kd.h"
"include/generic-musl/sys/klog.h"
"include/generic-musl/sys/mman.h"
"include/generic-musl/sys/mount.h"
"include/generic-musl/sys/msg.h"
"include/generic-musl/sys/mtio.h"
"include/generic-musl/sys/param.h"
"include/generic-musl/sys/personality.h"
"include/generic-musl/sys/poll.h"
"include/generic-musl/sys/prctl.h"
"include/generic-musl/sys/procfs.h"
"include/generic-musl/sys/ptrace.h"
"include/generic-musl/sys/quota.h"
"include/generic-musl/sys/random.h"
"include/generic-musl/sys/reboot.h"
"include/generic-musl/sys/reg.h"
"include/generic-musl/sys/resource.h"
"include/generic-musl/sys/select.h"
"include/generic-musl/sys/sem.h"
"include/generic-musl/sys/sendfile.h"
"include/generic-musl/sys/shm.h"
"include/generic-musl/sys/signal.h"
"include/generic-musl/sys/signalfd.h"
"include/generic-musl/sys/socket.h"
"include/generic-musl/sys/soundcard.h"
"include/generic-musl/sys/stat.h"
"include/generic-musl/sys/statfs.h"
"include/generic-musl/sys/statvfs.h"
"include/generic-musl/sys/stropts.h"
"include/generic-musl/sys/swap.h"
"include/generic-musl/sys/syscall.h"
"include/generic-musl/sys/sysinfo.h"
"include/generic-musl/sys/syslog.h"
"include/generic-musl/sys/sysmacros.h"
"include/generic-musl/sys/termios.h"
"include/generic-musl/sys/time.h"
"include/generic-musl/sys/timeb.h"
"include/generic-musl/sys/timerfd.h"
"include/generic-musl/sys/times.h"
"include/generic-musl/sys/timex.h"
"include/generic-musl/sys/ttydefaults.h"
"include/generic-musl/sys/types.h"
"include/generic-musl/sys/ucontext.h"
"include/generic-musl/sys/uio.h"
"include/generic-musl/sys/un.h"
"include/generic-musl/sys/user.h"
"include/generic-musl/sys/utsname.h"
"include/generic-musl/sys/vfs.h"
"include/generic-musl/sys/vt.h"
"include/generic-musl/sys/wait.h"
"include/generic-musl/sys/xattr.h"
"include/generic-musl/syscall.h"
"include/generic-musl/sysexits.h"
"include/generic-musl/syslog.h"
"include/generic-musl/tar.h"
"include/generic-musl/termios.h"
"include/generic-musl/tgmath.h"
"include/generic-musl/threads.h"
"include/generic-musl/time.h"
"include/generic-musl/uchar.h"
"include/generic-musl/ucontext.h"
"include/generic-musl/ulimit.h"
"include/generic-musl/unistd.h"
"include/generic-musl/utime.h"
"include/generic-musl/utmp.h"
"include/generic-musl/utmpx.h"
"include/generic-musl/values.h"
"include/generic-musl/video/edid.h"
"include/generic-musl/video/sisfb.h"
"include/generic-musl/video/uvesafb.h"
"include/generic-musl/wait.h"
"include/generic-musl/wchar.h"
"include/generic-musl/wctype.h"
"include/generic-musl/wordexp.h"
"include/generic-musl/xen/evtchn.h"
"include/generic-musl/xen/gntalloc.h"
"include/generic-musl/xen/gntdev.h"
"include/generic-musl/xen/privcmd.h"
2019-03-07 09:16:10 -08:00
"include/i386-linux-gnu/asm/unistd.h"
"include/i386-linux-gnu/bits/a.out.h"
"include/i386-linux-gnu/bits/endian.h"
"include/i386-linux-gnu/bits/environments.h"
"include/i386-linux-gnu/bits/epoll.h"
"include/i386-linux-gnu/bits/fcntl.h"
"include/i386-linux-gnu/bits/fenv.h"
"include/i386-linux-gnu/bits/floatn.h"
"include/i386-linux-gnu/bits/flt-eval-method.h"
"include/i386-linux-gnu/bits/fp-logb.h"
"include/i386-linux-gnu/bits/indirect-return.h"
"include/i386-linux-gnu/bits/ipctypes.h"
"include/i386-linux-gnu/bits/iscanonical.h"
"include/i386-linux-gnu/bits/link.h"
"include/i386-linux-gnu/bits/long-double.h"
"include/i386-linux-gnu/bits/math-vector-fortran.h"
"include/i386-linux-gnu/bits/math-vector.h"
"include/i386-linux-gnu/bits/mman.h"
"include/i386-linux-gnu/bits/procfs-id.h"
"include/i386-linux-gnu/bits/procfs.h"
"include/i386-linux-gnu/bits/pthreadtypes-arch.h"
"include/i386-linux-gnu/bits/select.h"
"include/i386-linux-gnu/bits/sem-pad.h"
"include/i386-linux-gnu/bits/semaphore.h"
"include/i386-linux-gnu/bits/setjmp.h"
"include/i386-linux-gnu/bits/sigcontext.h"
"include/i386-linux-gnu/bits/siginfo-arch.h"
"include/i386-linux-gnu/bits/stat.h"
"include/i386-linux-gnu/bits/sysctl.h"
"include/i386-linux-gnu/bits/timesize.h"
"include/i386-linux-gnu/bits/typesizes.h"
"include/i386-linux-gnu/bits/wordsize.h"
"include/i386-linux-gnu/bits/xtitypes.h"
"include/i386-linux-gnu/fpu_control.h"
"include/i386-linux-gnu/gnu/lib-names.h"
"include/i386-linux-gnu/gnu/stubs.h"
"include/i386-linux-gnu/sys/elf.h"
"include/i386-linux-gnu/sys/io.h"
"include/i386-linux-gnu/sys/ptrace.h"
"include/i386-linux-gnu/sys/ucontext.h"
"include/i386-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/i386-linux-musl/asm/auxvec.h"
"include/i386-linux-musl/asm/bitsperlong.h"
"include/i386-linux-musl/asm/byteorder.h"
"include/i386-linux-musl/asm/kvm.h"
"include/i386-linux-musl/asm/kvm_para.h"
"include/i386-linux-musl/asm/mman.h"
"include/i386-linux-musl/asm/msgbuf.h"
"include/i386-linux-musl/asm/perf_regs.h"
"include/i386-linux-musl/asm/posix_types.h"
"include/i386-linux-musl/asm/ptrace.h"
"include/i386-linux-musl/asm/sembuf.h"
"include/i386-linux-musl/asm/setup.h"
"include/i386-linux-musl/asm/shmbuf.h"
"include/i386-linux-musl/asm/sigcontext.h"
"include/i386-linux-musl/asm/siginfo.h"
"include/i386-linux-musl/asm/signal.h"
"include/i386-linux-musl/asm/stat.h"
"include/i386-linux-musl/asm/statfs.h"
"include/i386-linux-musl/asm/swab.h"
"include/i386-linux-musl/asm/types.h"
"include/i386-linux-musl/asm/ucontext.h"
"include/i386-linux-musl/asm/unistd.h"
"include/i386-linux-musl/bfd.h"
"include/i386-linux-musl/bfd_stdint.h"
"include/i386-linux-musl/bits/alltypes.h"
"include/i386-linux-musl/bits/endian.h"
"include/i386-linux-musl/bits/fcntl.h"
"include/i386-linux-musl/bits/fenv.h"
"include/i386-linux-musl/bits/float.h"
"include/i386-linux-musl/bits/io.h"
"include/i386-linux-musl/bits/limits.h"
"include/i386-linux-musl/bits/mman.h"
"include/i386-linux-musl/bits/msg.h"
"include/i386-linux-musl/bits/ptrace.h"
"include/i386-linux-musl/bits/reg.h"
"include/i386-linux-musl/bits/setjmp.h"
"include/i386-linux-musl/bits/shm.h"
"include/i386-linux-musl/bits/signal.h"
"include/i386-linux-musl/bits/stdint.h"
"include/i386-linux-musl/bits/syscall.h"
"include/i386-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/mips-linux-gnu/asm/sgidefs.h"
"include/mips-linux-gnu/asm/unistd.h"
"include/mips-linux-gnu/bits/dlfcn.h"
"include/mips-linux-gnu/bits/errno.h"
"include/mips-linux-gnu/bits/eventfd.h"
"include/mips-linux-gnu/bits/inotify.h"
"include/mips-linux-gnu/bits/ioctl-types.h"
"include/mips-linux-gnu/bits/ipc.h"
"include/mips-linux-gnu/bits/ipctypes.h"
"include/mips-linux-gnu/bits/local_lim.h"
"include/mips-linux-gnu/bits/mman.h"
"include/mips-linux-gnu/bits/msq-pad.h"
"include/mips-linux-gnu/bits/poll.h"
"include/mips-linux-gnu/bits/resource.h"
"include/mips-linux-gnu/bits/sem-pad.h"
"include/mips-linux-gnu/bits/shm-pad.h"
"include/mips-linux-gnu/bits/shmlba.h"
"include/mips-linux-gnu/bits/sigaction.h"
"include/mips-linux-gnu/bits/sigcontext.h"
"include/mips-linux-gnu/bits/siginfo-arch.h"
"include/mips-linux-gnu/bits/signalfd.h"
"include/mips-linux-gnu/bits/signum.h"
"include/mips-linux-gnu/bits/socket_type.h"
"include/mips-linux-gnu/bits/statfs.h"
"include/mips-linux-gnu/bits/termios-c_cc.h"
"include/mips-linux-gnu/bits/termios-c_lflag.h"
"include/mips-linux-gnu/bits/termios-struct.h"
"include/mips-linux-gnu/bits/termios-tcflow.h"
"include/mips-linux-gnu/bits/timerfd.h"
"include/mips-linux-gnu/bits/types/stack_t.h"
"include/mips-linux-gnu/ieee754.h"
2019-03-12 07:28:05 -07:00
"include/mips-linux-musl/asm/auxvec.h"
"include/mips-linux-musl/asm/bitsperlong.h"
"include/mips-linux-musl/asm/byteorder.h"
"include/mips-linux-musl/asm/errno.h"
"include/mips-linux-musl/asm/fcntl.h"
"include/mips-linux-musl/asm/hwcap.h"
"include/mips-linux-musl/asm/ioctl.h"
"include/mips-linux-musl/asm/ioctls.h"
"include/mips-linux-musl/asm/kvm.h"
"include/mips-linux-musl/asm/kvm_para.h"
"include/mips-linux-musl/asm/mman.h"
"include/mips-linux-musl/asm/msgbuf.h"
"include/mips-linux-musl/asm/param.h"
"include/mips-linux-musl/asm/poll.h"
"include/mips-linux-musl/asm/posix_types.h"
"include/mips-linux-musl/asm/ptrace.h"
"include/mips-linux-musl/asm/resource.h"
"include/mips-linux-musl/asm/sembuf.h"
"include/mips-linux-musl/asm/setup.h"
"include/mips-linux-musl/asm/shmbuf.h"
"include/mips-linux-musl/asm/sigcontext.h"
"include/mips-linux-musl/asm/siginfo.h"
"include/mips-linux-musl/asm/signal.h"
"include/mips-linux-musl/asm/socket.h"
"include/mips-linux-musl/asm/sockios.h"
"include/mips-linux-musl/asm/stat.h"
"include/mips-linux-musl/asm/statfs.h"
"include/mips-linux-musl/asm/swab.h"
"include/mips-linux-musl/asm/termbits.h"
"include/mips-linux-musl/asm/termios.h"
"include/mips-linux-musl/asm/types.h"
"include/mips-linux-musl/asm/unistd.h"
"include/mips-linux-musl/bfd.h"
"include/mips-linux-musl/bfd_stdint.h"
"include/mips-linux-musl/bits/alltypes.h"
"include/mips-linux-musl/bits/endian.h"
"include/mips-linux-musl/bits/errno.h"
"include/mips-linux-musl/bits/fcntl.h"
"include/mips-linux-musl/bits/fenv.h"
"include/mips-linux-musl/bits/hwcap.h"
"include/mips-linux-musl/bits/ioctl.h"
"include/mips-linux-musl/bits/mman.h"
"include/mips-linux-musl/bits/msg.h"
"include/mips-linux-musl/bits/poll.h"
"include/mips-linux-musl/bits/ptrace.h"
"include/mips-linux-musl/bits/reg.h"
"include/mips-linux-musl/bits/resource.h"
"include/mips-linux-musl/bits/sem.h"
"include/mips-linux-musl/bits/setjmp.h"
"include/mips-linux-musl/bits/signal.h"
"include/mips-linux-musl/bits/socket.h"
"include/mips-linux-musl/bits/stat.h"
"include/mips-linux-musl/bits/statfs.h"
"include/mips-linux-musl/bits/stdint.h"
"include/mips-linux-musl/bits/syscall.h"
"include/mips-linux-musl/bits/termios.h"
"include/mips-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/mips64-linux-gnuabi64/asm/sgidefs.h"
"include/mips64-linux-gnuabi64/asm/unistd.h"
"include/mips64-linux-gnuabi64/bits/dlfcn.h"
"include/mips64-linux-gnuabi64/bits/errno.h"
"include/mips64-linux-gnuabi64/bits/eventfd.h"
"include/mips64-linux-gnuabi64/bits/inotify.h"
"include/mips64-linux-gnuabi64/bits/ioctl-types.h"
"include/mips64-linux-gnuabi64/bits/ipc.h"
"include/mips64-linux-gnuabi64/bits/ipctypes.h"
"include/mips64-linux-gnuabi64/bits/local_lim.h"
"include/mips64-linux-gnuabi64/bits/mman.h"
"include/mips64-linux-gnuabi64/bits/msq-pad.h"
"include/mips64-linux-gnuabi64/bits/poll.h"
"include/mips64-linux-gnuabi64/bits/resource.h"
"include/mips64-linux-gnuabi64/bits/sem-pad.h"
"include/mips64-linux-gnuabi64/bits/shm-pad.h"
"include/mips64-linux-gnuabi64/bits/shmlba.h"
"include/mips64-linux-gnuabi64/bits/sigaction.h"
"include/mips64-linux-gnuabi64/bits/sigcontext.h"
"include/mips64-linux-gnuabi64/bits/siginfo-arch.h"
"include/mips64-linux-gnuabi64/bits/signalfd.h"
"include/mips64-linux-gnuabi64/bits/signum.h"
"include/mips64-linux-gnuabi64/bits/socket_type.h"
"include/mips64-linux-gnuabi64/bits/statfs.h"
"include/mips64-linux-gnuabi64/bits/termios-c_cc.h"
"include/mips64-linux-gnuabi64/bits/termios-c_lflag.h"
"include/mips64-linux-gnuabi64/bits/termios-struct.h"
"include/mips64-linux-gnuabi64/bits/termios-tcflow.h"
"include/mips64-linux-gnuabi64/bits/timerfd.h"
"include/mips64-linux-gnuabi64/bits/types/stack_t.h"
"include/mips64-linux-gnuabi64/ieee754.h"
"include/mips64-linux-gnuabin32/asm/sgidefs.h"
"include/mips64-linux-gnuabin32/asm/unistd.h"
"include/mips64-linux-gnuabin32/bits/dlfcn.h"
"include/mips64-linux-gnuabin32/bits/errno.h"
"include/mips64-linux-gnuabin32/bits/eventfd.h"
"include/mips64-linux-gnuabin32/bits/inotify.h"
"include/mips64-linux-gnuabin32/bits/ioctl-types.h"
"include/mips64-linux-gnuabin32/bits/ipc.h"
"include/mips64-linux-gnuabin32/bits/ipctypes.h"
"include/mips64-linux-gnuabin32/bits/local_lim.h"
"include/mips64-linux-gnuabin32/bits/mman.h"
"include/mips64-linux-gnuabin32/bits/msq-pad.h"
"include/mips64-linux-gnuabin32/bits/poll.h"
"include/mips64-linux-gnuabin32/bits/resource.h"
"include/mips64-linux-gnuabin32/bits/sem-pad.h"
"include/mips64-linux-gnuabin32/bits/shm-pad.h"
"include/mips64-linux-gnuabin32/bits/shmlba.h"
"include/mips64-linux-gnuabin32/bits/sigaction.h"
"include/mips64-linux-gnuabin32/bits/sigcontext.h"
"include/mips64-linux-gnuabin32/bits/siginfo-arch.h"
"include/mips64-linux-gnuabin32/bits/signalfd.h"
"include/mips64-linux-gnuabin32/bits/signum.h"
"include/mips64-linux-gnuabin32/bits/socket_type.h"
"include/mips64-linux-gnuabin32/bits/statfs.h"
"include/mips64-linux-gnuabin32/bits/termios-c_cc.h"
"include/mips64-linux-gnuabin32/bits/termios-c_lflag.h"
"include/mips64-linux-gnuabin32/bits/termios-struct.h"
"include/mips64-linux-gnuabin32/bits/termios-tcflow.h"
"include/mips64-linux-gnuabin32/bits/timerfd.h"
"include/mips64-linux-gnuabin32/bits/types/stack_t.h"
"include/mips64-linux-gnuabin32/ieee754.h"
2019-03-12 07:28:05 -07:00
"include/mips64-linux-musl/asm/auxvec.h"
"include/mips64-linux-musl/asm/bitsperlong.h"
"include/mips64-linux-musl/asm/byteorder.h"
"include/mips64-linux-musl/asm/errno.h"
"include/mips64-linux-musl/asm/fcntl.h"
"include/mips64-linux-musl/asm/hwcap.h"
"include/mips64-linux-musl/asm/ioctl.h"
"include/mips64-linux-musl/asm/ioctls.h"
"include/mips64-linux-musl/asm/kvm.h"
"include/mips64-linux-musl/asm/kvm_para.h"
"include/mips64-linux-musl/asm/mman.h"
"include/mips64-linux-musl/asm/msgbuf.h"
"include/mips64-linux-musl/asm/param.h"
"include/mips64-linux-musl/asm/poll.h"
"include/mips64-linux-musl/asm/posix_types.h"
"include/mips64-linux-musl/asm/ptrace.h"
"include/mips64-linux-musl/asm/resource.h"
"include/mips64-linux-musl/asm/sembuf.h"
"include/mips64-linux-musl/asm/setup.h"
"include/mips64-linux-musl/asm/shmbuf.h"
"include/mips64-linux-musl/asm/sigcontext.h"
"include/mips64-linux-musl/asm/siginfo.h"
"include/mips64-linux-musl/asm/signal.h"
"include/mips64-linux-musl/asm/socket.h"
"include/mips64-linux-musl/asm/sockios.h"
"include/mips64-linux-musl/asm/stat.h"
"include/mips64-linux-musl/asm/statfs.h"
"include/mips64-linux-musl/asm/swab.h"
"include/mips64-linux-musl/asm/termbits.h"
"include/mips64-linux-musl/asm/termios.h"
"include/mips64-linux-musl/asm/types.h"
"include/mips64-linux-musl/asm/unistd.h"
"include/mips64-linux-musl/bfd_stdint.h"
"include/mips64-linux-musl/bits/alltypes.h"
"include/mips64-linux-musl/bits/endian.h"
"include/mips64-linux-musl/bits/errno.h"
"include/mips64-linux-musl/bits/fcntl.h"
"include/mips64-linux-musl/bits/fenv.h"
"include/mips64-linux-musl/bits/float.h"
"include/mips64-linux-musl/bits/hwcap.h"
"include/mips64-linux-musl/bits/ioctl.h"
"include/mips64-linux-musl/bits/ipc.h"
"include/mips64-linux-musl/bits/limits.h"
"include/mips64-linux-musl/bits/mman.h"
"include/mips64-linux-musl/bits/poll.h"
"include/mips64-linux-musl/bits/posix.h"
"include/mips64-linux-musl/bits/ptrace.h"
"include/mips64-linux-musl/bits/reg.h"
"include/mips64-linux-musl/bits/resource.h"
"include/mips64-linux-musl/bits/sem.h"
"include/mips64-linux-musl/bits/setjmp.h"
"include/mips64-linux-musl/bits/signal.h"
"include/mips64-linux-musl/bits/socket.h"
"include/mips64-linux-musl/bits/stat.h"
"include/mips64-linux-musl/bits/statfs.h"
"include/mips64-linux-musl/bits/syscall.h"
"include/mips64-linux-musl/bits/termios.h"
"include/mips64-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/mips64el-linux-gnuabi64/asm/sgidefs.h"
"include/mips64el-linux-gnuabi64/asm/unistd.h"
"include/mips64el-linux-gnuabi64/bits/dlfcn.h"
"include/mips64el-linux-gnuabi64/bits/errno.h"
"include/mips64el-linux-gnuabi64/bits/eventfd.h"
"include/mips64el-linux-gnuabi64/bits/inotify.h"
"include/mips64el-linux-gnuabi64/bits/ioctl-types.h"
"include/mips64el-linux-gnuabi64/bits/ipc.h"
"include/mips64el-linux-gnuabi64/bits/ipctypes.h"
"include/mips64el-linux-gnuabi64/bits/local_lim.h"
"include/mips64el-linux-gnuabi64/bits/mman.h"
"include/mips64el-linux-gnuabi64/bits/msq-pad.h"
"include/mips64el-linux-gnuabi64/bits/poll.h"
"include/mips64el-linux-gnuabi64/bits/resource.h"
"include/mips64el-linux-gnuabi64/bits/sem-pad.h"
"include/mips64el-linux-gnuabi64/bits/shm-pad.h"
"include/mips64el-linux-gnuabi64/bits/shmlba.h"
"include/mips64el-linux-gnuabi64/bits/sigaction.h"
"include/mips64el-linux-gnuabi64/bits/sigcontext.h"
"include/mips64el-linux-gnuabi64/bits/siginfo-arch.h"
"include/mips64el-linux-gnuabi64/bits/signalfd.h"
"include/mips64el-linux-gnuabi64/bits/signum.h"
"include/mips64el-linux-gnuabi64/bits/socket_type.h"
"include/mips64el-linux-gnuabi64/bits/statfs.h"
"include/mips64el-linux-gnuabi64/bits/termios-c_cc.h"
"include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h"
"include/mips64el-linux-gnuabi64/bits/termios-struct.h"
"include/mips64el-linux-gnuabi64/bits/termios-tcflow.h"
"include/mips64el-linux-gnuabi64/bits/timerfd.h"
"include/mips64el-linux-gnuabi64/bits/types/stack_t.h"
"include/mips64el-linux-gnuabi64/ieee754.h"
"include/mips64el-linux-gnuabin32/asm/sgidefs.h"
"include/mips64el-linux-gnuabin32/asm/unistd.h"
"include/mips64el-linux-gnuabin32/bits/dlfcn.h"
"include/mips64el-linux-gnuabin32/bits/errno.h"
"include/mips64el-linux-gnuabin32/bits/eventfd.h"
"include/mips64el-linux-gnuabin32/bits/inotify.h"
"include/mips64el-linux-gnuabin32/bits/ioctl-types.h"
"include/mips64el-linux-gnuabin32/bits/ipc.h"
"include/mips64el-linux-gnuabin32/bits/ipctypes.h"
"include/mips64el-linux-gnuabin32/bits/local_lim.h"
"include/mips64el-linux-gnuabin32/bits/mman.h"
"include/mips64el-linux-gnuabin32/bits/msq-pad.h"
"include/mips64el-linux-gnuabin32/bits/poll.h"
"include/mips64el-linux-gnuabin32/bits/resource.h"
"include/mips64el-linux-gnuabin32/bits/sem-pad.h"
"include/mips64el-linux-gnuabin32/bits/shm-pad.h"
"include/mips64el-linux-gnuabin32/bits/shmlba.h"
"include/mips64el-linux-gnuabin32/bits/sigaction.h"
"include/mips64el-linux-gnuabin32/bits/sigcontext.h"
"include/mips64el-linux-gnuabin32/bits/siginfo-arch.h"
"include/mips64el-linux-gnuabin32/bits/signalfd.h"
"include/mips64el-linux-gnuabin32/bits/signum.h"
"include/mips64el-linux-gnuabin32/bits/socket_type.h"
"include/mips64el-linux-gnuabin32/bits/statfs.h"
"include/mips64el-linux-gnuabin32/bits/termios-c_cc.h"
"include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h"
"include/mips64el-linux-gnuabin32/bits/termios-struct.h"
"include/mips64el-linux-gnuabin32/bits/termios-tcflow.h"
"include/mips64el-linux-gnuabin32/bits/timerfd.h"
"include/mips64el-linux-gnuabin32/bits/types/stack_t.h"
"include/mips64el-linux-gnuabin32/ieee754.h"
2019-03-12 07:28:05 -07:00
"include/mips64el-linux-musl/asm/auxvec.h"
"include/mips64el-linux-musl/asm/bitsperlong.h"
"include/mips64el-linux-musl/asm/byteorder.h"
"include/mips64el-linux-musl/asm/errno.h"
"include/mips64el-linux-musl/asm/fcntl.h"
"include/mips64el-linux-musl/asm/hwcap.h"
"include/mips64el-linux-musl/asm/ioctl.h"
"include/mips64el-linux-musl/asm/ioctls.h"
"include/mips64el-linux-musl/asm/kvm.h"
"include/mips64el-linux-musl/asm/kvm_para.h"
"include/mips64el-linux-musl/asm/mman.h"
"include/mips64el-linux-musl/asm/msgbuf.h"
"include/mips64el-linux-musl/asm/param.h"
"include/mips64el-linux-musl/asm/poll.h"
"include/mips64el-linux-musl/asm/posix_types.h"
"include/mips64el-linux-musl/asm/ptrace.h"
"include/mips64el-linux-musl/asm/resource.h"
"include/mips64el-linux-musl/asm/sembuf.h"
"include/mips64el-linux-musl/asm/setup.h"
"include/mips64el-linux-musl/asm/shmbuf.h"
"include/mips64el-linux-musl/asm/sigcontext.h"
"include/mips64el-linux-musl/asm/siginfo.h"
"include/mips64el-linux-musl/asm/signal.h"
"include/mips64el-linux-musl/asm/socket.h"
"include/mips64el-linux-musl/asm/sockios.h"
"include/mips64el-linux-musl/asm/stat.h"
"include/mips64el-linux-musl/asm/statfs.h"
"include/mips64el-linux-musl/asm/swab.h"
"include/mips64el-linux-musl/asm/termbits.h"
"include/mips64el-linux-musl/asm/termios.h"
"include/mips64el-linux-musl/asm/types.h"
"include/mips64el-linux-musl/asm/unistd.h"
"include/mips64el-linux-musl/bfd_stdint.h"
"include/mips64el-linux-musl/bits/alltypes.h"
"include/mips64el-linux-musl/bits/endian.h"
"include/mips64el-linux-musl/bits/errno.h"
"include/mips64el-linux-musl/bits/fcntl.h"
"include/mips64el-linux-musl/bits/fenv.h"
"include/mips64el-linux-musl/bits/float.h"
"include/mips64el-linux-musl/bits/hwcap.h"
"include/mips64el-linux-musl/bits/ioctl.h"
"include/mips64el-linux-musl/bits/ipc.h"
"include/mips64el-linux-musl/bits/limits.h"
"include/mips64el-linux-musl/bits/mman.h"
"include/mips64el-linux-musl/bits/poll.h"
"include/mips64el-linux-musl/bits/posix.h"
"include/mips64el-linux-musl/bits/ptrace.h"
"include/mips64el-linux-musl/bits/reg.h"
"include/mips64el-linux-musl/bits/resource.h"
"include/mips64el-linux-musl/bits/sem.h"
"include/mips64el-linux-musl/bits/setjmp.h"
"include/mips64el-linux-musl/bits/signal.h"
"include/mips64el-linux-musl/bits/socket.h"
"include/mips64el-linux-musl/bits/stat.h"
"include/mips64el-linux-musl/bits/statfs.h"
"include/mips64el-linux-musl/bits/syscall.h"
"include/mips64el-linux-musl/bits/termios.h"
"include/mips64el-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/mipsel-linux-gnu/asm/sgidefs.h"
"include/mipsel-linux-gnu/asm/unistd.h"
"include/mipsel-linux-gnu/bits/dlfcn.h"
"include/mipsel-linux-gnu/bits/errno.h"
"include/mipsel-linux-gnu/bits/eventfd.h"
"include/mipsel-linux-gnu/bits/inotify.h"
"include/mipsel-linux-gnu/bits/ioctl-types.h"
"include/mipsel-linux-gnu/bits/ipc.h"
"include/mipsel-linux-gnu/bits/ipctypes.h"
"include/mipsel-linux-gnu/bits/local_lim.h"
"include/mipsel-linux-gnu/bits/mman.h"
"include/mipsel-linux-gnu/bits/msq-pad.h"
"include/mipsel-linux-gnu/bits/poll.h"
"include/mipsel-linux-gnu/bits/resource.h"
"include/mipsel-linux-gnu/bits/sem-pad.h"
"include/mipsel-linux-gnu/bits/shm-pad.h"
"include/mipsel-linux-gnu/bits/shmlba.h"
"include/mipsel-linux-gnu/bits/sigaction.h"
"include/mipsel-linux-gnu/bits/sigcontext.h"
"include/mipsel-linux-gnu/bits/siginfo-arch.h"
"include/mipsel-linux-gnu/bits/signalfd.h"
"include/mipsel-linux-gnu/bits/signum.h"
"include/mipsel-linux-gnu/bits/socket_type.h"
"include/mipsel-linux-gnu/bits/statfs.h"
"include/mipsel-linux-gnu/bits/termios-c_cc.h"
"include/mipsel-linux-gnu/bits/termios-c_lflag.h"
"include/mipsel-linux-gnu/bits/termios-struct.h"
"include/mipsel-linux-gnu/bits/termios-tcflow.h"
"include/mipsel-linux-gnu/bits/timerfd.h"
"include/mipsel-linux-gnu/bits/types/stack_t.h"
"include/mipsel-linux-gnu/ieee754.h"
2019-03-12 07:28:05 -07:00
"include/mipsel-linux-musl/asm/auxvec.h"
"include/mipsel-linux-musl/asm/bitsperlong.h"
"include/mipsel-linux-musl/asm/byteorder.h"
"include/mipsel-linux-musl/asm/errno.h"
"include/mipsel-linux-musl/asm/fcntl.h"
"include/mipsel-linux-musl/asm/hwcap.h"
"include/mipsel-linux-musl/asm/ioctl.h"
"include/mipsel-linux-musl/asm/ioctls.h"
"include/mipsel-linux-musl/asm/kvm.h"
"include/mipsel-linux-musl/asm/kvm_para.h"
"include/mipsel-linux-musl/asm/mman.h"
"include/mipsel-linux-musl/asm/msgbuf.h"
"include/mipsel-linux-musl/asm/param.h"
"include/mipsel-linux-musl/asm/poll.h"
"include/mipsel-linux-musl/asm/posix_types.h"
"include/mipsel-linux-musl/asm/ptrace.h"
"include/mipsel-linux-musl/asm/resource.h"
"include/mipsel-linux-musl/asm/sembuf.h"
"include/mipsel-linux-musl/asm/setup.h"
"include/mipsel-linux-musl/asm/shmbuf.h"
"include/mipsel-linux-musl/asm/sigcontext.h"
"include/mipsel-linux-musl/asm/siginfo.h"
"include/mipsel-linux-musl/asm/signal.h"
"include/mipsel-linux-musl/asm/socket.h"
"include/mipsel-linux-musl/asm/sockios.h"
"include/mipsel-linux-musl/asm/stat.h"
"include/mipsel-linux-musl/asm/statfs.h"
"include/mipsel-linux-musl/asm/swab.h"
"include/mipsel-linux-musl/asm/termbits.h"
"include/mipsel-linux-musl/asm/termios.h"
"include/mipsel-linux-musl/asm/types.h"
"include/mipsel-linux-musl/asm/unistd.h"
"include/mipsel-linux-musl/bfd.h"
"include/mipsel-linux-musl/bfd_stdint.h"
"include/mipsel-linux-musl/bits/alltypes.h"
"include/mipsel-linux-musl/bits/endian.h"
"include/mipsel-linux-musl/bits/errno.h"
"include/mipsel-linux-musl/bits/fcntl.h"
"include/mipsel-linux-musl/bits/fenv.h"
"include/mipsel-linux-musl/bits/hwcap.h"
"include/mipsel-linux-musl/bits/ioctl.h"
"include/mipsel-linux-musl/bits/mman.h"
"include/mipsel-linux-musl/bits/msg.h"
"include/mipsel-linux-musl/bits/poll.h"
"include/mipsel-linux-musl/bits/ptrace.h"
"include/mipsel-linux-musl/bits/reg.h"
"include/mipsel-linux-musl/bits/resource.h"
"include/mipsel-linux-musl/bits/sem.h"
"include/mipsel-linux-musl/bits/setjmp.h"
"include/mipsel-linux-musl/bits/signal.h"
"include/mipsel-linux-musl/bits/socket.h"
"include/mipsel-linux-musl/bits/stat.h"
"include/mipsel-linux-musl/bits/statfs.h"
"include/mipsel-linux-musl/bits/stdint.h"
"include/mipsel-linux-musl/bits/syscall.h"
"include/mipsel-linux-musl/bits/termios.h"
"include/mipsel-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/nios2-linux-gnu/asm/unistd.h"
"include/nios2-linux-gnu/bits/endian.h"
"include/nios2-linux-gnu/bits/fcntl.h"
"include/nios2-linux-gnu/bits/fenv.h"
"include/nios2-linux-gnu/bits/floatn.h"
"include/nios2-linux-gnu/bits/link.h"
"include/nios2-linux-gnu/bits/long-double.h"
"include/nios2-linux-gnu/bits/procfs.h"
"include/nios2-linux-gnu/bits/pthreadtypes-arch.h"
"include/nios2-linux-gnu/bits/semaphore.h"
"include/nios2-linux-gnu/bits/setjmp.h"
"include/nios2-linux-gnu/bits/stat.h"
"include/nios2-linux-gnu/bits/statfs.h"
"include/nios2-linux-gnu/bits/typesizes.h"
"include/nios2-linux-gnu/bits/wordsize.h"
"include/nios2-linux-gnu/fpu_control.h"
"include/nios2-linux-gnu/gnu/lib-names.h"
"include/nios2-linux-gnu/gnu/stubs.h"
"include/nios2-linux-gnu/sys/cachectl.h"
"include/nios2-linux-gnu/sys/ucontext.h"
"include/nios2-linux-gnu/sys/user.h"
"include/powerpc-linux-gnu/asm/unistd.h"
"include/powerpc-linux-gnu/bits/endian.h"
"include/powerpc-linux-gnu/bits/environments.h"
"include/powerpc-linux-gnu/bits/fcntl.h"
"include/powerpc-linux-gnu/bits/fenv.h"
"include/powerpc-linux-gnu/bits/fenvinline.h"
"include/powerpc-linux-gnu/bits/floatn.h"
"include/powerpc-linux-gnu/bits/fp-fast.h"
"include/powerpc-linux-gnu/bits/hwcap.h"
"include/powerpc-linux-gnu/bits/ioctl-types.h"
"include/powerpc-linux-gnu/bits/ipc.h"
"include/powerpc-linux-gnu/bits/iscanonical.h"
"include/powerpc-linux-gnu/bits/link.h"
"include/powerpc-linux-gnu/bits/local_lim.h"
"include/powerpc-linux-gnu/bits/long-double.h"
"include/powerpc-linux-gnu/bits/mman.h"
"include/powerpc-linux-gnu/bits/msq-pad.h"
"include/powerpc-linux-gnu/bits/procfs.h"
"include/powerpc-linux-gnu/bits/pthreadtypes-arch.h"
"include/powerpc-linux-gnu/bits/sem-pad.h"
"include/powerpc-linux-gnu/bits/semaphore.h"
"include/powerpc-linux-gnu/bits/setjmp.h"
"include/powerpc-linux-gnu/bits/shm-pad.h"
"include/powerpc-linux-gnu/bits/sigstack.h"
"include/powerpc-linux-gnu/bits/stat.h"
"include/powerpc-linux-gnu/bits/termios-baud.h"
"include/powerpc-linux-gnu/bits/termios-c_cc.h"
"include/powerpc-linux-gnu/bits/termios-c_cflag.h"
"include/powerpc-linux-gnu/bits/termios-c_iflag.h"
"include/powerpc-linux-gnu/bits/termios-c_lflag.h"
"include/powerpc-linux-gnu/bits/termios-c_oflag.h"
"include/powerpc-linux-gnu/bits/termios-misc.h"
"include/powerpc-linux-gnu/bits/wordsize.h"
"include/powerpc-linux-gnu/fpu_control.h"
"include/powerpc-linux-gnu/gnu/lib-names-32.h"
"include/powerpc-linux-gnu/gnu/lib-names.h"
"include/powerpc-linux-gnu/gnu/stubs.h"
"include/powerpc-linux-gnu/ieee754.h"
"include/powerpc-linux-gnu/sys/ptrace.h"
"include/powerpc-linux-gnu/sys/ucontext.h"
"include/powerpc-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/powerpc-linux-musl/asm/auxvec.h"
"include/powerpc-linux-musl/asm/bitsperlong.h"
"include/powerpc-linux-musl/asm/byteorder.h"
"include/powerpc-linux-musl/asm/errno.h"
"include/powerpc-linux-musl/asm/fcntl.h"
"include/powerpc-linux-musl/asm/ioctl.h"
"include/powerpc-linux-musl/asm/ioctls.h"
"include/powerpc-linux-musl/asm/ipcbuf.h"
"include/powerpc-linux-musl/asm/kvm.h"
"include/powerpc-linux-musl/asm/kvm_para.h"
"include/powerpc-linux-musl/asm/mman.h"
"include/powerpc-linux-musl/asm/msgbuf.h"
"include/powerpc-linux-musl/asm/perf_regs.h"
"include/powerpc-linux-musl/asm/posix_types.h"
"include/powerpc-linux-musl/asm/ptrace.h"
"include/powerpc-linux-musl/asm/sembuf.h"
"include/powerpc-linux-musl/asm/setup.h"
"include/powerpc-linux-musl/asm/shmbuf.h"
"include/powerpc-linux-musl/asm/sigcontext.h"
"include/powerpc-linux-musl/asm/siginfo.h"
"include/powerpc-linux-musl/asm/signal.h"
"include/powerpc-linux-musl/asm/socket.h"
"include/powerpc-linux-musl/asm/stat.h"
"include/powerpc-linux-musl/asm/swab.h"
"include/powerpc-linux-musl/asm/termbits.h"
"include/powerpc-linux-musl/asm/termios.h"
"include/powerpc-linux-musl/asm/types.h"
"include/powerpc-linux-musl/asm/ucontext.h"
"include/powerpc-linux-musl/asm/unistd.h"
"include/powerpc-linux-musl/bfd.h"
"include/powerpc-linux-musl/bfd_stdint.h"
"include/powerpc-linux-musl/bits/alltypes.h"
"include/powerpc-linux-musl/bits/endian.h"
"include/powerpc-linux-musl/bits/errno.h"
"include/powerpc-linux-musl/bits/fcntl.h"
"include/powerpc-linux-musl/bits/fenv.h"
"include/powerpc-linux-musl/bits/hwcap.h"
"include/powerpc-linux-musl/bits/ioctl.h"
"include/powerpc-linux-musl/bits/ipc.h"
"include/powerpc-linux-musl/bits/mman.h"
"include/powerpc-linux-musl/bits/msg.h"
"include/powerpc-linux-musl/bits/ptrace.h"
"include/powerpc-linux-musl/bits/sem.h"
"include/powerpc-linux-musl/bits/setjmp.h"
"include/powerpc-linux-musl/bits/shm.h"
"include/powerpc-linux-musl/bits/signal.h"
"include/powerpc-linux-musl/bits/socket.h"
"include/powerpc-linux-musl/bits/stat.h"
"include/powerpc-linux-musl/bits/stdint.h"
"include/powerpc-linux-musl/bits/syscall.h"
"include/powerpc-linux-musl/bits/termios.h"
"include/powerpc-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/powerpc64-linux-gnu/asm/unistd.h"
"include/powerpc64-linux-gnu/bits/endian.h"
"include/powerpc64-linux-gnu/bits/environments.h"
"include/powerpc64-linux-gnu/bits/fcntl.h"
"include/powerpc64-linux-gnu/bits/fenv.h"
"include/powerpc64-linux-gnu/bits/fenvinline.h"
"include/powerpc64-linux-gnu/bits/floatn.h"
"include/powerpc64-linux-gnu/bits/fp-fast.h"
"include/powerpc64-linux-gnu/bits/hwcap.h"
"include/powerpc64-linux-gnu/bits/ioctl-types.h"
"include/powerpc64-linux-gnu/bits/ipc.h"
"include/powerpc64-linux-gnu/bits/iscanonical.h"
"include/powerpc64-linux-gnu/bits/link.h"
"include/powerpc64-linux-gnu/bits/local_lim.h"
"include/powerpc64-linux-gnu/bits/long-double.h"
"include/powerpc64-linux-gnu/bits/mman.h"
"include/powerpc64-linux-gnu/bits/msq-pad.h"
"include/powerpc64-linux-gnu/bits/procfs.h"
"include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h"
"include/powerpc64-linux-gnu/bits/sem-pad.h"
"include/powerpc64-linux-gnu/bits/semaphore.h"
"include/powerpc64-linux-gnu/bits/setjmp.h"
"include/powerpc64-linux-gnu/bits/shm-pad.h"
"include/powerpc64-linux-gnu/bits/sigstack.h"
"include/powerpc64-linux-gnu/bits/stat.h"
"include/powerpc64-linux-gnu/bits/termios-baud.h"
"include/powerpc64-linux-gnu/bits/termios-c_cc.h"
"include/powerpc64-linux-gnu/bits/termios-c_cflag.h"
"include/powerpc64-linux-gnu/bits/termios-c_iflag.h"
"include/powerpc64-linux-gnu/bits/termios-c_lflag.h"
"include/powerpc64-linux-gnu/bits/termios-c_oflag.h"
"include/powerpc64-linux-gnu/bits/termios-misc.h"
"include/powerpc64-linux-gnu/bits/wordsize.h"
"include/powerpc64-linux-gnu/fpu_control.h"
"include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h"
"include/powerpc64-linux-gnu/gnu/lib-names.h"
"include/powerpc64-linux-gnu/gnu/stubs-64-v1.h"
"include/powerpc64-linux-gnu/gnu/stubs.h"
"include/powerpc64-linux-gnu/ieee754.h"
"include/powerpc64-linux-gnu/sys/ptrace.h"
"include/powerpc64-linux-gnu/sys/ucontext.h"
"include/powerpc64-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/powerpc64-linux-musl/asm/auxvec.h"
"include/powerpc64-linux-musl/asm/bitsperlong.h"
"include/powerpc64-linux-musl/asm/byteorder.h"
"include/powerpc64-linux-musl/asm/errno.h"
"include/powerpc64-linux-musl/asm/fcntl.h"
"include/powerpc64-linux-musl/asm/ioctl.h"
"include/powerpc64-linux-musl/asm/ioctls.h"
"include/powerpc64-linux-musl/asm/ipcbuf.h"
"include/powerpc64-linux-musl/asm/kvm.h"
"include/powerpc64-linux-musl/asm/kvm_para.h"
"include/powerpc64-linux-musl/asm/mman.h"
"include/powerpc64-linux-musl/asm/msgbuf.h"
"include/powerpc64-linux-musl/asm/perf_regs.h"
"include/powerpc64-linux-musl/asm/posix_types.h"
"include/powerpc64-linux-musl/asm/ptrace.h"
"include/powerpc64-linux-musl/asm/sembuf.h"
"include/powerpc64-linux-musl/asm/setup.h"
"include/powerpc64-linux-musl/asm/shmbuf.h"
"include/powerpc64-linux-musl/asm/sigcontext.h"
"include/powerpc64-linux-musl/asm/siginfo.h"
"include/powerpc64-linux-musl/asm/signal.h"
"include/powerpc64-linux-musl/asm/socket.h"
"include/powerpc64-linux-musl/asm/stat.h"
"include/powerpc64-linux-musl/asm/swab.h"
"include/powerpc64-linux-musl/asm/termbits.h"
"include/powerpc64-linux-musl/asm/termios.h"
"include/powerpc64-linux-musl/asm/types.h"
"include/powerpc64-linux-musl/asm/ucontext.h"
"include/powerpc64-linux-musl/asm/unistd.h"
"include/powerpc64-linux-musl/bfd_stdint.h"
"include/powerpc64-linux-musl/bits/alltypes.h"
"include/powerpc64-linux-musl/bits/endian.h"
"include/powerpc64-linux-musl/bits/errno.h"
"include/powerpc64-linux-musl/bits/fcntl.h"
"include/powerpc64-linux-musl/bits/fenv.h"
"include/powerpc64-linux-musl/bits/hwcap.h"
"include/powerpc64-linux-musl/bits/ioctl.h"
"include/powerpc64-linux-musl/bits/ipc.h"
"include/powerpc64-linux-musl/bits/limits.h"
"include/powerpc64-linux-musl/bits/mman.h"
"include/powerpc64-linux-musl/bits/msg.h"
"include/powerpc64-linux-musl/bits/posix.h"
"include/powerpc64-linux-musl/bits/ptrace.h"
"include/powerpc64-linux-musl/bits/reg.h"
"include/powerpc64-linux-musl/bits/sem.h"
"include/powerpc64-linux-musl/bits/setjmp.h"
"include/powerpc64-linux-musl/bits/shm.h"
"include/powerpc64-linux-musl/bits/signal.h"
"include/powerpc64-linux-musl/bits/socket.h"
"include/powerpc64-linux-musl/bits/stat.h"
"include/powerpc64-linux-musl/bits/syscall.h"
"include/powerpc64-linux-musl/bits/termios.h"
"include/powerpc64-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/powerpc64le-linux-gnu/asm/unistd.h"
"include/powerpc64le-linux-gnu/bits/endian.h"
"include/powerpc64le-linux-gnu/bits/environments.h"
"include/powerpc64le-linux-gnu/bits/fcntl.h"
"include/powerpc64le-linux-gnu/bits/fenv.h"
"include/powerpc64le-linux-gnu/bits/fenvinline.h"
"include/powerpc64le-linux-gnu/bits/floatn.h"
"include/powerpc64le-linux-gnu/bits/fp-fast.h"
"include/powerpc64le-linux-gnu/bits/hwcap.h"
"include/powerpc64le-linux-gnu/bits/ioctl-types.h"
"include/powerpc64le-linux-gnu/bits/ipc.h"
"include/powerpc64le-linux-gnu/bits/iscanonical.h"
"include/powerpc64le-linux-gnu/bits/link.h"
"include/powerpc64le-linux-gnu/bits/local_lim.h"
"include/powerpc64le-linux-gnu/bits/long-double.h"
"include/powerpc64le-linux-gnu/bits/mman.h"
"include/powerpc64le-linux-gnu/bits/msq-pad.h"
"include/powerpc64le-linux-gnu/bits/procfs.h"
"include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h"
"include/powerpc64le-linux-gnu/bits/sem-pad.h"
"include/powerpc64le-linux-gnu/bits/semaphore.h"
"include/powerpc64le-linux-gnu/bits/setjmp.h"
"include/powerpc64le-linux-gnu/bits/shm-pad.h"
"include/powerpc64le-linux-gnu/bits/sigstack.h"
"include/powerpc64le-linux-gnu/bits/stat.h"
"include/powerpc64le-linux-gnu/bits/termios-baud.h"
"include/powerpc64le-linux-gnu/bits/termios-c_cc.h"
"include/powerpc64le-linux-gnu/bits/termios-c_cflag.h"
"include/powerpc64le-linux-gnu/bits/termios-c_iflag.h"
"include/powerpc64le-linux-gnu/bits/termios-c_lflag.h"
"include/powerpc64le-linux-gnu/bits/termios-c_oflag.h"
"include/powerpc64le-linux-gnu/bits/termios-misc.h"
"include/powerpc64le-linux-gnu/bits/wordsize.h"
"include/powerpc64le-linux-gnu/fpu_control.h"
"include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h"
"include/powerpc64le-linux-gnu/gnu/lib-names.h"
"include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h"
"include/powerpc64le-linux-gnu/gnu/stubs.h"
"include/powerpc64le-linux-gnu/ieee754.h"
"include/powerpc64le-linux-gnu/sys/ptrace.h"
"include/powerpc64le-linux-gnu/sys/ucontext.h"
"include/powerpc64le-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/powerpc64le-linux-musl/asm/auxvec.h"
"include/powerpc64le-linux-musl/asm/bitsperlong.h"
"include/powerpc64le-linux-musl/asm/byteorder.h"
"include/powerpc64le-linux-musl/asm/errno.h"
"include/powerpc64le-linux-musl/asm/fcntl.h"
"include/powerpc64le-linux-musl/asm/ioctl.h"
"include/powerpc64le-linux-musl/asm/ioctls.h"
"include/powerpc64le-linux-musl/asm/ipcbuf.h"
"include/powerpc64le-linux-musl/asm/kvm.h"
"include/powerpc64le-linux-musl/asm/kvm_para.h"
"include/powerpc64le-linux-musl/asm/mman.h"
"include/powerpc64le-linux-musl/asm/msgbuf.h"
"include/powerpc64le-linux-musl/asm/perf_regs.h"
"include/powerpc64le-linux-musl/asm/posix_types.h"
"include/powerpc64le-linux-musl/asm/ptrace.h"
"include/powerpc64le-linux-musl/asm/sembuf.h"
"include/powerpc64le-linux-musl/asm/setup.h"
"include/powerpc64le-linux-musl/asm/shmbuf.h"
"include/powerpc64le-linux-musl/asm/sigcontext.h"
"include/powerpc64le-linux-musl/asm/siginfo.h"
"include/powerpc64le-linux-musl/asm/signal.h"
"include/powerpc64le-linux-musl/asm/socket.h"
"include/powerpc64le-linux-musl/asm/stat.h"
"include/powerpc64le-linux-musl/asm/swab.h"
"include/powerpc64le-linux-musl/asm/termbits.h"
"include/powerpc64le-linux-musl/asm/termios.h"
"include/powerpc64le-linux-musl/asm/types.h"
"include/powerpc64le-linux-musl/asm/ucontext.h"
"include/powerpc64le-linux-musl/asm/unistd.h"
"include/powerpc64le-linux-musl/bfd_stdint.h"
"include/powerpc64le-linux-musl/bits/alltypes.h"
"include/powerpc64le-linux-musl/bits/endian.h"
"include/powerpc64le-linux-musl/bits/errno.h"
"include/powerpc64le-linux-musl/bits/fcntl.h"
"include/powerpc64le-linux-musl/bits/fenv.h"
"include/powerpc64le-linux-musl/bits/hwcap.h"
"include/powerpc64le-linux-musl/bits/ioctl.h"
"include/powerpc64le-linux-musl/bits/ipc.h"
"include/powerpc64le-linux-musl/bits/limits.h"
"include/powerpc64le-linux-musl/bits/mman.h"
"include/powerpc64le-linux-musl/bits/msg.h"
"include/powerpc64le-linux-musl/bits/posix.h"
"include/powerpc64le-linux-musl/bits/ptrace.h"
"include/powerpc64le-linux-musl/bits/reg.h"
"include/powerpc64le-linux-musl/bits/sem.h"
"include/powerpc64le-linux-musl/bits/setjmp.h"
"include/powerpc64le-linux-musl/bits/shm.h"
"include/powerpc64le-linux-musl/bits/signal.h"
"include/powerpc64le-linux-musl/bits/socket.h"
"include/powerpc64le-linux-musl/bits/stat.h"
"include/powerpc64le-linux-musl/bits/syscall.h"
"include/powerpc64le-linux-musl/bits/termios.h"
"include/powerpc64le-linux-musl/bits/user.h"
"include/riscv32-linux-musl/asm/auxvec.h"
"include/riscv32-linux-musl/asm/bitsperlong.h"
"include/riscv32-linux-musl/asm/byteorder.h"
"include/riscv32-linux-musl/asm/elf.h"
"include/riscv32-linux-musl/asm/hwcap.h"
"include/riscv32-linux-musl/asm/posix_types.h"
"include/riscv32-linux-musl/asm/ptrace.h"
"include/riscv32-linux-musl/asm/setup.h"
"include/riscv32-linux-musl/asm/sigcontext.h"
"include/riscv32-linux-musl/asm/siginfo.h"
"include/riscv32-linux-musl/asm/signal.h"
"include/riscv32-linux-musl/asm/stat.h"
"include/riscv32-linux-musl/asm/ucontext.h"
"include/riscv32-linux-musl/asm/unistd.h"
"include/riscv32-linux-musl/bfd.h"
"include/riscv32-linux-musl/bfd_stdint.h"
"include/riscv32-linux-musl/bits/alltypes.h"
"include/riscv32-linux-musl/bits/endian.h"
"include/riscv32-linux-musl/bits/fenv.h"
"include/riscv32-linux-musl/bits/float.h"
"include/riscv32-linux-musl/bits/ipc.h"
"include/riscv32-linux-musl/bits/posix.h"
"include/riscv32-linux-musl/bits/reg.h"
"include/riscv32-linux-musl/bits/sem.h"
"include/riscv32-linux-musl/bits/setjmp.h"
"include/riscv32-linux-musl/bits/shm.h"
"include/riscv32-linux-musl/bits/signal.h"
"include/riscv32-linux-musl/bits/socket.h"
"include/riscv32-linux-musl/bits/stat.h"
"include/riscv32-linux-musl/bits/stdint.h"
"include/riscv32-linux-musl/bits/syscall.h"
"include/riscv32-linux-musl/bits/user.h"
"include/riscv32-linux-musl/elf.h"
"include/riscv32-linux-musl/netinet/tcp.h"
"include/riscv32-linux-musl/netinet/udp.h"
"include/riscv32-linux-musl/signal.h"
"include/riscv32-linux-musl/sys/signalfd.h"
"include/riscv32-linux-musl/sys/socket.h"
2019-03-07 09:16:10 -08:00
"include/riscv64-linux-gnu/asm/unistd.h"
"include/riscv64-linux-gnu/bits/endian.h"
"include/riscv64-linux-gnu/bits/fcntl.h"
"include/riscv64-linux-gnu/bits/fenv.h"
"include/riscv64-linux-gnu/bits/floatn.h"
"include/riscv64-linux-gnu/bits/link.h"
"include/riscv64-linux-gnu/bits/long-double.h"
"include/riscv64-linux-gnu/bits/procfs.h"
"include/riscv64-linux-gnu/bits/pthreadtypes-arch.h"
"include/riscv64-linux-gnu/bits/semaphore.h"
"include/riscv64-linux-gnu/bits/setjmp.h"
"include/riscv64-linux-gnu/bits/sigcontext.h"
"include/riscv64-linux-gnu/bits/stat.h"
"include/riscv64-linux-gnu/bits/statfs.h"
"include/riscv64-linux-gnu/bits/typesizes.h"
"include/riscv64-linux-gnu/bits/wordsize.h"
"include/riscv64-linux-gnu/fpu_control.h"
"include/riscv64-linux-gnu/gnu/lib-names-lp64.h"
"include/riscv64-linux-gnu/gnu/lib-names.h"
"include/riscv64-linux-gnu/gnu/stubs-lp64.h"
"include/riscv64-linux-gnu/gnu/stubs.h"
"include/riscv64-linux-gnu/ieee754.h"
"include/riscv64-linux-gnu/sys/asm.h"
"include/riscv64-linux-gnu/sys/cachectl.h"
"include/riscv64-linux-gnu/sys/ucontext.h"
"include/riscv64-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/riscv64-linux-musl/asm/auxvec.h"
"include/riscv64-linux-musl/asm/bitsperlong.h"
"include/riscv64-linux-musl/asm/byteorder.h"
"include/riscv64-linux-musl/asm/elf.h"
"include/riscv64-linux-musl/asm/hwcap.h"
"include/riscv64-linux-musl/asm/posix_types.h"
"include/riscv64-linux-musl/asm/ptrace.h"
"include/riscv64-linux-musl/asm/setup.h"
"include/riscv64-linux-musl/asm/sigcontext.h"
"include/riscv64-linux-musl/asm/siginfo.h"
"include/riscv64-linux-musl/asm/signal.h"
"include/riscv64-linux-musl/asm/stat.h"
"include/riscv64-linux-musl/asm/ucontext.h"
"include/riscv64-linux-musl/asm/unistd.h"
"include/riscv64-linux-musl/bfd_stdint.h"
"include/riscv64-linux-musl/bits/alltypes.h"
"include/riscv64-linux-musl/bits/endian.h"
"include/riscv64-linux-musl/bits/fenv.h"
"include/riscv64-linux-musl/bits/float.h"
"include/riscv64-linux-musl/bits/ipc.h"
"include/riscv64-linux-musl/bits/limits.h"
"include/riscv64-linux-musl/bits/mman.h"
"include/riscv64-linux-musl/bits/posix.h"
"include/riscv64-linux-musl/bits/reg.h"
"include/riscv64-linux-musl/bits/sem.h"
"include/riscv64-linux-musl/bits/setjmp.h"
"include/riscv64-linux-musl/bits/shm.h"
"include/riscv64-linux-musl/bits/signal.h"
"include/riscv64-linux-musl/bits/socket.h"
"include/riscv64-linux-musl/bits/stat.h"
"include/riscv64-linux-musl/bits/syscall.h"
"include/riscv64-linux-musl/bits/user.h"
"include/riscv64-linux-musl/elf.h"
"include/riscv64-linux-musl/netinet/tcp.h"
"include/riscv64-linux-musl/netinet/udp.h"
"include/riscv64-linux-musl/signal.h"
"include/riscv64-linux-musl/sys/signalfd.h"
"include/riscv64-linux-musl/sys/socket.h"
2019-03-07 09:16:10 -08:00
"include/s390x-linux-gnu/asm/unistd.h"
"include/s390x-linux-gnu/bits/elfclass.h"
"include/s390x-linux-gnu/bits/endian.h"
"include/s390x-linux-gnu/bits/environments.h"
"include/s390x-linux-gnu/bits/fcntl.h"
"include/s390x-linux-gnu/bits/fenv.h"
"include/s390x-linux-gnu/bits/floatn.h"
"include/s390x-linux-gnu/bits/flt-eval-method.h"
"include/s390x-linux-gnu/bits/hwcap.h"
"include/s390x-linux-gnu/bits/ipc.h"
"include/s390x-linux-gnu/bits/link.h"
"include/s390x-linux-gnu/bits/long-double.h"
"include/s390x-linux-gnu/bits/procfs-extra.h"
"include/s390x-linux-gnu/bits/procfs-id.h"
"include/s390x-linux-gnu/bits/procfs.h"
"include/s390x-linux-gnu/bits/pthreadtypes-arch.h"
"include/s390x-linux-gnu/bits/semaphore.h"
"include/s390x-linux-gnu/bits/setjmp.h"
"include/s390x-linux-gnu/bits/sigaction.h"
"include/s390x-linux-gnu/bits/stat.h"
"include/s390x-linux-gnu/bits/statfs.h"
"include/s390x-linux-gnu/bits/typesizes.h"
"include/s390x-linux-gnu/bits/utmp.h"
"include/s390x-linux-gnu/bits/utmpx.h"
"include/s390x-linux-gnu/bits/wordsize.h"
"include/s390x-linux-gnu/bits/xtitypes.h"
"include/s390x-linux-gnu/fpu_control.h"
"include/s390x-linux-gnu/gnu/lib-names-64.h"
"include/s390x-linux-gnu/gnu/lib-names.h"
"include/s390x-linux-gnu/gnu/stubs-64.h"
"include/s390x-linux-gnu/gnu/stubs.h"
"include/s390x-linux-gnu/ieee754.h"
"include/s390x-linux-gnu/sys/elf.h"
"include/s390x-linux-gnu/sys/ptrace.h"
"include/s390x-linux-gnu/sys/ucontext.h"
"include/s390x-linux-gnu/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/s390x-linux-musl/asm/auxvec.h"
"include/s390x-linux-musl/asm/bitsperlong.h"
"include/s390x-linux-musl/asm/bpf_perf_event.h"
"include/s390x-linux-musl/asm/byteorder.h"
"include/s390x-linux-musl/asm/chpid.h"
"include/s390x-linux-musl/asm/chsc.h"
"include/s390x-linux-musl/asm/clp.h"
"include/s390x-linux-musl/asm/cmb.h"
"include/s390x-linux-musl/asm/dasd.h"
"include/s390x-linux-musl/asm/debug.h"
"include/s390x-linux-musl/asm/guarded_storage.h"
"include/s390x-linux-musl/asm/hypfs.h"
"include/s390x-linux-musl/asm/ioctls.h"
"include/s390x-linux-musl/asm/ipcbuf.h"
"include/s390x-linux-musl/asm/kvm.h"
"include/s390x-linux-musl/asm/kvm_para.h"
"include/s390x-linux-musl/asm/kvm_perf.h"
"include/s390x-linux-musl/asm/monwriter.h"
"include/s390x-linux-musl/asm/perf_regs.h"
"include/s390x-linux-musl/asm/pkey.h"
"include/s390x-linux-musl/asm/posix_types.h"
"include/s390x-linux-musl/asm/ptrace.h"
"include/s390x-linux-musl/asm/qeth.h"
"include/s390x-linux-musl/asm/runtime_instr.h"
"include/s390x-linux-musl/asm/schid.h"
"include/s390x-linux-musl/asm/sclp_ctl.h"
"include/s390x-linux-musl/asm/setup.h"
"include/s390x-linux-musl/asm/sie.h"
"include/s390x-linux-musl/asm/sigcontext.h"
"include/s390x-linux-musl/asm/siginfo.h"
"include/s390x-linux-musl/asm/signal.h"
"include/s390x-linux-musl/asm/socket.h"
"include/s390x-linux-musl/asm/stat.h"
"include/s390x-linux-musl/asm/statfs.h"
"include/s390x-linux-musl/asm/sthyi.h"
"include/s390x-linux-musl/asm/tape390.h"
"include/s390x-linux-musl/asm/termios.h"
"include/s390x-linux-musl/asm/types.h"
"include/s390x-linux-musl/asm/ucontext.h"
"include/s390x-linux-musl/asm/unistd.h"
"include/s390x-linux-musl/asm/unistd_32.h"
"include/s390x-linux-musl/asm/unistd_64.h"
"include/s390x-linux-musl/asm/virtio-ccw.h"
"include/s390x-linux-musl/asm/vmcp.h"
"include/s390x-linux-musl/asm/vtoc.h"
"include/s390x-linux-musl/asm/zcrypt.h"
"include/s390x-linux-musl/bfd_stdint.h"
"include/s390x-linux-musl/bits/alltypes.h"
"include/s390x-linux-musl/bits/endian.h"
"include/s390x-linux-musl/bits/fcntl.h"
"include/s390x-linux-musl/bits/fenv.h"
"include/s390x-linux-musl/bits/float.h"
"include/s390x-linux-musl/bits/hwcap.h"
"include/s390x-linux-musl/bits/ioctl_fix.h"
"include/s390x-linux-musl/bits/ipc.h"
"include/s390x-linux-musl/bits/limits.h"
"include/s390x-linux-musl/bits/link.h"
"include/s390x-linux-musl/bits/msg.h"
"include/s390x-linux-musl/bits/posix.h"
"include/s390x-linux-musl/bits/ptrace.h"
"include/s390x-linux-musl/bits/reg.h"
"include/s390x-linux-musl/bits/sem.h"
"include/s390x-linux-musl/bits/setjmp.h"
"include/s390x-linux-musl/bits/signal.h"
"include/s390x-linux-musl/bits/socket.h"
"include/s390x-linux-musl/bits/stat.h"
"include/s390x-linux-musl/bits/statfs.h"
"include/s390x-linux-musl/bits/syscall.h"
"include/s390x-linux-musl/bits/user.h"
2019-03-07 09:16:10 -08:00
"include/sparc-linux-gnu/a.out.h"
"include/sparc-linux-gnu/asm/unistd.h"
"include/sparc-linux-gnu/bits/a.out.h"
"include/sparc-linux-gnu/bits/endian.h"
"include/sparc-linux-gnu/bits/environments.h"
"include/sparc-linux-gnu/bits/epoll.h"
"include/sparc-linux-gnu/bits/errno.h"
"include/sparc-linux-gnu/bits/eventfd.h"
"include/sparc-linux-gnu/bits/fcntl.h"
"include/sparc-linux-gnu/bits/fenv.h"
"include/sparc-linux-gnu/bits/floatn.h"
"include/sparc-linux-gnu/bits/hwcap.h"
"include/sparc-linux-gnu/bits/inotify.h"
"include/sparc-linux-gnu/bits/ioctls.h"
"include/sparc-linux-gnu/bits/ipc.h"
"include/sparc-linux-gnu/bits/link.h"
"include/sparc-linux-gnu/bits/local_lim.h"
"include/sparc-linux-gnu/bits/long-double.h"
"include/sparc-linux-gnu/bits/mman.h"
"include/sparc-linux-gnu/bits/msq-pad.h"
"include/sparc-linux-gnu/bits/poll.h"
"include/sparc-linux-gnu/bits/procfs-extra.h"
"include/sparc-linux-gnu/bits/procfs-id.h"
"include/sparc-linux-gnu/bits/procfs.h"
"include/sparc-linux-gnu/bits/pthreadtypes-arch.h"
"include/sparc-linux-gnu/bits/resource.h"
"include/sparc-linux-gnu/bits/sem-pad.h"
"include/sparc-linux-gnu/bits/semaphore.h"
"include/sparc-linux-gnu/bits/setjmp.h"
"include/sparc-linux-gnu/bits/shm-pad.h"
"include/sparc-linux-gnu/bits/shmlba.h"
"include/sparc-linux-gnu/bits/sigaction.h"
"include/sparc-linux-gnu/bits/sigcontext.h"
"include/sparc-linux-gnu/bits/siginfo-arch.h"
"include/sparc-linux-gnu/bits/siginfo-consts-arch.h"
"include/sparc-linux-gnu/bits/signalfd.h"
"include/sparc-linux-gnu/bits/signum.h"
"include/sparc-linux-gnu/bits/sigstack.h"
"include/sparc-linux-gnu/bits/socket_type.h"
"include/sparc-linux-gnu/bits/stat.h"
"include/sparc-linux-gnu/bits/termios-baud.h"
"include/sparc-linux-gnu/bits/termios-c_cc.h"
"include/sparc-linux-gnu/bits/termios-c_oflag.h"
"include/sparc-linux-gnu/bits/termios-struct.h"
"include/sparc-linux-gnu/bits/timerfd.h"
"include/sparc-linux-gnu/bits/typesizes.h"
"include/sparc-linux-gnu/bits/wordsize.h"
"include/sparc-linux-gnu/fpu_control.h"
"include/sparc-linux-gnu/gnu/lib-names-64.h"
"include/sparc-linux-gnu/gnu/lib-names.h"
"include/sparc-linux-gnu/gnu/stubs-64.h"
"include/sparc-linux-gnu/gnu/stubs.h"
"include/sparc-linux-gnu/ieee754.h"
"include/sparc-linux-gnu/sys/ptrace.h"
"include/sparc-linux-gnu/sys/ucontext.h"
"include/sparc-linux-gnu/sys/user.h"
"include/sparcv9-linux-gnu/a.out.h"
"include/sparcv9-linux-gnu/asm/unistd.h"
"include/sparcv9-linux-gnu/bits/a.out.h"
"include/sparcv9-linux-gnu/bits/endian.h"
"include/sparcv9-linux-gnu/bits/environments.h"
"include/sparcv9-linux-gnu/bits/epoll.h"
"include/sparcv9-linux-gnu/bits/errno.h"
"include/sparcv9-linux-gnu/bits/eventfd.h"
"include/sparcv9-linux-gnu/bits/fcntl.h"
"include/sparcv9-linux-gnu/bits/fenv.h"
"include/sparcv9-linux-gnu/bits/floatn.h"
"include/sparcv9-linux-gnu/bits/hwcap.h"
"include/sparcv9-linux-gnu/bits/inotify.h"
"include/sparcv9-linux-gnu/bits/ioctls.h"
"include/sparcv9-linux-gnu/bits/ipc.h"
"include/sparcv9-linux-gnu/bits/link.h"
"include/sparcv9-linux-gnu/bits/local_lim.h"
"include/sparcv9-linux-gnu/bits/long-double.h"
"include/sparcv9-linux-gnu/bits/mman.h"
"include/sparcv9-linux-gnu/bits/msq-pad.h"
"include/sparcv9-linux-gnu/bits/poll.h"
"include/sparcv9-linux-gnu/bits/procfs-extra.h"
"include/sparcv9-linux-gnu/bits/procfs-id.h"
"include/sparcv9-linux-gnu/bits/procfs.h"
"include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h"
"include/sparcv9-linux-gnu/bits/resource.h"
"include/sparcv9-linux-gnu/bits/sem-pad.h"
"include/sparcv9-linux-gnu/bits/semaphore.h"
"include/sparcv9-linux-gnu/bits/setjmp.h"
"include/sparcv9-linux-gnu/bits/shm-pad.h"
"include/sparcv9-linux-gnu/bits/shmlba.h"
"include/sparcv9-linux-gnu/bits/sigaction.h"
"include/sparcv9-linux-gnu/bits/sigcontext.h"
"include/sparcv9-linux-gnu/bits/siginfo-arch.h"
"include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h"
"include/sparcv9-linux-gnu/bits/signalfd.h"
"include/sparcv9-linux-gnu/bits/signum.h"
"include/sparcv9-linux-gnu/bits/sigstack.h"
"include/sparcv9-linux-gnu/bits/socket_type.h"
"include/sparcv9-linux-gnu/bits/stat.h"
"include/sparcv9-linux-gnu/bits/termios-baud.h"
"include/sparcv9-linux-gnu/bits/termios-c_cc.h"
"include/sparcv9-linux-gnu/bits/termios-c_oflag.h"
"include/sparcv9-linux-gnu/bits/termios-struct.h"
"include/sparcv9-linux-gnu/bits/timerfd.h"
"include/sparcv9-linux-gnu/bits/typesizes.h"
"include/sparcv9-linux-gnu/bits/wordsize.h"
"include/sparcv9-linux-gnu/fpu_control.h"
"include/sparcv9-linux-gnu/gnu/lib-names.h"
"include/sparcv9-linux-gnu/gnu/stubs-32.h"
"include/sparcv9-linux-gnu/gnu/stubs.h"
"include/sparcv9-linux-gnu/ieee754.h"
"include/sparcv9-linux-gnu/sys/ptrace.h"
"include/sparcv9-linux-gnu/sys/ucontext.h"
"include/sparcv9-linux-gnu/sys/user.h"
"include/x86_64-linux-gnu/asm/unistd.h"
"include/x86_64-linux-gnu/bits/a.out.h"
"include/x86_64-linux-gnu/bits/endian.h"
"include/x86_64-linux-gnu/bits/environments.h"
"include/x86_64-linux-gnu/bits/epoll.h"
"include/x86_64-linux-gnu/bits/fcntl.h"
"include/x86_64-linux-gnu/bits/fenv.h"
"include/x86_64-linux-gnu/bits/floatn.h"
"include/x86_64-linux-gnu/bits/flt-eval-method.h"
"include/x86_64-linux-gnu/bits/fp-logb.h"
"include/x86_64-linux-gnu/bits/indirect-return.h"
"include/x86_64-linux-gnu/bits/ipctypes.h"
"include/x86_64-linux-gnu/bits/iscanonical.h"
"include/x86_64-linux-gnu/bits/link.h"
"include/x86_64-linux-gnu/bits/long-double.h"
"include/x86_64-linux-gnu/bits/math-vector-fortran.h"
"include/x86_64-linux-gnu/bits/math-vector.h"
"include/x86_64-linux-gnu/bits/mman.h"
"include/x86_64-linux-gnu/bits/procfs-id.h"
"include/x86_64-linux-gnu/bits/procfs.h"
"include/x86_64-linux-gnu/bits/pthreadtypes-arch.h"
"include/x86_64-linux-gnu/bits/select.h"
"include/x86_64-linux-gnu/bits/sem-pad.h"
"include/x86_64-linux-gnu/bits/semaphore.h"
"include/x86_64-linux-gnu/bits/setjmp.h"
"include/x86_64-linux-gnu/bits/sigcontext.h"
"include/x86_64-linux-gnu/bits/siginfo-arch.h"
"include/x86_64-linux-gnu/bits/stat.h"
"include/x86_64-linux-gnu/bits/sysctl.h"
"include/x86_64-linux-gnu/bits/timesize.h"
"include/x86_64-linux-gnu/bits/typesizes.h"
"include/x86_64-linux-gnu/bits/wordsize.h"
"include/x86_64-linux-gnu/bits/xtitypes.h"
"include/x86_64-linux-gnu/fpu_control.h"
"include/x86_64-linux-gnu/gnu/lib-names-64.h"
"include/x86_64-linux-gnu/gnu/lib-names.h"
"include/x86_64-linux-gnu/gnu/stubs-64.h"
"include/x86_64-linux-gnu/gnu/stubs.h"
"include/x86_64-linux-gnu/sys/elf.h"
"include/x86_64-linux-gnu/sys/io.h"
"include/x86_64-linux-gnu/sys/ptrace.h"
"include/x86_64-linux-gnu/sys/ucontext.h"
"include/x86_64-linux-gnu/sys/user.h"
"include/x86_64-linux-gnux32/bits/a.out.h"
"include/x86_64-linux-gnux32/bits/endian.h"
"include/x86_64-linux-gnux32/bits/environments.h"
"include/x86_64-linux-gnux32/bits/epoll.h"
"include/x86_64-linux-gnux32/bits/fcntl.h"
"include/x86_64-linux-gnux32/bits/fenv.h"
"include/x86_64-linux-gnux32/bits/floatn.h"
"include/x86_64-linux-gnux32/bits/flt-eval-method.h"
"include/x86_64-linux-gnux32/bits/fp-logb.h"
"include/x86_64-linux-gnux32/bits/indirect-return.h"
"include/x86_64-linux-gnux32/bits/ipctypes.h"
"include/x86_64-linux-gnux32/bits/iscanonical.h"
"include/x86_64-linux-gnux32/bits/link.h"
"include/x86_64-linux-gnux32/bits/long-double.h"
"include/x86_64-linux-gnux32/bits/math-vector-fortran.h"
"include/x86_64-linux-gnux32/bits/math-vector.h"
"include/x86_64-linux-gnux32/bits/mman.h"
"include/x86_64-linux-gnux32/bits/procfs-id.h"
"include/x86_64-linux-gnux32/bits/procfs.h"
"include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h"
"include/x86_64-linux-gnux32/bits/select.h"
"include/x86_64-linux-gnux32/bits/sem-pad.h"
"include/x86_64-linux-gnux32/bits/semaphore.h"
"include/x86_64-linux-gnux32/bits/setjmp.h"
"include/x86_64-linux-gnux32/bits/sigcontext.h"
"include/x86_64-linux-gnux32/bits/siginfo-arch.h"
"include/x86_64-linux-gnux32/bits/stat.h"
"include/x86_64-linux-gnux32/bits/sysctl.h"
"include/x86_64-linux-gnux32/bits/timesize.h"
"include/x86_64-linux-gnux32/bits/typesizes.h"
"include/x86_64-linux-gnux32/bits/wordsize.h"
"include/x86_64-linux-gnux32/bits/xtitypes.h"
"include/x86_64-linux-gnux32/fpu_control.h"
"include/x86_64-linux-gnux32/gnu/lib-names-x32.h"
"include/x86_64-linux-gnux32/gnu/lib-names.h"
"include/x86_64-linux-gnux32/gnu/stubs-x32.h"
"include/x86_64-linux-gnux32/gnu/stubs.h"
"include/x86_64-linux-gnux32/sys/elf.h"
"include/x86_64-linux-gnux32/sys/io.h"
"include/x86_64-linux-gnux32/sys/ptrace.h"
"include/x86_64-linux-gnux32/sys/ucontext.h"
"include/x86_64-linux-gnux32/sys/user.h"
2019-03-12 07:28:05 -07:00
"include/x86_64-linux-musl/asm/auxvec.h"
"include/x86_64-linux-musl/asm/bitsperlong.h"
"include/x86_64-linux-musl/asm/byteorder.h"
"include/x86_64-linux-musl/asm/kvm.h"
"include/x86_64-linux-musl/asm/kvm_para.h"
"include/x86_64-linux-musl/asm/mman.h"
"include/x86_64-linux-musl/asm/msgbuf.h"
"include/x86_64-linux-musl/asm/perf_regs.h"
"include/x86_64-linux-musl/asm/posix_types.h"
"include/x86_64-linux-musl/asm/ptrace.h"
"include/x86_64-linux-musl/asm/sembuf.h"
"include/x86_64-linux-musl/asm/setup.h"
"include/x86_64-linux-musl/asm/shmbuf.h"
"include/x86_64-linux-musl/asm/sigcontext.h"
"include/x86_64-linux-musl/asm/siginfo.h"
"include/x86_64-linux-musl/asm/signal.h"
"include/x86_64-linux-musl/asm/stat.h"
"include/x86_64-linux-musl/asm/statfs.h"
"include/x86_64-linux-musl/asm/swab.h"
"include/x86_64-linux-musl/asm/types.h"
"include/x86_64-linux-musl/asm/ucontext.h"
"include/x86_64-linux-musl/asm/unistd.h"
"include/x86_64-linux-musl/bfd_stdint.h"
"include/x86_64-linux-musl/bits/alltypes.h"
"include/x86_64-linux-musl/bits/endian.h"
"include/x86_64-linux-musl/bits/fcntl.h"
"include/x86_64-linux-musl/bits/fenv.h"
"include/x86_64-linux-musl/bits/float.h"
"include/x86_64-linux-musl/bits/io.h"
"include/x86_64-linux-musl/bits/ipc.h"
"include/x86_64-linux-musl/bits/limits.h"
"include/x86_64-linux-musl/bits/mman.h"
"include/x86_64-linux-musl/bits/msg.h"
"include/x86_64-linux-musl/bits/posix.h"
"include/x86_64-linux-musl/bits/ptrace.h"
"include/x86_64-linux-musl/bits/reg.h"
"include/x86_64-linux-musl/bits/setjmp.h"
"include/x86_64-linux-musl/bits/signal.h"
"include/x86_64-linux-musl/bits/socket.h"
"include/x86_64-linux-musl/bits/stat.h"
"include/x86_64-linux-musl/bits/syscall.h"
"include/x86_64-linux-musl/bits/user.h"
2019-03-12 10:18:52 -07:00
"musl/crt/mips64/crtn.s"
"musl/crt/mips64/crti.s"
"musl/crt/crt1.c"
"musl/crt/x32/crtn.s"
"musl/crt/x32/crti.s"
"musl/crt/crtn.c"
"musl/crt/powerpc64/crtn.s"
"musl/crt/powerpc64/crti.s"
"musl/crt/crti.c"
"musl/crt/microblaze/crtn.s"
"musl/crt/microblaze/crti.s"
"musl/crt/arm/crtn.s"
"musl/crt/arm/crti.s"
"musl/crt/rcrt1.c"
"musl/crt/s390x/crtn.s"
"musl/crt/s390x/crti.s"
"musl/crt/mips/crtn.s"
"musl/crt/mips/crti.s"
"musl/crt/x86_64/crtn.s"
"musl/crt/x86_64/crti.s"
"musl/crt/i386/crtn.s"
"musl/crt/i386/crti.s"
"musl/crt/aarch64/crtn.s"
"musl/crt/aarch64/crti.s"
"musl/crt/mipsn32/crtn.s"
"musl/crt/mipsn32/crti.s"
"musl/crt/or1k/crtn.s"
"musl/crt/or1k/crti.s"
"musl/crt/powerpc/crtn.s"
"musl/crt/powerpc/crti.s"
"musl/crt/Scrt1.c"
"musl/crt/sh/crtn.s"
"musl/crt/sh/crti.s"
"musl/src/internal/libc.h"
"musl/src/include/features.h"
"musl/arch/mips64/pthread_arch.h"
"musl/arch/mips64/crt_arch.h"
"musl/arch/mips64/ksigaction.h"
"musl/arch/mips64/reloc.h"
"musl/arch/mips64/syscall_arch.h"
"musl/arch/mips64/atomic_arch.h"
"musl/arch/mips64/bits/float.h"
"musl/arch/mips64/bits/errno.h"
"musl/arch/mips64/bits/mman.h"
"musl/arch/mips64/bits/stdint.h"
"musl/arch/mips64/bits/termios.h"
"musl/arch/mips64/bits/reg.h"
"musl/arch/mips64/bits/ipc.h"
"musl/arch/mips64/bits/fenv.h"
"musl/arch/mips64/bits/msg.h"
"musl/arch/mips64/bits/ptrace.h"
"musl/arch/mips64/bits/resource.h"
"musl/arch/mips64/bits/posix.h"
"musl/arch/mips64/bits/setjmp.h"
"musl/arch/mips64/bits/alltypes.h.in"
"musl/arch/mips64/bits/syscall.h.in"
"musl/arch/mips64/bits/shm.h"
"musl/arch/mips64/bits/hwcap.h"
"musl/arch/mips64/bits/endian.h"
"musl/arch/mips64/bits/limits.h"
"musl/arch/mips64/bits/poll.h"
"musl/arch/mips64/bits/ioctl.h"
"musl/arch/mips64/bits/fcntl.h"
"musl/arch/mips64/bits/signal.h"
"musl/arch/mips64/bits/stat.h"
"musl/arch/mips64/bits/user.h"
"musl/arch/mips64/bits/sem.h"
"musl/arch/mips64/bits/socket.h"
"musl/arch/mips64/bits/statfs.h"
"musl/arch/generic/bits/errno.h"
"musl/arch/generic/bits/mman.h"
"musl/arch/generic/bits/termios.h"
"musl/arch/generic/bits/kd.h"
"musl/arch/generic/bits/ipc.h"
"musl/arch/generic/bits/fenv.h"
"musl/arch/generic/bits/msg.h"
"musl/arch/generic/bits/vt.h"
"musl/arch/generic/bits/ptrace.h"
"musl/arch/generic/bits/io.h"
"musl/arch/generic/bits/resource.h"
"musl/arch/generic/bits/link.h"
"musl/arch/generic/bits/shm.h"
"musl/arch/generic/bits/hwcap.h"
"musl/arch/generic/bits/poll.h"
"musl/arch/generic/bits/ioctl.h"
"musl/arch/generic/bits/fcntl.h"
"musl/arch/generic/bits/ioctl_fix.h"
"musl/arch/generic/bits/sem.h"
"musl/arch/generic/bits/socket.h"
"musl/arch/generic/bits/statfs.h"
"musl/arch/generic/bits/soundcard.h"
"musl/arch/powerpc64/pthread_arch.h"
"musl/arch/powerpc64/crt_arch.h"
"musl/arch/powerpc64/reloc.h"
"musl/arch/powerpc64/syscall_arch.h"
"musl/arch/powerpc64/atomic_arch.h"
"musl/arch/powerpc64/bits/float.h"
"musl/arch/powerpc64/bits/errno.h"
"musl/arch/powerpc64/bits/mman.h"
"musl/arch/powerpc64/bits/stdint.h"
"musl/arch/powerpc64/bits/termios.h"
"musl/arch/powerpc64/bits/reg.h"
"musl/arch/powerpc64/bits/ipc.h"
"musl/arch/powerpc64/bits/fenv.h"
"musl/arch/powerpc64/bits/msg.h"
"musl/arch/powerpc64/bits/ptrace.h"
"musl/arch/powerpc64/bits/posix.h"
"musl/arch/powerpc64/bits/setjmp.h"
"musl/arch/powerpc64/bits/alltypes.h.in"
"musl/arch/powerpc64/bits/syscall.h.in"
"musl/arch/powerpc64/bits/shm.h"
"musl/arch/powerpc64/bits/hwcap.h"
"musl/arch/powerpc64/bits/endian.h"
"musl/arch/powerpc64/bits/limits.h"
"musl/arch/powerpc64/bits/ioctl.h"
"musl/arch/powerpc64/bits/fcntl.h"
"musl/arch/powerpc64/bits/signal.h"
"musl/arch/powerpc64/bits/stat.h"
"musl/arch/powerpc64/bits/user.h"
"musl/arch/powerpc64/bits/sem.h"
"musl/arch/powerpc64/bits/socket.h"
"musl/arch/arm/pthread_arch.h"
"musl/arch/arm/crt_arch.h"
"musl/arch/arm/reloc.h"
"musl/arch/arm/syscall_arch.h"
"musl/arch/arm/atomic_arch.h"
"musl/arch/arm/bits/float.h"
"musl/arch/arm/bits/stdint.h"
"musl/arch/arm/bits/reg.h"
"musl/arch/arm/bits/fenv.h"
"musl/arch/arm/bits/ptrace.h"
"musl/arch/arm/bits/posix.h"
"musl/arch/arm/bits/setjmp.h"
"musl/arch/arm/bits/alltypes.h.in"
"musl/arch/arm/bits/syscall.h.in"
"musl/arch/arm/bits/hwcap.h"
"musl/arch/arm/bits/endian.h"
"musl/arch/arm/bits/limits.h"
"musl/arch/arm/bits/fcntl.h"
"musl/arch/arm/bits/signal.h"
"musl/arch/arm/bits/stat.h"
"musl/arch/arm/bits/user.h"
"musl/arch/arm/bits/ioctl_fix.h"
"musl/arch/s390x/pthread_arch.h"
"musl/arch/s390x/crt_arch.h"
"musl/arch/s390x/reloc.h"
"musl/arch/s390x/syscall_arch.h"
"musl/arch/s390x/atomic_arch.h"
"musl/arch/s390x/bits/float.h"
"musl/arch/s390x/bits/stdint.h"
"musl/arch/s390x/bits/reg.h"
"musl/arch/s390x/bits/ipc.h"
"musl/arch/s390x/bits/fenv.h"
"musl/arch/s390x/bits/msg.h"
"musl/arch/s390x/bits/ptrace.h"
"musl/arch/s390x/bits/link.h"
"musl/arch/s390x/bits/posix.h"
"musl/arch/s390x/bits/setjmp.h"
"musl/arch/s390x/bits/alltypes.h.in"
"musl/arch/s390x/bits/syscall.h.in"
"musl/arch/s390x/bits/shm.h"
"musl/arch/s390x/bits/hwcap.h"
"musl/arch/s390x/bits/endian.h"
"musl/arch/s390x/bits/limits.h"
"musl/arch/s390x/bits/fcntl.h"
"musl/arch/s390x/bits/signal.h"
"musl/arch/s390x/bits/stat.h"
"musl/arch/s390x/bits/user.h"
"musl/arch/s390x/bits/ioctl_fix.h"
"musl/arch/s390x/bits/sem.h"
"musl/arch/s390x/bits/socket.h"
"musl/arch/s390x/bits/statfs.h"
"musl/arch/mips/pthread_arch.h"
"musl/arch/mips/crt_arch.h"
"musl/arch/mips/ksigaction.h"
"musl/arch/mips/reloc.h"
"musl/arch/mips/syscall_arch.h"
"musl/arch/mips/atomic_arch.h"
"musl/arch/mips/bits/float.h"
"musl/arch/mips/bits/errno.h"
"musl/arch/mips/bits/mman.h"
"musl/arch/mips/bits/stdint.h"
"musl/arch/mips/bits/termios.h"
"musl/arch/mips/bits/reg.h"
"musl/arch/mips/bits/fenv.h"
"musl/arch/mips/bits/msg.h"
"musl/arch/mips/bits/ptrace.h"
"musl/arch/mips/bits/resource.h"
"musl/arch/mips/bits/posix.h"
"musl/arch/mips/bits/setjmp.h"
"musl/arch/mips/bits/alltypes.h.in"
"musl/arch/mips/bits/syscall.h.in"
"musl/arch/mips/bits/shm.h"
"musl/arch/mips/bits/hwcap.h"
"musl/arch/mips/bits/endian.h"
"musl/arch/mips/bits/limits.h"
"musl/arch/mips/bits/poll.h"
"musl/arch/mips/bits/ioctl.h"
"musl/arch/mips/bits/fcntl.h"
"musl/arch/mips/bits/signal.h"
"musl/arch/mips/bits/stat.h"
"musl/arch/mips/bits/user.h"
"musl/arch/mips/bits/sem.h"
"musl/arch/mips/bits/socket.h"
"musl/arch/mips/bits/statfs.h"
"musl/arch/x86_64/pthread_arch.h"
"musl/arch/x86_64/crt_arch.h"
"musl/arch/x86_64/ksigaction.h"
"musl/arch/x86_64/reloc.h"
"musl/arch/x86_64/syscall_arch.h"
"musl/arch/x86_64/atomic_arch.h"
"musl/arch/x86_64/bits/float.h"
"musl/arch/x86_64/bits/mman.h"
"musl/arch/x86_64/bits/stdint.h"
"musl/arch/x86_64/bits/reg.h"
"musl/arch/x86_64/bits/ipc.h"
"musl/arch/x86_64/bits/fenv.h"
"musl/arch/x86_64/bits/msg.h"
"musl/arch/x86_64/bits/ptrace.h"
"musl/arch/x86_64/bits/io.h"
"musl/arch/x86_64/bits/posix.h"
"musl/arch/x86_64/bits/setjmp.h"
"musl/arch/x86_64/bits/alltypes.h.in"
"musl/arch/x86_64/bits/syscall.h.in"
"musl/arch/x86_64/bits/shm.h"
"musl/arch/x86_64/bits/endian.h"
"musl/arch/x86_64/bits/limits.h"
"musl/arch/x86_64/bits/fcntl.h"
"musl/arch/x86_64/bits/signal.h"
"musl/arch/x86_64/bits/stat.h"
"musl/arch/x86_64/bits/user.h"
"musl/arch/x86_64/bits/socket.h"
"musl/arch/i386/pthread_arch.h"
"musl/arch/i386/crt_arch.h"
"musl/arch/i386/reloc.h"
"musl/arch/i386/syscall_arch.h"
"musl/arch/i386/atomic_arch.h"
"musl/arch/i386/bits/float.h"
"musl/arch/i386/bits/mman.h"
"musl/arch/i386/bits/stdint.h"
"musl/arch/i386/bits/reg.h"
"musl/arch/i386/bits/fenv.h"
"musl/arch/i386/bits/ptrace.h"
"musl/arch/i386/bits/io.h"
"musl/arch/i386/bits/posix.h"
"musl/arch/i386/bits/setjmp.h"
"musl/arch/i386/bits/alltypes.h.in"
"musl/arch/i386/bits/syscall.h.in"
"musl/arch/i386/bits/endian.h"
"musl/arch/i386/bits/limits.h"
"musl/arch/i386/bits/signal.h"
"musl/arch/i386/bits/stat.h"
"musl/arch/i386/bits/user.h"
"musl/arch/aarch64/pthread_arch.h"
"musl/arch/aarch64/crt_arch.h"
"musl/arch/aarch64/reloc.h"
"musl/arch/aarch64/syscall_arch.h"
"musl/arch/aarch64/atomic_arch.h"
"musl/arch/aarch64/bits/float.h"
"musl/arch/aarch64/bits/stdint.h"
"musl/arch/aarch64/bits/reg.h"
"musl/arch/aarch64/bits/ipc.h"
"musl/arch/aarch64/bits/fenv.h"
"musl/arch/aarch64/bits/msg.h"
"musl/arch/aarch64/bits/posix.h"
"musl/arch/aarch64/bits/setjmp.h"
"musl/arch/aarch64/bits/alltypes.h.in"
"musl/arch/aarch64/bits/syscall.h.in"
"musl/arch/aarch64/bits/shm.h"
"musl/arch/aarch64/bits/hwcap.h"
"musl/arch/aarch64/bits/endian.h"
"musl/arch/aarch64/bits/limits.h"
"musl/arch/aarch64/bits/fcntl.h"
"musl/arch/aarch64/bits/signal.h"
"musl/arch/aarch64/bits/stat.h"
"musl/arch/aarch64/bits/user.h"
"musl/arch/aarch64/bits/sem.h"
"musl/arch/aarch64/bits/socket.h"
"musl/arch/powerpc/pthread_arch.h"
"musl/arch/powerpc/crt_arch.h"
"musl/arch/powerpc/reloc.h"
"musl/arch/powerpc/syscall_arch.h"
"musl/arch/powerpc/atomic_arch.h"
"musl/arch/powerpc/bits/float.h"
"musl/arch/powerpc/bits/errno.h"
"musl/arch/powerpc/bits/mman.h"
"musl/arch/powerpc/bits/stdint.h"
"musl/arch/powerpc/bits/termios.h"
"musl/arch/powerpc/bits/reg.h"
"musl/arch/powerpc/bits/ipc.h"
"musl/arch/powerpc/bits/fenv.h"
"musl/arch/powerpc/bits/msg.h"
"musl/arch/powerpc/bits/ptrace.h"
"musl/arch/powerpc/bits/posix.h"
"musl/arch/powerpc/bits/setjmp.h"
"musl/arch/powerpc/bits/alltypes.h.in"
"musl/arch/powerpc/bits/syscall.h.in"
"musl/arch/powerpc/bits/shm.h"
"musl/arch/powerpc/bits/hwcap.h"
"musl/arch/powerpc/bits/endian.h"
"musl/arch/powerpc/bits/limits.h"
"musl/arch/powerpc/bits/ioctl.h"
"musl/arch/powerpc/bits/fcntl.h"
"musl/arch/powerpc/bits/signal.h"
"musl/arch/powerpc/bits/stat.h"
"musl/arch/powerpc/bits/user.h"
"musl/arch/powerpc/bits/sem.h"
"musl/arch/powerpc/bits/socket.h"
2019-03-04 19:15:53 -08:00
)
set(ZIG_LIBUNWIND_FILES
"include/__libunwind_config.h"
"include/libunwind.h"
"include/mach-o/compact_unwind_encoding.h"
"include/unwind.h"
"src/AddressSpace.hpp"
"src/CompactUnwinder.hpp"
"src/DwarfInstructions.hpp"
"src/DwarfParser.hpp"
"src/EHHeaderParser.hpp"
"src/RWMutex.hpp"
"src/Registers.hpp"
"src/Unwind-EHABI.cpp"
"src/Unwind-EHABI.h"
"src/Unwind-seh.cpp"
"src/Unwind-sjlj.c"
"src/UnwindCursor.hpp"
"src/UnwindLevel1-gcc-ext.c"
"src/UnwindLevel1.c"
"src/UnwindRegistersRestore.S"
"src/UnwindRegistersSave.S"
"src/Unwind_AppleExtras.cpp"
"src/assembly.h"
"src/config.h"
"src/dwarf2.h"
"src/libunwind.cpp"
"src/libunwind_ext.h"
)
set(ZIG_LIBCXX_FILES
"include/__bit_reference"
"include/__bsd_locale_defaults.h"
"include/__bsd_locale_fallbacks.h"
"include/__config"
"include/__config_site.in"
"include/__debug"
"include/__errc"
"include/__functional_03"
"include/__functional_base"
"include/__functional_base_03"
"include/__hash_table"
"include/__libcpp_version"
"include/__locale"
"include/__mutex_base"
"include/__node_handle"
"include/__nullptr"
"include/__split_buffer"
"include/__sso_allocator"
"include/__std_stream"
"include/__string"
"include/__threading_support"
"include/__tree"
"include/__tuple"
"include/__undef_macros"
"include/algorithm"
"include/any"
"include/array"
"include/atomic"
"include/bit"
"include/bitset"
"include/cassert"
"include/ccomplex"
"include/cctype"
"include/cerrno"
"include/cfenv"
"include/cfloat"
"include/charconv"
"include/chrono"
"include/cinttypes"
"include/ciso646"
"include/climits"
"include/clocale"
"include/cmath"
"include/codecvt"
"include/compare"
"include/complex"
"include/complex.h"
"include/condition_variable"
"include/csetjmp"
"include/csignal"
"include/cstdarg"
"include/cstdbool"
"include/cstddef"
"include/cstdint"
"include/cstdio"
"include/cstdlib"
"include/cstring"
"include/ctgmath"
"include/ctime"
"include/ctype.h"
"include/cwchar"
"include/cwctype"
"include/deque"
"include/errno.h"
"include/exception"
"include/experimental/__config"
"include/experimental/__memory"
"include/experimental/algorithm"
"include/experimental/any"
"include/experimental/chrono"
"include/experimental/coroutine"
"include/experimental/deque"
"include/experimental/filesystem"
"include/experimental/forward_list"
"include/experimental/functional"
"include/experimental/iterator"
"include/experimental/list"
"include/experimental/map"
"include/experimental/memory_resource"
"include/experimental/numeric"
"include/experimental/optional"
"include/experimental/propagate_const"
"include/experimental/ratio"
"include/experimental/regex"
"include/experimental/set"
"include/experimental/simd"
"include/experimental/string"
"include/experimental/string_view"
"include/experimental/system_error"
"include/experimental/tuple"
"include/experimental/type_traits"
"include/experimental/unordered_map"
"include/experimental/unordered_set"
"include/experimental/utility"
"include/experimental/vector"
"include/ext/__hash"
"include/ext/hash_map"
"include/ext/hash_set"
"include/filesystem"
"include/float.h"
"include/forward_list"
"include/fstream"
"include/functional"
"include/future"
"include/initializer_list"
"include/inttypes.h"
"include/iomanip"
"include/ios"
"include/iosfwd"
"include/iostream"
"include/istream"
"include/iterator"
"include/limits"
"include/limits.h"
"include/list"
"include/locale"
"include/locale.h"
"include/map"
"include/math.h"
"include/memory"
"include/module.modulemap"
"include/mutex"
"include/new"
"include/numeric"
"include/optional"
"include/ostream"
"include/queue"
"include/random"
"include/ratio"
"include/regex"
"include/scoped_allocator"
"include/set"
"include/setjmp.h"
"include/shared_mutex"
"include/span"
"include/sstream"
"include/stack"
"include/stdbool.h"
"include/stddef.h"
"include/stdexcept"
"include/stdint.h"
"include/stdio.h"
"include/stdlib.h"
"include/streambuf"
"include/string"
"include/string.h"
"include/string_view"
"include/strstream"
"include/support/android/locale_bionic.h"
"include/support/fuchsia/xlocale.h"
"include/support/ibm/limits.h"
"include/support/ibm/locale_mgmt_aix.h"
"include/support/ibm/support.h"
"include/support/ibm/xlocale.h"
"include/support/musl/xlocale.h"
"include/support/newlib/xlocale.h"
"include/support/solaris/floatingpoint.h"
"include/support/solaris/wchar.h"
"include/support/solaris/xlocale.h"
"include/support/win32/limits_msvc_win32.h"
"include/support/win32/locale_win32.h"
"include/support/xlocale/__nop_locale_mgmt.h"
"include/support/xlocale/__posix_l_fallback.h"
"include/support/xlocale/__strtonum_fallback.h"
"include/support/xlocale/xlocale.h"
"include/system_error"
"include/tgmath.h"
"include/thread"
"include/tuple"
"include/type_traits"
"include/typeindex"
"include/typeinfo"
"include/unordered_map"
"include/unordered_set"
"include/utility"
"include/valarray"
"include/variant"
"include/vector"
"include/version"
"include/wchar.h"
"include/wctype.h"
)
if(MSVC)
set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK")
if (IS_DIRECTORY ${MSVC_DIA_SDK_DIR})
set(ZIG_DIA_GUIDS_LIB "${MSVC_DIA_SDK_DIR}/lib/amd64/diaguids.lib")
string(REGEX REPLACE "\\\\" "\\\\\\\\" ZIG_DIA_GUIDS_LIB_ESCAPED "${ZIG_DIA_GUIDS_LIB}")
endif()
endif()
set(ZIG_LIB_DIR "lib/zig")
set(C_HEADERS_DEST "${ZIG_LIB_DIR}/include")
2019-03-04 19:15:53 -08:00
set(LIBC_FILES_DEST "${ZIG_LIB_DIR}/libc")
set(LIBUNWIND_FILES_DEST "${ZIG_LIB_DIR}/libunwind")
set(LIBCXX_FILES_DEST "${ZIG_LIB_DIR}/libcxx")
set(ZIG_STD_DEST "${ZIG_LIB_DIR}/std")
2015-08-05 15:23:15 -07:00
set(CONFIGURE_OUT_FILE "${CMAKE_BINARY_DIR}/config.h")
configure_file (
"${CMAKE_SOURCE_DIR}/src/config.h.in"
${CONFIGURE_OUT_FILE}
)
2015-11-26 00:29:52 -08:00
include_directories(
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR}
"${CMAKE_SOURCE_DIR}/src"
)
2018-09-05 09:10:53 -07:00
# These have to go before the -Wno- flags
set(EXE_CFLAGS "-std=c++11")
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
if(MSVC)
set(EXE_CFLAGS "${EXE_CFLAGS} /w")
elseif(MINGW)
set(EXE_CFLAGS "${EXE_CFLAGS} -Wall -Werror -Wno-error=format= -Wno-error=format -Wno-error=format-extra-args")
else()
set(EXE_CFLAGS "${EXE_CFLAGS} -Werror -Wall")
endif()
endif()
if(MSVC)
2018-09-05 09:10:53 -07:00
set(EXE_CFLAGS "${EXE_CFLAGS}")
else()
2018-09-05 09:10:53 -07:00
set(EXE_CFLAGS "${EXE_CFLAGS} -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -D_GNU_SOURCE -fno-exceptions -fno-rtti -Werror=strict-prototypes -Werror=old-style-definition -Werror=type-limits -Wno-missing-braces")
if(MINGW)
set(EXE_CFLAGS "${EXE_CFLAGS} -D__USE_MINGW_ANSI_STDIO -Wno-pedantic-ms-format")
endif()
2017-09-10 13:05:18 -07:00
endif()
2018-09-11 14:29:18 -07:00
set(BLAKE_CFLAGS "-std=c99")
2016-04-23 09:57:38 -07:00
set(EXE_LDFLAGS " ")
if(MINGW)
set(EXE_LDFLAGS "-static -static-libgcc -static-libstdc++")
elseif(MSVC)
set(EXE_LDFLAGS "/STACK:16777216")
elseif(ZIG_STATIC)
if(APPLE)
2018-09-27 19:27:52 -07:00
set(EXE_LDFLAGS "-static-libgcc -static-libstdc++")
else()
set(EXE_LDFLAGS "-static")
endif()
else()
set(EXE_LDFLAGS " ")
endif()
2016-04-23 09:57:38 -07:00
if(ZIG_TEST_COVERAGE)
set(EXE_CFLAGS "${EXE_CFLAGS} -fprofile-arcs -ftest-coverage")
set(EXE_LDFLAGS "${EXE_LDFLAGS} -fprofile-arcs -ftest-coverage")
2016-04-23 09:57:38 -07:00
endif()
2015-08-05 15:23:15 -07:00
add_library(zig_cpp STATIC ${ZIG_CPP_SOURCES})
2017-12-26 17:04:09 -08:00
set_target_properties(zig_cpp PROPERTIES
COMPILE_FLAGS ${EXE_CFLAGS}
)
2018-09-11 14:29:18 -07:00
add_library(embedded_blake STATIC ${BLAKE_SOURCES})
set_target_properties(embedded_blake PROPERTIES
COMPILE_FLAGS "${BLAKE_CFLAGS} -O3"
)
2015-08-05 15:23:15 -07:00
add_executable(zig ${ZIG_SOURCES})
set_target_properties(zig PROPERTIES
2016-04-23 09:57:38 -07:00
COMPILE_FLAGS ${EXE_CFLAGS}
LINK_FLAGS ${EXE_LDFLAGS}
)
2017-09-10 13:05:18 -07:00
2015-08-05 15:23:15 -07:00
target_link_libraries(zig LINK_PUBLIC
zig_cpp
2018-09-11 14:29:18 -07:00
embedded_blake
${SOFTFLOAT_LIBRARIES}
${CLANG_LIBRARIES}
2017-03-13 08:54:56 -07:00
${LLD_LIBRARIES}
2016-02-01 21:38:55 -08:00
${LLVM_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
2015-08-05 15:23:15 -07:00
)
if(NOT MSVC)
target_link_libraries(zig LINK_PUBLIC ${LIBXML2})
endif()
if(ZIG_DIA_GUIDS_LIB)
target_link_libraries(zig LINK_PUBLIC ${ZIG_DIA_GUIDS_LIB})
endif()
if(MSVC OR MINGW)
target_link_libraries(zig LINK_PUBLIC version)
2017-09-10 13:05:18 -07:00
endif()
2015-08-05 15:23:15 -07:00
install(TARGETS zig DESTINATION bin)
install(TARGETS zig_cpp DESTINATION "${ZIG_CPP_LIB_DIR}")
2015-11-03 21:31:27 -08:00
foreach(file ${ZIG_C_HEADER_FILES})
get_filename_component(file_dir "${C_HEADERS_DEST}/${file}" DIRECTORY)
install(FILES "${CMAKE_SOURCE_DIR}/c_headers/${file}" DESTINATION "${file_dir}")
endforeach()
foreach(file ${ZIG_STD_FILES})
get_filename_component(file_dir "${ZIG_STD_DEST}/${file}" DIRECTORY)
install(FILES "${CMAKE_SOURCE_DIR}/std/${file}" DESTINATION "${file_dir}")
endforeach()
2019-02-15 21:42:56 -08:00
2019-03-04 19:15:53 -08:00
foreach(file ${ZIG_LIBC_FILES})
get_filename_component(file_dir "${LIBC_FILES_DEST}/${file}" DIRECTORY)
install(FILES "${CMAKE_SOURCE_DIR}/libc/${file}" DESTINATION "${file_dir}")
endforeach()
foreach(file ${ZIG_LIBUNWIND_FILES})
get_filename_component(file_dir "${LIBUNWIND_FILES_DEST}/${file}" DIRECTORY)
install(FILES "${CMAKE_SOURCE_DIR}/libunwind/${file}" DESTINATION "${file_dir}")
endforeach()
foreach(file ${ZIG_LIBCXX_FILES})
get_filename_component(file_dir "${LIBCXX_FILES_DEST}/${file}" DIRECTORY)
install(FILES "${CMAKE_SOURCE_DIR}/libcxx/${file}" DESTINATION "${file_dir}")
endforeach()
2019-03-04 19:15:53 -08:00
2019-02-15 21:42:56 -08:00
install(FILES "${CMAKE_SOURCE_DIR}/src-self-hosted/arg.zig" DESTINATION "${ZIG_STD_DEST}/special/fmt/")
install(FILES "${CMAKE_SOURCE_DIR}/src-self-hosted/main.zig" DESTINATION "${ZIG_STD_DEST}/special/fmt/")
install(FILES "${CMAKE_SOURCE_DIR}/src-self-hosted/errmsg.zig" DESTINATION "${ZIG_STD_DEST}/special/fmt/")