From 781276aad7a32bc447094e971dde1df1090cdf02 Mon Sep 17 00:00:00 2001 From: Afonso Clerigo Mendes de Sousa Date: Thu, 19 Jun 2025 15:12:57 +0100 Subject: [PATCH] Initial commit --- CMakeLists.txt | 75 + build.sh | 23 + build/CMakeCache.txt | 357 ++++ .../CMakeFiles/3.31.4/CMakeCXXCompiler.cmake | 101 ++ .../3.31.4/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16696 bytes build/CMakeFiles/3.31.4/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 919 ++++++++++ .../3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 0 -> 1536 bytes build/CMakeFiles/CMakeConfigureLog.yaml | 240 +++ .../CMakeDirectoryInformation.cmake | 16 + build/CMakeFiles/Makefile.cmake | 52 + build/CMakeFiles/Makefile2 | 122 ++ build/CMakeFiles/TargetDirectories.txt | 3 + build/CMakeFiles/cmake.check_cache | 1 + build/CMakeFiles/progress.marks | 1 + build/CMakeFiles/test.dir/DependInfo.cmake | 23 + build/CMakeFiles/test.dir/build.make | 113 ++ build/CMakeFiles/test.dir/cmake_clean.cmake | 11 + .../test.dir/compiler_depend.internal | 526 ++++++ .../CMakeFiles/test.dir/compiler_depend.make | 1567 +++++++++++++++++ build/CMakeFiles/test.dir/compiler_depend.ts | 2 + build/CMakeFiles/test.dir/depend.make | 2 + build/CMakeFiles/test.dir/flags.make | 10 + build/CMakeFiles/test.dir/link.txt | 1 + build/CMakeFiles/test.dir/progress.make | 3 + build/CMakeFiles/test.dir/source/main.cpp.o | Bin 0 -> 151128 bytes build/CMakeFiles/test.dir/source/main.cpp.o.d | 522 ++++++ build/Makefile | 181 ++ build/bin/test | Bin 0 -> 82184 bytes build/cmake_install.cmake | 61 + include/.gitkeep | 0 libraries/.gitkeep | 0 source/main.cpp | 7 + 33 files changed, 4954 insertions(+) create mode 100644 CMakeLists.txt create mode 100755 build.sh create mode 100644 build/CMakeCache.txt create mode 100644 build/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake create mode 100755 build/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_CXX.bin create mode 100644 build/CMakeFiles/3.31.4/CMakeSystem.cmake create mode 100644 build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 build/CMakeFiles/Makefile.cmake create mode 100644 build/CMakeFiles/Makefile2 create mode 100644 build/CMakeFiles/TargetDirectories.txt create mode 100644 build/CMakeFiles/cmake.check_cache create mode 100644 build/CMakeFiles/progress.marks create mode 100644 build/CMakeFiles/test.dir/DependInfo.cmake create mode 100644 build/CMakeFiles/test.dir/build.make create mode 100644 build/CMakeFiles/test.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/test.dir/compiler_depend.internal create mode 100644 build/CMakeFiles/test.dir/compiler_depend.make create mode 100644 build/CMakeFiles/test.dir/compiler_depend.ts create mode 100644 build/CMakeFiles/test.dir/depend.make create mode 100644 build/CMakeFiles/test.dir/flags.make create mode 100644 build/CMakeFiles/test.dir/link.txt create mode 100644 build/CMakeFiles/test.dir/progress.make create mode 100644 build/CMakeFiles/test.dir/source/main.cpp.o create mode 100644 build/CMakeFiles/test.dir/source/main.cpp.o.d create mode 100644 build/Makefile create mode 100755 build/bin/test create mode 100644 build/cmake_install.cmake create mode 100644 include/.gitkeep create mode 100644 libraries/.gitkeep create mode 100644 source/main.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9b40ae0 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,75 @@ +cmake_minimum_required(VERSION 3.20) +project(CPP_TEMPLATE VERSION 0.1.0 LANGUAGES CXX) + +set(CMAKE_CXX_STANDARD 23) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +# Set output directories +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) + +# Add include directories +include_directories(${CMAKE_SOURCE_DIR}/include) +include_directories(${CMAKE_SOURCE_DIR}/libraries) + +# Gather all source files (.cpp, .c) +file(GLOB_RECURSE PROJECT_SOURCES + ${CMAKE_SOURCE_DIR}/include/*.cpp + ${CMAKE_SOURCE_DIR}/include/*.c + ${CMAKE_SOURCE_DIR}/libraries/*.cpp + ${CMAKE_SOURCE_DIR}/libraries/*.c + ${CMAKE_SOURCE_DIR}/source/*.cpp + ${CMAKE_SOURCE_DIR}/source/*.c +) + +# Gather all header files (.hpp, .h) +file(GLOB_RECURSE PROJECT_HEADERS + ${CMAKE_SOURCE_DIR}/include/*.hpp + ${CMAKE_SOURCE_DIR}/include/*.h + ${CMAKE_SOURCE_DIR}/libraries/*.hpp + ${CMAKE_SOURCE_DIR}/libraries/*.h + ${CMAKE_SOURCE_DIR}/source/*.hpp + ${CMAKE_SOURCE_DIR}/source/*.h +) + +# Allow user to set output program name +option(OUTPUT_NAME "Name of the output executable" "") +if(OUTPUT_NAME STREQUAL "") + set(EXECUTABLE_NAME ${PROJECT_NAME}) +else() + set(EXECUTABLE_NAME ${OUTPUT_NAME}) +endif() + +# Add executable with all sources +add_executable(${EXECUTABLE_NAME} + ${PROJECT_SOURCES} + ${PROJECT_HEADERS} +) + +# Set output name property (for consistency) +set_target_properties(${EXECUTABLE_NAME} PROPERTIES OUTPUT_NAME ${EXECUTABLE_NAME}) + +# Enable warnings and extra diagnostics +if (MSVC) + target_compile_options(${EXECUTABLE_NAME} PRIVATE /W4 /permissive- /analyze) +else() + target_compile_options(${EXECUTABLE_NAME} PRIVATE + -Wall + -Wextra + -Wpedantic + -Wshadow + -Wconversion + -Wsign-conversion + -Wuninitialized + -Wunused + -Werror=return-type + -fsanitize=address,undefined + -g + ) + target_link_options(${EXECUTABLE_NAME} PRIVATE -fsanitize=address,undefined) +endif() + +# Optionally, enable testing +# enable_testing() +# add_subdirectory(tests) \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..d58bfd0 --- /dev/null +++ b/build.sh @@ -0,0 +1,23 @@ +if [ -z "$1" ]; then + echo "Error: Invalid Argument" + echo "Usage: $0 " + exit 1 +fi + +if [ ! -d "./build" ]; then + echo "Creating build directory..." + mkdir build +fi + +echo ">>> Building C++ Project <<<" +cd ./build +cmake -DOUTPUT_NAME=$1 .. +echo ">>> Compiling... <<<" +make +if [ $? -ne 0 ]; then + echo "Error: Build failed" + exit 1 +fi +cp ./bin/$1 ../ +echo ">>> Build Complete <<<" +echo ">>> Executable: $1 <<<" \ No newline at end of file diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..37db53b --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,357 @@ +# This is the CMakeCache file. +# For build in directory: /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build +# It was generated by CMake: /usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND + +//Path to a program. +CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/c++ + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING=-L/usr/local/opt/tcl-tk/lib + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/pkgRedirects + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING=-L/usr/local/opt/tcl-tk/lib + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/objdump + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING=13.7 + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:PATH=/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=CPP_TEMPLATE + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING=-L/usr/local/opt/tcl-tk/lib + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/tapi + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +CPP_TEMPLATE_BINARY_DIR:STATIC=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build + +//Value Computed by CMake +CPP_TEMPLATE_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +CPP_TEMPLATE_SOURCE_DIR:STATIC=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE + +//Name of the output executable +OUTPUT_NAME:BOOL=test + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=31 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE +//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/local/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..f679881 --- /dev/null +++ b/build/CMakeFiles/3.31.4/CMakeCXXCompiler.cmake @@ -0,0 +1,101 @@ +set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "15.0.0.15000100") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 1022.1) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/local/opt/tcl-tk/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + diff --git a/build/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.31.4/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..143b1e629e091620fe88ce5e112e09ed92e3056f GIT binary patch literal 16696 zcmeI3&ubG=5XWCkYb(~aco0RwoJ1}3ms(=6nwD;x#h4b25L(J>lWgrmnv`UNjZo=9 z4@LSX2>u5iy@}|dN5Q|K7jF>?UW!O@zHc`s>yL|9zXP-H&AfTDGoRh-eEjz1s7t9x zR4H{#v|ltU#&Z>uol@sSlcHMBPtIBk*8Mqn!x9Obf3%P%E`eHStZXJ6V(urxJ{8!V z;)bF=h}NF7>G^x#4(HpyEzQWmQV;^WqZJNgyWP|}UoKT!34g6GamUZM99)7O%GaJu z_FC6UkKIy1yQS5#vBUMf3i4%xd$7U%Z_?tQveS31X}ifT;n&sV)Lg+Bf+g4*`?^xw z__m0P%W^HS<6;ksjT+91Zio%u?_}MS^`z*$CU!+$q#YB5VhicWzP|?i| z73#%;*pTz0sN-VS*QcMdWAC56KG?l6(lOgk)ERG!k4(g+^>F-ydew8*2d9E7 z$f_=hqMo&cQr)s%32gACkN^pg011!)36KB@kN^pg011!)36KB@kN^pg011!)36KB@ zkN^pg011!)36KB@kN^pg011!)36KB@kN^pg011!)36KB@kN^pg011!)36KB@kih>+ z;9+v-^Pcq`?eAoA?FLL zvGhSac6w%Ryy`x2%B#At;Z+ug0r9zB~MkXmuJM6cSbYTe8#ZYued#@-^vZ%~_Fl)QR;K zx1?lT8vzjX(kpkGbM-QZZtUe?E*|6UINuIzr0>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o new file mode 100644 index 0000000000000000000000000000000000000000..8f49374dce45f315981f3152cbb424ee425ef8ad GIT binary patch literal 1536 zcmbVM&ubGw6rQv(4QSgOJXCNYpog4fQz-c3l8|hPP+KVx#1Mud*(8g}CTunu3PLZ6 zp$Pr~9z6ONc=Y0-9t5vBdhr%PJQb1Z_jcc8lSmKtk(uxP{N@ewvR{6EKV1zY9^? zR6~DVw;x@2vA-Pi-QkKPcqi@I7Zz>%PoKyiu05o zS(EC=ySv+ax9Rzuw(V8&y985$b9s8Az-3lr2m2y6OvO@{R+6ugbshezSh>?bf#|+Pel7K4sj#ZQ zAJ374c{X}LjG`fd5Mvt~XpAfnuVfGxX3j{5n4sB%ok%ez83BQx5cP?D;2MZ?-1!0Q zbsU&xyTG>o4v?GTCdaR_oniYi+Z$}#WU~$xA27#lbR~_!Ks9ao??WzTEDiz3^<3eL a_-H4)8L;y63E5GO%Xxar*rf5IHvR&<>gk98 literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..128b136 --- /dev/null +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,240 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Darwin - 22.6.0 - x86_64 + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/local/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: + + The output was: + 1 + ld: library 'c++' not found + clang: error: linker command failed with exit code 1 (use -v to see invocation) + + + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/local/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /Library/Developer/CommandLineTools/usr/bin/c++ + Build flags: + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is AppleClang, found in: + /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "try_compile-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "/usr/local/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2" + binary: "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-L/usr/local/opt/tcl-tk/lib" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.7" + CMAKE_OSX_SYSROOT: "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2' + + Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ad91c/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ad91c.dir/build.make CMakeFiles/cmTC_ad91c.dir/build + Building CXX object CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o + /Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -v -Wl,-v -MD -MT CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Apple clang version 15.0.0 (clang-1500.1.0.2.5) + Target: x86_64-apple-darwin22.6.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx13.7.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=14.2 -fvisibility-inlines-hidden-static-local-var -target-cpu penryn -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 1022.1 -v -fcoverage-compilation-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 15.0.0 (clang-1500.1.0.2.5) default target x86_64-apple-darwin22.6.0 + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/System/Library/Frameworks (framework directory) + End of search list. + Linking CXX executable cmTC_ad91c + /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad91c.dir/link.txt --verbose=1 + Apple clang version 15.0.0 (clang-1500.1.0.2.5) + Target: x86_64-apple-darwin22.6.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 13.7.0 14.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -o cmTC_ad91c -L/usr/local/opt/tcl-tk/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:dyld-1022.1 + BUILD 13:20:30 Nov 10 2023 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h + will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.0.12.8) + Library search paths: + /usr/local/opt/tcl-tk/lib + Framework search paths: + /Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/opt/tcl-tk/lib -v -Wl,-v CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_ad91c + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:113 (message)" + - "/usr/local/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Effective list of requested architectures (possibly empty) : "" + Effective list of architectures found in the ABI info binary: "x86_64" + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "/usr/local/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "/usr/local/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: '/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/local/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ad91c/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ad91c.dir/build.make CMakeFiles/cmTC_ad91c.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -v -Wl -v -MD -MT CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 15.0.0 (clang-1500.1.0.2.5)] + ignore line: [Target: x86_64-apple-darwin22.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx13.7.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=all -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=2 -target-sdk-version=14.2 -fvisibility-inlines-hidden-static-local-var -target-cpu penryn -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 1022.1 -v -fcoverage-compilation-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 15.0.0 (clang-1500.1.0.2.5) default target x86_64-apple-darwin22.6.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_ad91c] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad91c.dir/link.txt --verbose=1] + ignore line: [Apple clang version 15.0.0 (clang-1500.1.0.2.5)] + ignore line: [Target: x86_64-apple-darwin22.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 13.7.0 14.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -o cmTC_ad91c -L/usr/local/opt/tcl-tk/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [x86_64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [13.7.0] ==> ignore + arg [14.2] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk] ==> ignore + arg [-o] ==> ignore + arg [cmTC_ad91c] ==> ignore + arg [-L/usr/local/opt/tcl-tk/lib] ==> dir [/usr/local/opt/tcl-tk/lib] + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_ad91c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/usr/local/opt/tcl-tk/lib] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/lib/darwin/libclang_rt.osx.a] + collapse library dir [/usr/local/opt/tcl-tk/lib] ==> [/usr/local/opt/tcl-tk/lib] + collapse library dir [/usr/local/opt/tcl-tk/lib] ==> [/usr/local/opt/tcl-tk/lib] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/usr/local/opt/tcl-tk/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/local/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "/usr/local/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "/usr/local/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the CXX compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" + @(#)PROGRAM:ld PROJECT:dyld-1022.1 + BUILD 13:20:30 Nov 10 2023 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h + will use ld-classic for: armv6 armv7 armv7s arm64_32 i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 15.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 15.0.0 (tapi-1500.0.12.8) + Library search paths: + Framework search paths: +... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..9d3f98f --- /dev/null +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..3d0f9f9 --- /dev/null +++ b/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,52 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/CMakeLists.txt" + "CMakeFiles/3.31.4/CMakeCXXCompiler.cmake" + "CMakeFiles/3.31.4/CMakeSystem.cmake" + "/usr/local/share/cmake/Modules/CMakeCXXInformation.cmake" + "/usr/local/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/local/share/cmake/Modules/CMakeGenericSystem.cmake" + "/usr/local/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/usr/local/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/usr/local/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/local/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/local/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + "/usr/local/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/local/share/cmake/Modules/Compiler/Clang.cmake" + "/usr/local/share/cmake/Modules/Compiler/GNU.cmake" + "/usr/local/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake" + "/usr/local/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" + "/usr/local/share/cmake/Modules/Linker/AppleClang-CXX.cmake" + "/usr/local/share/cmake/Modules/Linker/AppleClang.cmake" + "/usr/local/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + "/usr/local/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + "/usr/local/share/cmake/Modules/Platform/Apple-Clang.cmake" + "/usr/local/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/usr/local/share/cmake/Modules/Platform/Darwin.cmake" + "/usr/local/share/cmake/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake" + "/usr/local/share/cmake/Modules/Platform/Linker/Apple-AppleClang.cmake" + "/usr/local/share/cmake/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/test.dir/DependInfo.cmake" + ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..f274ced --- /dev/null +++ b/build/CMakeFiles/Makefile2 @@ -0,0 +1,122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/test.dir/all +.PHONY : all + +# The main recursive "codegen" target. +codegen: CMakeFiles/test.dir/codegen +.PHONY : codegen + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/test.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/test.dir + +# All Build rule for target. +CMakeFiles/test.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles --progress-num=1,2 "Built target test" +.PHONY : CMakeFiles/test.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles 0 +.PHONY : CMakeFiles/test.dir/rule + +# Convenience name for target. +test: CMakeFiles/test.dir/rule +.PHONY : test + +# codegen rule for target. +CMakeFiles/test.dir/codegen: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/codegen + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles --progress-num=1,2 "Finished codegen for target test" +.PHONY : CMakeFiles/test.dir/codegen + +# clean rule for target. +CMakeFiles/test.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/clean +.PHONY : CMakeFiles/test.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..aa025d2 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/test.dir +/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/edit_cache.dir +/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/build/CMakeFiles/test.dir/DependInfo.cmake b/build/CMakeFiles/test.dir/DependInfo.cmake new file mode 100644 index 0000000..1a8b218 --- /dev/null +++ b/build/CMakeFiles/test.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp" "CMakeFiles/test.dir/source/main.cpp.o" "gcc" "CMakeFiles/test.dir/source/main.cpp.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/test.dir/build.make b/build/CMakeFiles/test.dir/build.make new file mode 100644 index 0000000..903d231 --- /dev/null +++ b/build/CMakeFiles/test.dir/build.make @@ -0,0 +1,113 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build + +# Include any dependencies generated for this target. +include CMakeFiles/test.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/test.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/test.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/test.dir/flags.make + +CMakeFiles/test.dir/codegen: +.PHONY : CMakeFiles/test.dir/codegen + +CMakeFiles/test.dir/source/main.cpp.o: CMakeFiles/test.dir/flags.make +CMakeFiles/test.dir/source/main.cpp.o: /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp +CMakeFiles/test.dir/source/main.cpp.o: CMakeFiles/test.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/test.dir/source/main.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/source/main.cpp.o -MF CMakeFiles/test.dir/source/main.cpp.o.d -o CMakeFiles/test.dir/source/main.cpp.o -c /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp + +CMakeFiles/test.dir/source/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test.dir/source/main.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp > CMakeFiles/test.dir/source/main.cpp.i + +CMakeFiles/test.dir/source/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test.dir/source/main.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp -o CMakeFiles/test.dir/source/main.cpp.s + +# Object files for target test +test_OBJECTS = \ +"CMakeFiles/test.dir/source/main.cpp.o" + +# External object files for target test +test_EXTERNAL_OBJECTS = + +bin/test: CMakeFiles/test.dir/source/main.cpp.o +bin/test: CMakeFiles/test.dir/build.make +bin/test: CMakeFiles/test.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable bin/test" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/test.dir/build: bin/test +.PHONY : CMakeFiles/test.dir/build + +CMakeFiles/test.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/test.dir/cmake_clean.cmake +.PHONY : CMakeFiles/test.dir/clean + +CMakeFiles/test.dir/depend: + cd /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/test.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/test.dir/depend + diff --git a/build/CMakeFiles/test.dir/cmake_clean.cmake b/build/CMakeFiles/test.dir/cmake_clean.cmake new file mode 100644 index 0000000..cb4bd7f --- /dev/null +++ b/build/CMakeFiles/test.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/test.dir/source/main.cpp.o" + "CMakeFiles/test.dir/source/main.cpp.o.d" + "bin/test" + "bin/test.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/test.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/test.dir/compiler_depend.internal b/build/CMakeFiles/test.dir/compiler_depend.internal new file mode 100644 index 0000000..8b0c456 --- /dev/null +++ b/build/CMakeFiles/test.dir/compiler_depend.internal @@ -0,0 +1,526 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +CMakeFiles/test.dir/source/main.cpp.o + /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_n.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/equal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill_n.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_end.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_first_of.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_if.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iter_swap.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max_element.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min_element.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/move.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove_if.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/reverse.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/search.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__assert + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__availability + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/bit_cast.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/countr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/popcount.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/rotate.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit_reference + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/duration.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/steady_clock.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/system_clock.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/time_point.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/common_comparison_category.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/is_eq.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/ordering.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/partial_order.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/strong_order.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/synth_three_way.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/three_way_comparable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/weak_order.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/arithmetic.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/boolean_testable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/class_or_enum.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/common_reference_with.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/convertible_to.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/copyable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/derived_from.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/destructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/different_from.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/equality_comparable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/invocable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/movable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/predicate.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/regular.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/relation.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/same_as.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/semiregular.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/swappable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/totally_ordered.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config_site + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__format/enable_insertable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/binary_function.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/hash.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/identity.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/invoke.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/operations.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/reference_wrapper.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unary_function.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unwrap_ref.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/weak_result_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/array.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/get.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/hash.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/memory_resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/pair.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string_view.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/subrange.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/tuple.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ios/fpos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/access.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/advance.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/concepts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/data.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/default_sentinel.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/distance.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/empty.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_move.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_swap.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/next.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/prev.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/readable_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_access.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/size.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/wrap_iter.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/addressof.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocate_at_least.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocation_guard.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_destructor.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/auto_ptr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/compressed_pair.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/construct_at.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/pointer_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/shared_ptr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/swap_allocator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/unique_ptr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uses_allocator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/voidify.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/access.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/concepts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/dangling.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/data.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/empty.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_view.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/size.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/subrange.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/view_interface.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/char_traits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/extern_template_lists.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/timed_backoff_policy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/apply_cv.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/make_tuple_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/pair_like.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/sfinae_helpers.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_element.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_indices.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like_ext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_size.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_const.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_cv.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_volatile.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_union.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/alignment_of.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/apply_cv.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_reference.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conditional.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conjunction.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cv.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/decay.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/dependent_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/disjunction.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/enable_if.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/extent.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/integral_constant.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_abstract.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_allocator.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_array.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_base_of.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_callable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_class.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_compound.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_const.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_convertible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_destructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_empty.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_enum.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_final.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_function.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_integral.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_object.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pod.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_same.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scalar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_specialization.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_swappable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivial.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_union.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_void.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_volatile.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/lazy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_signed.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/maybe_const.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/nat.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/negation.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/promote.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/rank.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cv.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_extent.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_reference.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/result_of.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_identity.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/underlying_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/void_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/auto_cast.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/convert_to_integral.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/declval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exception_guard.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exchange.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/forward.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/integer_sequence.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/move.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/pair.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/piecewise_construct.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/priority_tag.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/swap.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/unreachable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__verbose_abort + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cmath + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/compare + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/version + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/share/asan_ignorelist.txt + diff --git a/build/CMakeFiles/test.dir/compiler_depend.make b/build/CMakeFiles/test.dir/compiler_depend.make new file mode 100644 index 0000000..9441bce --- /dev/null +++ b/build/CMakeFiles/test.dir/compiler_depend.make @@ -0,0 +1,1567 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +CMakeFiles/test.dir/source/main.cpp.o: /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/equal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill_n.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_end.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_first_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iter_swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/reverse.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/search.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__assert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__availability \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/bit_cast.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/countr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/popcount.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/rotate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/duration.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/steady_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/system_clock.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/time_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/common_comparison_category.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/is_eq.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/ordering.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/partial_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/strong_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/synth_three_way.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/three_way_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/weak_order.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/arithmetic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/boolean_testable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/class_or_enum.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/common_reference_with.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/convertible_to.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/copyable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/derived_from.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/different_from.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/equality_comparable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/invocable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/movable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/predicate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/regular.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/relation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/same_as.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/semiregular.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/swappable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/totally_ordered.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config_site \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__format/enable_insertable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/binary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/hash.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/identity.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/invoke.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/operations.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/reference_wrapper.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unary_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unwrap_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/weak_result_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/get.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/hash.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/memory_resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/subrange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/tuple.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ios/fpos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/advance.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/data.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/default_sentinel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/distance.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/next.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/prev.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/readable_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/wrap_iter.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/addressof.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocate_at_least.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocation_guard.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_destructor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/auto_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/compressed_pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/construct_at.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/pointer_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/shared_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/swap_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/unique_ptr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uses_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/voidify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/access.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/concepts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/dangling.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/data.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_view.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/subrange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/view_interface.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/char_traits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/extern_template_lists.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/timed_backoff_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/apply_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/make_tuple_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/pair_like.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/sfinae_helpers.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_element.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_indices.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like_ext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/alignment_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/apply_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conditional.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conjunction.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/decay.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/dependent_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/disjunction.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/enable_if.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/extent.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/integral_constant.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_abstract.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_allocator.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_base_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_callable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_class.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_compound.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_empty.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_enum.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_final.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_function.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_object.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pod.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_same.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scalar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_specialization.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_swappable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivial.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_union.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_void.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/lazy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_signed.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/maybe_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/nat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/negation.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/promote.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/rank.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cv.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_extent.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_reference.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/result_of.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_identity.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/underlying_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/void_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/auto_cast.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/convert_to_integral.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/declval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exception_guard.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exchange.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/forward.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/integer_sequence.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/move.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/pair.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/piecewise_construct.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/priority_tag.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/swap.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/unreachable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__verbose_abort \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cmath \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/compare \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/version \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/share/asan_ignorelist.txt + + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_ctype.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdarg.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wint_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mbstate_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mach_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sched.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/sched.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/nl_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/get.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_size.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctime: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_destructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/ostreambuf_iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/version: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/syslimits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__errc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/typeinfo: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string_view: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_rvalue_reference.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/_wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_const_lvalue_ref.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/new: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/common_reference_with.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/data.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp_ref_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/istream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ios: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/next.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/initializer_list: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/exception: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/errno.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/__stddef_max_align_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwchar: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstring: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdlib: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdint: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstddef: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cmath: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/climits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/duration.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__assert: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cerrno: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/forward.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/unreachable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/pair.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/readable_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/integer_sequence.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exception_guard.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/dangling.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/declval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_volatile.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/dependent_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_reference.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cvref.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const_ref.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/segmented_iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_const.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/pair_like.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_all_extents.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/promote.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/noexcept_move_assign_container.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/negation.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_unsigned.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/lazy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_extent.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/can_extract_key.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unbounded_array.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_default_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/math.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copyable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_virtual_destructor.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_object_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/totally_ordered.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/convert_to_integral.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/atomic: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_swappable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_standard_layout.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_specialization.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/nat.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed_integer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_same.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_referenceable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/result_of.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/underlying_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference_wrapper.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_primary_template.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_polymorphic.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_destructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/type_traits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_cv.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_default_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/apply_cv.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/back_insert_iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_union.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/array.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_move_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/maybe_const.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_unsigned_integer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_implicitly_default_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/is_eq.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_fundamental.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_function.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_convertible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__undef_macros: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/convertible_to.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_base_of.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constant_evaluated.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_const.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_array.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctype_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/operations.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_always_bitcastable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_volatile.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_allocator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_aggregate.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_literal_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_abstract.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/has_unique_object_representation.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/extent.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_bounded_array.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_first_of.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/decay.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_signed.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cvref.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/copy_cv.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/disjunction.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/apply_cv.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/priority_tag.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/alignment_of.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_union.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/aligned_storage.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/swap.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_reference.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_volatile.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_lvalue_reference.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/different_from.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/advance.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_const.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_identity.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iterator_operations.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/destructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_like_ext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_element.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_core_convertible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/runetype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/swappable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/sfinae_helpers.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_destructor.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/timed_backoff_policy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/extern_template_lists.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/weak_order.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/view_interface.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/move.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/comp.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_pod.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/shared_ptr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/synth_three_way.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/subrange.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/math.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_view.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/unique_ptr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/enable_borrowed_range.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_empty.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/common_comparison_category.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/data.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mutex_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/remove_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_compound.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/wrap_iter.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uses_allocator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/streambuf: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/uninitialized_algorithms.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_reference.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scalar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/swap_allocator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/memory_resource.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_class.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_default_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/convert_to_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/high_resolution_clock.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/boolean_testable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/construct_at.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/auto_ptr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_arg_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/default_sentinel.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_enum.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocation_guard.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_object.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config_site: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocate_at_least.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/empty.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_range.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conditional.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_move_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/prev.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/conjunction.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/limits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/hash.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/pair.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/istreambuf_iterator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__thread/poll_with_backoff.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/access.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/unwrap_iter.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/bit_cast.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/incrementable_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/system_error: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/distance.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way_result.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/rotate.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/copyable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_member_function_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/access.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/exchange.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ios/fpos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_copy_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string_view.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cstdio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_move_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/hash.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_copy_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_final.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/voidify.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unary_function.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/reverse.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/bitset: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__string/char_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/steady_clock.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/pointer_traits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/ranges_iterator_concept.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/reference_wrapper.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/invoke.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/identity.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/weak_result_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/make_signed.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/addressof.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__format/enable_insertable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_valid_expansion.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/common_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_strong_order_fallback.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__config: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/concepts.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/same_as.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/relation.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/strong_order.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/size.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/predicate.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/concepts.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/ratio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_floating_point.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/semiregular.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__verbose_abort: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/class_or_enum.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/invocable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/unwrap_ref.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_char_like_type.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bsd_locale_defaults.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_copy_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/allocator.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/ordering.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/iter_swap.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/integral_constant.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/tuple.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__ranges/size.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/xlocale/__wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/system_clock.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_weak_order_fallback.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/auto_cast.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/type_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/memory_resource.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_three_way.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__chrono/time_point.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_constructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/add_cv.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdexcept: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/make_tuple_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit_reference: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/popcount.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/empty.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__functional/binary_function.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/__wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__bit/countr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/piecewise_construct.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_end.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/mutex: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_assignable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/rank.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_arithmetic.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/min_element.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_callable.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/share/asan_ignorelist.txt: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/pthread/pthread_impl.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_void.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivially_destructible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__utility/move.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/movable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/max_element.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_null_pointer.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/fill_n.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_scoped_enum.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/equality_comparable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/compare: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/wchar.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/cwctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/equal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory/compressed_pair.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/derived_from.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_move_common.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/find_if.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/compare_partial_order_fallback.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_trivial.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/remove_if.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__availability: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_nothrow_convertible.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__threading_support: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_swap.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/arithmetic.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/search.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/enable_if.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__fwd/subrange.h: + +/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/source/main.cpp: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/three_way_comparable.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__concepts/regular.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__compare/partial_order.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__mbstate_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_nl_item.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__tuple_dir/tuple_indices.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_wctrans_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/iter_move.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/iosfwd: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__debug: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__algorithm/copy_n.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/void_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__type_traits/is_integral.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__iterator/reverse_access.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/c++/v1/__memory_resource/polymorphic_allocator.h: diff --git a/build/CMakeFiles/test.dir/compiler_depend.ts b/build/CMakeFiles/test.dir/compiler_depend.ts new file mode 100644 index 0000000..a4eb021 --- /dev/null +++ b/build/CMakeFiles/test.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for test. diff --git a/build/CMakeFiles/test.dir/depend.make b/build/CMakeFiles/test.dir/depend.make new file mode 100644 index 0000000..3f2657b --- /dev/null +++ b/build/CMakeFiles/test.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for test. +# This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/test.dir/flags.make b/build/CMakeFiles/test.dir/flags.make new file mode 100644 index 0000000..c013a96 --- /dev/null +++ b/build/CMakeFiles/test.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.31 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/include -I/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/libraries + +CXX_FLAGS = -std=c++2b -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -Wall -Wextra -Wpedantic -Wshadow -Wconversion -Wsign-conversion -Wuninitialized -Wunused -Werror=return-type -fsanitize=address,undefined -g + diff --git a/build/CMakeFiles/test.dir/link.txt b/build/CMakeFiles/test.dir/link.txt new file mode 100644 index 0000000..16f191b --- /dev/null +++ b/build/CMakeFiles/test.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/opt/tcl-tk/lib -fsanitize=address,undefined CMakeFiles/test.dir/source/main.cpp.o -o bin/test diff --git a/build/CMakeFiles/test.dir/progress.make b/build/CMakeFiles/test.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/build/CMakeFiles/test.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/build/CMakeFiles/test.dir/source/main.cpp.o b/build/CMakeFiles/test.dir/source/main.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..b8f9f3e7bf3d1f625075a7ae7efea8caa32fb978 GIT binary patch literal 151128 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 r8n6vCVxZNyTJ+tfiXUqZMnSKg=~GBGm=E#2y1 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 literal 0 HcmV?d00001 diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..9739c0a --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,61 @@ +# Install script for directory: /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/include/.gitkeep b/include/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/libraries/.gitkeep b/libraries/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/source/main.cpp b/source/main.cpp new file mode 100644 index 0000000..df28b27 --- /dev/null +++ b/source/main.cpp @@ -0,0 +1,7 @@ +#include + +int main() +{ + std::cout << "Hello, World!" << std::endl; + return 0; +} \ No newline at end of file