From 2c056ef45e77d91e5b63c4f286451817d459df7c Mon Sep 17 00:00:00 2001 From: Server Ubunto - HOME Date: Fri, 20 Jun 2025 17:51:35 +0100 Subject: [PATCH] Added file IO operations, and argument parcing --- CMakeLists.txt | 9 +- RankingSystem | Bin 0 -> 87640 bytes build/CMakeCache.txt | 94 +- .../{3.31.4 => 3.28.3}/CMakeCXXCompiler.cmake | 56 +- .../CMakeDetermineCompilerABI_CXX.bin | Bin 16696 -> 15992 bytes build/CMakeFiles/3.28.3/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 92 +- build/CMakeFiles/3.28.3/CompilerIdCXX/a.out | Bin 0 -> 16096 bytes build/CMakeFiles/3.31.4/CMakeSystem.cmake | 15 - .../3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o | Bin 1536 -> 0 bytes build/CMakeFiles/CMakeConfigureLog.yaml | 372 ++-- .../CMakeDirectoryInformation.cmake | 6 +- build/CMakeFiles/Makefile.cmake | 48 +- build/CMakeFiles/Makefile2 | 56 +- build/CMakeFiles/Progress/3 | 1 + build/CMakeFiles/Progress/count.txt | 1 + .../DependInfo.cmake | 4 +- build/CMakeFiles/RankingSystem.dir/build.make | 142 ++ .../RankingSystem.dir/cmake_clean.cmake | 15 + .../compiler_depend.internal | 285 +++ .../RankingSystem.dir/compiler_depend.make | 512 ++++++ .../compiler_depend.ts | 2 +- .../depend.make | 2 +- build/CMakeFiles/RankingSystem.dir/flags.make | 10 + .../include/file_io/files.cpp.o | Bin 0 -> 13624 bytes .../include/file_io/files.cpp.o.d | 60 + .../include/logger/logger.cpp.o | Bin 0 -> 54128 bytes .../include/logger/logger.cpp.o.d | 91 + build/CMakeFiles/RankingSystem.dir/link.txt | 1 + .../progress.make | 2 + .../RankingSystem.dir/source/main.cpp.o | Bin 0 -> 40040 bytes .../RankingSystem.dir/source/main.cpp.o.d | 92 + build/CMakeFiles/TargetDirectories.txt | 6 +- build/CMakeFiles/progress.marks | 2 +- 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/flags.make | 10 - build/CMakeFiles/test.dir/link.txt | 1 - build/CMakeFiles/test.dir/source/main.cpp.o | Bin 151128 -> 0 bytes build/CMakeFiles/test.dir/source/main.cpp.o.d | 522 ------ build/Makefile | 96 +- build/bin/RankingSystem | Bin 0 -> 87640 bytes build/bin/test | Bin 82184 -> 0 bytes build/cmake_install.cmake | 31 +- include/file_io/files.cpp | 10 + include/file_io/files.h | 10 + include/logger/logger.cpp | 229 +++ include/logger/logger.h | 40 + source/main.cpp | 109 +- 51 files changed, 2060 insertions(+), 3206 deletions(-) create mode 100755 RankingSystem rename build/CMakeFiles/{3.31.4 => 3.28.3}/CMakeCXXCompiler.cmake (71%) rename build/CMakeFiles/{3.31.4 => 3.28.3}/CMakeDetermineCompilerABI_CXX.bin (55%) create mode 100644 build/CMakeFiles/3.28.3/CMakeSystem.cmake rename build/CMakeFiles/{3.31.4 => 3.28.3}/CompilerIdCXX/CMakeCXXCompilerId.cpp (91%) create mode 100755 build/CMakeFiles/3.28.3/CompilerIdCXX/a.out delete mode 100644 build/CMakeFiles/3.31.4/CMakeSystem.cmake delete mode 100644 build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o create mode 100644 build/CMakeFiles/Progress/3 create mode 100644 build/CMakeFiles/Progress/count.txt rename build/CMakeFiles/{test.dir => RankingSystem.dir}/DependInfo.cmake (52%) create mode 100644 build/CMakeFiles/RankingSystem.dir/build.make create mode 100644 build/CMakeFiles/RankingSystem.dir/cmake_clean.cmake create mode 100644 build/CMakeFiles/RankingSystem.dir/compiler_depend.internal create mode 100644 build/CMakeFiles/RankingSystem.dir/compiler_depend.make rename build/CMakeFiles/{test.dir => RankingSystem.dir}/compiler_depend.ts (84%) rename build/CMakeFiles/{test.dir => RankingSystem.dir}/depend.make (53%) create mode 100644 build/CMakeFiles/RankingSystem.dir/flags.make create mode 100644 build/CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o create mode 100644 build/CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o.d create mode 100644 build/CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o create mode 100644 build/CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o.d create mode 100644 build/CMakeFiles/RankingSystem.dir/link.txt rename build/CMakeFiles/{test.dir => RankingSystem.dir}/progress.make (50%) create mode 100644 build/CMakeFiles/RankingSystem.dir/source/main.cpp.o create mode 100644 build/CMakeFiles/RankingSystem.dir/source/main.cpp.o.d delete mode 100644 build/CMakeFiles/test.dir/build.make delete mode 100644 build/CMakeFiles/test.dir/cmake_clean.cmake delete mode 100644 build/CMakeFiles/test.dir/compiler_depend.internal delete mode 100644 build/CMakeFiles/test.dir/compiler_depend.make delete mode 100644 build/CMakeFiles/test.dir/flags.make delete mode 100644 build/CMakeFiles/test.dir/link.txt delete mode 100644 build/CMakeFiles/test.dir/source/main.cpp.o delete mode 100644 build/CMakeFiles/test.dir/source/main.cpp.o.d create mode 100755 build/bin/RankingSystem delete mode 100755 build/bin/test create mode 100644 include/file_io/files.cpp create mode 100644 include/file_io/files.h create mode 100644 include/logger/logger.cpp create mode 100644 include/logger/logger.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b40ae0..503c0cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,8 @@ 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}/include/*.cpp ${CMAKE_SOURCE_DIR}/include/*.c ${CMAKE_SOURCE_DIR}/libraries/*.cpp @@ -25,6 +27,8 @@ file(GLOB_RECURSE PROJECT_SOURCES # Gather all header files (.hpp, .h) file(GLOB_RECURSE PROJECT_HEADERS + ${CMAKE_SOURCE_DIR}/include/*/*.hpp + ${CMAKE_SOURCE_DIR}/include/*/*.h ${CMAKE_SOURCE_DIR}/include/*.hpp ${CMAKE_SOURCE_DIR}/include/*.h ${CMAKE_SOURCE_DIR}/libraries/*.hpp @@ -33,6 +37,9 @@ file(GLOB_RECURSE PROJECT_HEADERS ${CMAKE_SOURCE_DIR}/source/*.h ) +message(STATUS "Project sources: ${PROJECT_SOURCES}") + + # Allow user to set output program name option(OUTPUT_NAME "Name of the output executable" "") if(OUTPUT_NAME STREQUAL "") @@ -72,4 +79,4 @@ endif() # Optionally, enable testing # enable_testing() -# add_subdirectory(tests) \ No newline at end of file +# add_subdirectory(tests) diff --git a/RankingSystem b/RankingSystem new file mode 100755 index 0000000000000000000000000000000000000000..eddaf46f8567bff91f8c7a5294703e4d12468283 GIT binary patch literal 87640 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 lrm#WB={^$3kg!$RQ-Ee*hEc8gl>u 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 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 +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif # else -# define CXX_STD CXX_STD_98 +# define CXX_STD 199711L # 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 +# define CXX_STD _MSVC_LANG #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 +#if CXX_STD > 202002L "23" -#elif CXX_STD > CXX_STD_17 +#elif CXX_STD > 201703L "20" -#elif CXX_STD > CXX_STD_14 +#elif CXX_STD >= 201703L "17" -#elif CXX_STD > CXX_STD_11 +#elif CXX_STD >= 201402L "14" -#elif CXX_STD >= CXX_STD_11 +#elif CXX_STD >= 201103L "11" #else "98" diff --git a/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out b/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c8ced32cf082708045baa23211fbf858c298928d GIT binary patch literal 16096 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 ASpWb4 literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/3.31.4/CMakeSystem.cmake b/build/CMakeFiles/3.31.4/CMakeSystem.cmake deleted file mode 100644 index 0dee546..0000000 --- a/build/CMakeFiles/3.31.4/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Darwin-22.6.0") -set(CMAKE_HOST_SYSTEM_NAME "Darwin") -set(CMAKE_HOST_SYSTEM_VERSION "22.6.0") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Darwin-22.6.0") -set(CMAKE_SYSTEM_NAME "Darwin") -set(CMAKE_SYSTEM_VERSION "22.6.0") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o b/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o deleted file mode 100644 index 8f49374dce45f315981f3152cbb424ee425ef8ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 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 diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml index 128b136..02b5e6a 100644 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ b/build/CMakeFiles/CMakeConfigureLog.yaml @@ -4,237 +4,273 @@ events: - kind: "message-v1" backtrace: - - "/usr/local/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" - "CMakeLists.txt:2 (project)" message: | - The system is: Darwin - 22.6.0 - x86_64 + The system is: Linux - 6.8.0-60-generic - 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)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake-3.28/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++ + Compiler: /usr/bin/c++ Build flags: - Id flags: -c + Id flags: The output was: 0 - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - The CXX compiler identification is AppleClang, found in: - /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o + The CXX compiler identification is GNU, found in: + /mnt/combined/RankingSystem/build/CMakeFiles/3.28.3/CompilerIdCXX/a.out - 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)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "/usr/share/cmake-3.28/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" + source: "/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q" + binary: "/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q" 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" + CMAKE_EXE_LINKER_FLAGS: "" buildResult: variable: "CMAKE_CXX_ABI_COMPILED" cached: true stdout: | - Change Dir: '/Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build/CMakeFiles/CMakeScratch/TryCompile-r2r2O2' + Change Dir: '/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q' - 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 + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_2c70d/fast + /usr/bin/gmake -f CMakeFiles/cmTC_2c70d.dir/build.make CMakeFiles/cmTC_2c70d.dir/build + gmake[1]: Entering directory '/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q' + Building CXX object CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -v -o CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 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" + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_2c70d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccIJgKwo.s + GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) + compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13" + ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed" + ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include" #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) + /usr/include/c++/13 + /usr/include/x86_64-linux-gnu/c++/13 + /usr/include/c++/13/backward + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include 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 + Compiler executable checksum: c81c05345ce537099dafd5580045814a + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/' + as -v --64 -o CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccIJgKwo.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.' + Linking CXX executable cmTC_2c70d + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c70d.dir/link.txt --verbose=1 + /usr/bin/c++ -v CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2c70d + Using built-in specs. + COLLECT_GCC=/usr/bin/c++ + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 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 + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2c70d' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_2c70d.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSbpdBE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2c70d /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2c70d' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_2c70d.' + gmake[1]: Leaving directory '/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q' 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)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/usr/share/cmake-3.28/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] + add: [/usr/include/c++/13] + add: [/usr/include/x86_64-linux-gnu/c++/13] + add: [/usr/include/c++/13/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/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] + collapse include dir [/usr/include/c++/13] ==> [/usr/include/c++/13] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/13] ==> [/usr/include/x86_64-linux-gnu/c++/13] + collapse include dir [/usr/include/c++/13/backward] ==> [/usr/include/c++/13/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/13;/usr/include/x86_64-linux-gnu/c++/13;/usr/include/c++/13/backward;/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/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)" + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" + - "/usr/share/cmake-3.28/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'] + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q'] 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: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_2c70d/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_2c70d.dir/build.make CMakeFiles/cmTC_2c70d.dir/build] + ignore line: [gmake[1]: Entering directory '/mnt/combined/RankingSystem/build/CMakeFiles/CMakeScratch/TryCompile-YphK6q'] + ignore line: [Building CXX object CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] 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: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_2c70d.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccIJgKwo.s] + ignore line: [GNU C++17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/13"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] 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: [ /usr/include/c++/13] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/13] + ignore line: [ /usr/include/c++/13/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] 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: [Compiler executable checksum: c81c05345ce537099dafd5580045814a] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccIJgKwo.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_2c70d] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c70d.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2c70d ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] 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 + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2c70d' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_2c70d.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSbpdBE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_2c70d /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccSbpdBE.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> 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] + arg [cmTC_2c70d] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [CMakeFiles/cmTC_2c70d.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/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 index 9d3f98f..bd415d0 100644 --- a/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -1,9 +1,9 @@ # CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 # 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") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/combined/RankingSystem") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/combined/RankingSystem/build") # Force unix paths in dependencies. set(CMAKE_FORCE_UNIX_PATHS 1) diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake index 3d0f9f9..ecca426 100644 --- a/build/CMakeFiles/Makefile.cmake +++ b/build/CMakeFiles/Makefile.cmake @@ -1,5 +1,5 @@ # CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 # The generator used is: set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") @@ -7,32 +7,24 @@ 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" + "/mnt/combined/RankingSystem/CMakeLists.txt" + "CMakeFiles/3.28.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" ) # The corresponding makefile is: @@ -48,5 +40,5 @@ set(CMAKE_MAKEFILE_PRODUCTS # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/test.dir/DependInfo.cmake" + "CMakeFiles/RankingSystem.dir/DependInfo.cmake" ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 index f274ced..3081a1b 100644 --- a/build/CMakeFiles/Makefile2 +++ b/build/CMakeFiles/Makefile2 @@ -1,5 +1,5 @@ # CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 # Default target executed when no arguments are given to make. default_target: all @@ -45,70 +45,60 @@ cmake_force: SHELL = /bin/sh # The CMake executable. -CMAKE_COMMAND = /usr/local/bin/cmake +CMAKE_COMMAND = /usr/bin/cmake # The command to remove a file. -RM = /usr/local/bin/cmake -E rm -f +RM = /usr/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 +CMAKE_SOURCE_DIR = /mnt/combined/RankingSystem # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE/build +CMAKE_BINARY_DIR = /mnt/combined/RankingSystem/build #============================================================================= # Directory level rules for the build root directory # The main recursive "all" target. -all: CMakeFiles/test.dir/all +all: CMakeFiles/RankingSystem.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 +clean: CMakeFiles/RankingSystem.dir/clean .PHONY : clean #============================================================================= -# Target rules for target CMakeFiles/test.dir +# Target rules for target CMakeFiles/RankingSystem.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 +CMakeFiles/RankingSystem.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/RankingSystem.dir/build.make CMakeFiles/RankingSystem.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/RankingSystem.dir/build.make CMakeFiles/RankingSystem.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/mnt/combined/RankingSystem/build/CMakeFiles --progress-num=1,2,3,4 "Built target RankingSystem" +.PHONY : CMakeFiles/RankingSystem.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 +CMakeFiles/RankingSystem.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/combined/RankingSystem/build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/RankingSystem.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/combined/RankingSystem/build/CMakeFiles 0 +.PHONY : CMakeFiles/RankingSystem.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 +RankingSystem: CMakeFiles/RankingSystem.dir/rule +.PHONY : RankingSystem # 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 +CMakeFiles/RankingSystem.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/RankingSystem.dir/build.make CMakeFiles/RankingSystem.dir/clean +.PHONY : CMakeFiles/RankingSystem.dir/clean #============================================================================= # Special targets to cleanup operation of make. diff --git a/build/CMakeFiles/Progress/3 b/build/CMakeFiles/Progress/3 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/build/CMakeFiles/Progress/3 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/build/CMakeFiles/Progress/count.txt b/build/CMakeFiles/Progress/count.txt new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/build/CMakeFiles/Progress/count.txt @@ -0,0 +1 @@ +4 diff --git a/build/CMakeFiles/test.dir/DependInfo.cmake b/build/CMakeFiles/RankingSystem.dir/DependInfo.cmake similarity index 52% rename from build/CMakeFiles/test.dir/DependInfo.cmake rename to build/CMakeFiles/RankingSystem.dir/DependInfo.cmake index 1a8b218..8da0e62 100644 --- a/build/CMakeFiles/test.dir/DependInfo.cmake +++ b/build/CMakeFiles/RankingSystem.dir/DependInfo.cmake @@ -8,7 +8,9 @@ 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" + "/mnt/combined/RankingSystem/include/file_io/files.cpp" "CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o" "gcc" "CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o.d" + "/mnt/combined/RankingSystem/include/logger/logger.cpp" "CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o" "gcc" "CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o.d" + "/mnt/combined/RankingSystem/source/main.cpp" "CMakeFiles/RankingSystem.dir/source/main.cpp.o" "gcc" "CMakeFiles/RankingSystem.dir/source/main.cpp.o.d" ) # Targets to which this target links which contain Fortran sources. diff --git a/build/CMakeFiles/RankingSystem.dir/build.make b/build/CMakeFiles/RankingSystem.dir/build.make new file mode 100644 index 0000000..91aa8a7 --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/build.make @@ -0,0 +1,142 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# 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/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/combined/RankingSystem + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/combined/RankingSystem/build + +# Include any dependencies generated for this target. +include CMakeFiles/RankingSystem.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/RankingSystem.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/RankingSystem.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/RankingSystem.dir/flags.make + +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o: CMakeFiles/RankingSystem.dir/flags.make +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o: /mnt/combined/RankingSystem/include/file_io/files.cpp +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o: CMakeFiles/RankingSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/combined/RankingSystem/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o -MF CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o.d -o CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o -c /mnt/combined/RankingSystem/include/file_io/files.cpp + +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/combined/RankingSystem/include/file_io/files.cpp > CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.i + +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/combined/RankingSystem/include/file_io/files.cpp -o CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.s + +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o: CMakeFiles/RankingSystem.dir/flags.make +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o: /mnt/combined/RankingSystem/include/logger/logger.cpp +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o: CMakeFiles/RankingSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/combined/RankingSystem/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o -MF CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o.d -o CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o -c /mnt/combined/RankingSystem/include/logger/logger.cpp + +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/combined/RankingSystem/include/logger/logger.cpp > CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.i + +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/combined/RankingSystem/include/logger/logger.cpp -o CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.s + +CMakeFiles/RankingSystem.dir/source/main.cpp.o: CMakeFiles/RankingSystem.dir/flags.make +CMakeFiles/RankingSystem.dir/source/main.cpp.o: /mnt/combined/RankingSystem/source/main.cpp +CMakeFiles/RankingSystem.dir/source/main.cpp.o: CMakeFiles/RankingSystem.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/combined/RankingSystem/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/RankingSystem.dir/source/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/RankingSystem.dir/source/main.cpp.o -MF CMakeFiles/RankingSystem.dir/source/main.cpp.o.d -o CMakeFiles/RankingSystem.dir/source/main.cpp.o -c /mnt/combined/RankingSystem/source/main.cpp + +CMakeFiles/RankingSystem.dir/source/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/RankingSystem.dir/source/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/combined/RankingSystem/source/main.cpp > CMakeFiles/RankingSystem.dir/source/main.cpp.i + +CMakeFiles/RankingSystem.dir/source/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/RankingSystem.dir/source/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/combined/RankingSystem/source/main.cpp -o CMakeFiles/RankingSystem.dir/source/main.cpp.s + +# Object files for target RankingSystem +RankingSystem_OBJECTS = \ +"CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o" \ +"CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o" \ +"CMakeFiles/RankingSystem.dir/source/main.cpp.o" + +# External object files for target RankingSystem +RankingSystem_EXTERNAL_OBJECTS = + +bin/RankingSystem: CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o +bin/RankingSystem: CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o +bin/RankingSystem: CMakeFiles/RankingSystem.dir/source/main.cpp.o +bin/RankingSystem: CMakeFiles/RankingSystem.dir/build.make +bin/RankingSystem: CMakeFiles/RankingSystem.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/mnt/combined/RankingSystem/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX executable bin/RankingSystem" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/RankingSystem.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/RankingSystem.dir/build: bin/RankingSystem +.PHONY : CMakeFiles/RankingSystem.dir/build + +CMakeFiles/RankingSystem.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/RankingSystem.dir/cmake_clean.cmake +.PHONY : CMakeFiles/RankingSystem.dir/clean + +CMakeFiles/RankingSystem.dir/depend: + cd /mnt/combined/RankingSystem/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/combined/RankingSystem /mnt/combined/RankingSystem /mnt/combined/RankingSystem/build /mnt/combined/RankingSystem/build /mnt/combined/RankingSystem/build/CMakeFiles/RankingSystem.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/RankingSystem.dir/depend + diff --git a/build/CMakeFiles/RankingSystem.dir/cmake_clean.cmake b/build/CMakeFiles/RankingSystem.dir/cmake_clean.cmake new file mode 100644 index 0000000..900fb98 --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/cmake_clean.cmake @@ -0,0 +1,15 @@ +file(REMOVE_RECURSE + "CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o" + "CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o.d" + "CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o" + "CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o.d" + "CMakeFiles/RankingSystem.dir/source/main.cpp.o" + "CMakeFiles/RankingSystem.dir/source/main.cpp.o.d" + "bin/RankingSystem" + "bin/RankingSystem.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/RankingSystem.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build/CMakeFiles/RankingSystem.dir/compiler_depend.internal b/build/CMakeFiles/RankingSystem.dir/compiler_depend.internal new file mode 100644 index 0000000..fabd93b --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/compiler_depend.internal @@ -0,0 +1,285 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o + /mnt/combined/RankingSystem/include/file_io/files.cpp + /mnt/combined/RankingSystem/include/file_io/files.h + /usr/include/alloca.h + /usr/include/c++/13/bits/std_abs.h + /usr/include/c++/13/cstdlib + /usr/include/c++/13/pstl/pstl_config.h + /usr/include/c++/13/stdlib.h + /usr/include/endian.h + /usr/include/features-time64.h + /usr/include/features.h + /usr/include/stdc-predef.h + /usr/include/stdio.h + /usr/include/stdlib.h + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/x86_64-linux-gnu/bits/byteswap.h + /usr/include/x86_64-linux-gnu/bits/endian.h + /usr/include/x86_64-linux-gnu/bits/endianness.h + /usr/include/x86_64-linux-gnu/bits/floatn-common.h + /usr/include/x86_64-linux-gnu/bits/floatn.h + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h + /usr/include/x86_64-linux-gnu/bits/long-double.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h + /usr/include/x86_64-linux-gnu/bits/select.h + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h + /usr/include/x86_64-linux-gnu/bits/time64.h + /usr/include/x86_64-linux-gnu/bits/timesize.h + /usr/include/x86_64-linux-gnu/bits/types.h + /usr/include/x86_64-linux-gnu/bits/types/FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h + /usr/include/x86_64-linux-gnu/bits/types/time_t.h + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h + /usr/include/x86_64-linux-gnu/bits/typesizes.h + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h + /usr/include/x86_64-linux-gnu/bits/waitflags.h + /usr/include/x86_64-linux-gnu/bits/waitstatus.h + /usr/include/x86_64-linux-gnu/bits/wordsize.h + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h + /usr/include/x86_64-linux-gnu/gnu/stubs.h + /usr/include/x86_64-linux-gnu/sys/cdefs.h + /usr/include/x86_64-linux-gnu/sys/select.h + /usr/include/x86_64-linux-gnu/sys/types.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h + +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o + /mnt/combined/RankingSystem/include/logger/logger.cpp + /mnt/combined/RankingSystem/include/logger/logger.h + /usr/include/alloca.h + /usr/include/asm-generic/bitsperlong.h + /usr/include/asm-generic/errno-base.h + /usr/include/asm-generic/errno.h + /usr/include/asm-generic/int-ll64.h + /usr/include/asm-generic/posix_types.h + /usr/include/asm-generic/types.h + /usr/include/c++/13/bits/std_abs.h + /usr/include/c++/13/cstdlib + /usr/include/c++/13/pstl/pstl_config.h + /usr/include/c++/13/stdlib.h + /usr/include/endian.h + /usr/include/errno.h + /usr/include/features-time64.h + /usr/include/features.h + /usr/include/linux/close_range.h + /usr/include/linux/errno.h + /usr/include/linux/posix_types.h + /usr/include/linux/stat.h + /usr/include/linux/stddef.h + /usr/include/linux/types.h + /usr/include/stdc-predef.h + /usr/include/stdio.h + /usr/include/stdlib.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/time.h + /usr/include/unistd.h + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h + /usr/include/x86_64-linux-gnu/asm/errno.h + /usr/include/x86_64-linux-gnu/asm/posix_types.h + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h + /usr/include/x86_64-linux-gnu/asm/types.h + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/x86_64-linux-gnu/bits/byteswap.h + /usr/include/x86_64-linux-gnu/bits/confname.h + /usr/include/x86_64-linux-gnu/bits/endian.h + /usr/include/x86_64-linux-gnu/bits/endianness.h + /usr/include/x86_64-linux-gnu/bits/environments.h + /usr/include/x86_64-linux-gnu/bits/errno.h + /usr/include/x86_64-linux-gnu/bits/floatn-common.h + /usr/include/x86_64-linux-gnu/bits/floatn.h + /usr/include/x86_64-linux-gnu/bits/getopt_core.h + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h + /usr/include/x86_64-linux-gnu/bits/long-double.h + /usr/include/x86_64-linux-gnu/bits/posix_opt.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h + /usr/include/x86_64-linux-gnu/bits/select.h + /usr/include/x86_64-linux-gnu/bits/stat.h + /usr/include/x86_64-linux-gnu/bits/statx-generic.h + /usr/include/x86_64-linux-gnu/bits/statx.h + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h + /usr/include/x86_64-linux-gnu/bits/struct_stat.h + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h + /usr/include/x86_64-linux-gnu/bits/time.h + /usr/include/x86_64-linux-gnu/bits/time64.h + /usr/include/x86_64-linux-gnu/bits/timesize.h + /usr/include/x86_64-linux-gnu/bits/timex.h + /usr/include/x86_64-linux-gnu/bits/types.h + /usr/include/x86_64-linux-gnu/bits/types/FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/x86_64-linux-gnu/bits/types/error_t.h + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h + /usr/include/x86_64-linux-gnu/bits/types/time_t.h + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h + /usr/include/x86_64-linux-gnu/bits/typesizes.h + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h + /usr/include/x86_64-linux-gnu/bits/waitflags.h + /usr/include/x86_64-linux-gnu/bits/waitstatus.h + /usr/include/x86_64-linux-gnu/bits/wordsize.h + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h + /usr/include/x86_64-linux-gnu/gnu/stubs.h + /usr/include/x86_64-linux-gnu/sys/cdefs.h + /usr/include/x86_64-linux-gnu/sys/select.h + /usr/include/x86_64-linux-gnu/sys/stat.h + /usr/include/x86_64-linux-gnu/sys/types.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h + +CMakeFiles/RankingSystem.dir/source/main.cpp.o + /mnt/combined/RankingSystem/source/main.cpp + /mnt/combined/RankingSystem/include/logger/logger.h + /usr/include/alloca.h + /usr/include/asm-generic/bitsperlong.h + /usr/include/asm-generic/int-ll64.h + /usr/include/asm-generic/posix_types.h + /usr/include/asm-generic/types.h + /usr/include/c++/13/bits/std_abs.h + /usr/include/c++/13/cstdlib + /usr/include/c++/13/pstl/pstl_config.h + /usr/include/c++/13/stdlib.h + /usr/include/endian.h + /usr/include/features-time64.h + /usr/include/features.h + /usr/include/linux/close_range.h + /usr/include/linux/posix_types.h + /usr/include/linux/stat.h + /usr/include/linux/stddef.h + /usr/include/linux/types.h + /usr/include/sqlite3.h + /usr/include/stdc-predef.h + /usr/include/stdint.h + /usr/include/stdio.h + /usr/include/stdlib.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/time.h + /usr/include/unistd.h + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h + /usr/include/x86_64-linux-gnu/asm/posix_types.h + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h + /usr/include/x86_64-linux-gnu/asm/types.h + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h + /usr/include/x86_64-linux-gnu/bits/byteswap.h + /usr/include/x86_64-linux-gnu/bits/confname.h + /usr/include/x86_64-linux-gnu/bits/endian.h + /usr/include/x86_64-linux-gnu/bits/endianness.h + /usr/include/x86_64-linux-gnu/bits/environments.h + /usr/include/x86_64-linux-gnu/bits/floatn-common.h + /usr/include/x86_64-linux-gnu/bits/floatn.h + /usr/include/x86_64-linux-gnu/bits/getopt_core.h + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h + /usr/include/x86_64-linux-gnu/bits/long-double.h + /usr/include/x86_64-linux-gnu/bits/posix_opt.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h + /usr/include/x86_64-linux-gnu/bits/select.h + /usr/include/x86_64-linux-gnu/bits/stat.h + /usr/include/x86_64-linux-gnu/bits/statx-generic.h + /usr/include/x86_64-linux-gnu/bits/statx.h + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h + /usr/include/x86_64-linux-gnu/bits/stdint-least.h + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h + /usr/include/x86_64-linux-gnu/bits/struct_stat.h + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h + /usr/include/x86_64-linux-gnu/bits/time.h + /usr/include/x86_64-linux-gnu/bits/time64.h + /usr/include/x86_64-linux-gnu/bits/timesize.h + /usr/include/x86_64-linux-gnu/bits/timex.h + /usr/include/x86_64-linux-gnu/bits/types.h + /usr/include/x86_64-linux-gnu/bits/types/FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h + /usr/include/x86_64-linux-gnu/bits/types/time_t.h + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h + /usr/include/x86_64-linux-gnu/bits/typesizes.h + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h + /usr/include/x86_64-linux-gnu/bits/waitflags.h + /usr/include/x86_64-linux-gnu/bits/waitstatus.h + /usr/include/x86_64-linux-gnu/bits/wchar.h + /usr/include/x86_64-linux-gnu/bits/wordsize.h + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h + /usr/include/x86_64-linux-gnu/gnu/stubs.h + /usr/include/x86_64-linux-gnu/sys/cdefs.h + /usr/include/x86_64-linux-gnu/sys/select.h + /usr/include/x86_64-linux-gnu/sys/stat.h + /usr/include/x86_64-linux-gnu/sys/types.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h + diff --git a/build/CMakeFiles/RankingSystem.dir/compiler_depend.make b/build/CMakeFiles/RankingSystem.dir/compiler_depend.make new file mode 100644 index 0000000..66f02de --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/compiler_depend.make @@ -0,0 +1,512 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o: /mnt/combined/RankingSystem/include/file_io/files.cpp \ + /mnt/combined/RankingSystem/include/file_io/files.h \ + /usr/include/alloca.h \ + /usr/include/c++/13/bits/std_abs.h \ + /usr/include/c++/13/cstdlib \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/stdlib.h \ + /usr/include/endian.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h + +CMakeFiles/RankingSystem.dir/include/logger/logger.cpp.o: /mnt/combined/RankingSystem/include/logger/logger.cpp \ + /mnt/combined/RankingSystem/include/logger/logger.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/errno-base.h \ + /usr/include/asm-generic/errno.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/c++/13/bits/std_abs.h \ + /usr/include/c++/13/cstdlib \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/stdlib.h \ + /usr/include/endian.h \ + /usr/include/errno.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/linux/close_range.h \ + /usr/include/linux/errno.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/stat.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/time.h \ + /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/errno.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/errno.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/error_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h + +CMakeFiles/RankingSystem.dir/source/main.cpp.o: /mnt/combined/RankingSystem/source/main.cpp \ + /mnt/combined/RankingSystem/include/logger/logger.h \ + /usr/include/alloca.h \ + /usr/include/asm-generic/bitsperlong.h \ + /usr/include/asm-generic/int-ll64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/asm-generic/types.h \ + /usr/include/c++/13/bits/std_abs.h \ + /usr/include/c++/13/cstdlib \ + /usr/include/c++/13/pstl/pstl_config.h \ + /usr/include/c++/13/stdlib.h \ + /usr/include/endian.h \ + /usr/include/features-time64.h \ + /usr/include/features.h \ + /usr/include/linux/close_range.h \ + /usr/include/linux/posix_types.h \ + /usr/include/linux/stat.h \ + /usr/include/linux/stddef.h \ + /usr/include/linux/types.h \ + /usr/include/sqlite3.h \ + /usr/include/stdc-predef.h \ + /usr/include/stdint.h \ + /usr/include/stdio.h \ + /usr/include/stdlib.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/time.h \ + /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h + + +/usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h: + +/usr/include/x86_64-linux-gnu/bits/wchar.h: + +/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: + +/usr/include/stdint.h: + +/usr/include/x86_64-linux-gnu/bits/unistd_ext.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h: + +/usr/include/x86_64-linux-gnu/bits/types/error_t.h: + +/usr/include/x86_64-linux-gnu/bits/timex.h: + +/usr/include/x86_64-linux-gnu/bits/time.h: + +/usr/include/x86_64-linux-gnu/bits/statx.h: + +/usr/include/x86_64-linux-gnu/bits/statx-generic.h: + +/usr/include/x86_64-linux-gnu/bits/posix_opt.h: + +/usr/include/x86_64-linux-gnu/bits/confname.h: + +/usr/include/x86_64-linux-gnu/asm/posix_types_64.h: + +/usr/include/x86_64-linux-gnu/asm/posix_types.h: + +/usr/include/x86_64-linux-gnu/asm/bitsperlong.h: + +/usr/include/unistd.h: + +/usr/include/time.h: + +/usr/include/strings.h: + +/usr/include/linux/stddef.h: + +/usr/include/x86_64-linux-gnu/bits/struct_stat.h: + +/usr/include/linux/stat.h: + +/usr/include/x86_64-linux-gnu/bits/stdint-least.h: + +/usr/include/linux/posix_types.h: + +/usr/include/linux/errno.h: + +/usr/include/x86_64-linux-gnu/sys/stat.h: + +/usr/include/errno.h: + +/usr/include/x86_64-linux-gnu/asm/types.h: + +/usr/include/asm-generic/types.h: + +/usr/include/asm-generic/errno.h: + +/mnt/combined/RankingSystem/source/main.cpp: + +/usr/include/asm-generic/errno-base.h: + +/mnt/combined/RankingSystem/include/logger/logger.cpp: + +/usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h: + +/usr/include/x86_64-linux-gnu/sys/types.h: + +/usr/include/x86_64-linux-gnu/bits/environments.h: + +/usr/include/x86_64-linux-gnu/sys/select.h: + +/usr/include/asm-generic/bitsperlong.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs.h: + +/usr/include/x86_64-linux-gnu/bits/struct_mutex.h: + +/usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h: + +/usr/include/x86_64-linux-gnu/asm/errno.h: + +/usr/include/x86_64-linux-gnu/bits/stdio_lim.h: + +/mnt/combined/RankingSystem/include/logger/logger.h: + +/mnt/combined/RankingSystem/include/file_io/files.cpp: + +/usr/include/c++/13/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/floatn.h: + +/usr/include/x86_64-linux-gnu/bits/select.h: + +/usr/include/sqlite3.h: + +/usr/include/x86_64-linux-gnu/bits/endianness.h: + +/usr/include/x86_64-linux-gnu/bits/types/timer_t.h: + +/usr/include/endian.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h: + +/usr/include/asm-generic/posix_types.h: + +/usr/include/x86_64-linux-gnu/bits/typesizes.h: + +/usr/include/x86_64-linux-gnu/bits/floatn-common.h: + +/usr/include/string.h: + +/usr/include/x86_64-linux-gnu/bits/endian.h: + +/mnt/combined/RankingSystem/include/file_io/files.h: + +/usr/include/features-time64.h: + +/usr/include/x86_64-linux-gnu/bits/errno.h: + +/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h: + +/usr/include/stdlib.h: + +/usr/include/x86_64-linux-gnu/bits/types/locale_t.h: + +/usr/include/x86_64-linux-gnu/bits/wordsize.h: + +/usr/include/alloca.h: + +/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h: + +/usr/include/c++/13/cstdlib: + +/usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h: + +/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h: + +/usr/include/c++/13/bits/std_abs.h: + +/usr/include/x86_64-linux-gnu/bits/waitflags.h: + +/usr/include/x86_64-linux-gnu/bits/long-double.h: + +/usr/include/x86_64-linux-gnu/bits/byteswap.h: + +/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h: + +/usr/include/x86_64-linux-gnu/bits/stat.h: + +/usr/include/x86_64-linux-gnu/bits/types.h: + +/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h: + +/usr/include/features.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h: + +/usr/include/linux/types.h: + +/usr/include/x86_64-linux-gnu/bits/types/FILE.h: + +/usr/include/x86_64-linux-gnu/bits/libc-header-start.h: + +/usr/include/x86_64-linux-gnu/bits/stdlib-float.h: + +/usr/include/stdc-predef.h: + +/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h: + +/usr/include/x86_64-linux-gnu/bits/time64.h: + +/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h: + +/usr/include/c++/13/pstl/pstl_config.h: + +/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h: + +/usr/include/x86_64-linux-gnu/bits/getopt_core.h: + +/usr/include/x86_64-linux-gnu/bits/timesize.h: + +/usr/include/x86_64-linux-gnu/sys/cdefs.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h: + +/usr/include/x86_64-linux-gnu/bits/getopt_posix.h: + +/usr/include/stdio.h: + +/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h: + +/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h: + +/usr/include/x86_64-linux-gnu/bits/uintn-identity.h: + +/usr/include/asm-generic/int-ll64.h: + +/usr/include/x86_64-linux-gnu/gnu/stubs-64.h: + +/usr/include/x86_64-linux-gnu/bits/types/__FILE.h: + +/usr/include/x86_64-linux-gnu/bits/types/clock_t.h: + +/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h: + +/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h: + +/usr/include/linux/close_range.h: + +/usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h: + +/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h: + +/usr/include/x86_64-linux-gnu/bits/types/time_t.h: + +/usr/include/x86_64-linux-gnu/bits/waitstatus.h: + +/usr/include/x86_64-linux-gnu/bits/stdint-intn.h: + +/usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h: diff --git a/build/CMakeFiles/test.dir/compiler_depend.ts b/build/CMakeFiles/RankingSystem.dir/compiler_depend.ts similarity index 84% rename from build/CMakeFiles/test.dir/compiler_depend.ts rename to build/CMakeFiles/RankingSystem.dir/compiler_depend.ts index a4eb021..4925697 100644 --- a/build/CMakeFiles/test.dir/compiler_depend.ts +++ b/build/CMakeFiles/RankingSystem.dir/compiler_depend.ts @@ -1,2 +1,2 @@ # CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for test. +# Timestamp file for compiler generated dependencies management for RankingSystem. diff --git a/build/CMakeFiles/test.dir/depend.make b/build/CMakeFiles/RankingSystem.dir/depend.make similarity index 53% rename from build/CMakeFiles/test.dir/depend.make rename to build/CMakeFiles/RankingSystem.dir/depend.make index 3f2657b..7ea2ff6 100644 --- a/build/CMakeFiles/test.dir/depend.make +++ b/build/CMakeFiles/RankingSystem.dir/depend.make @@ -1,2 +1,2 @@ -# Empty dependencies file for test. +# Empty dependencies file for RankingSystem. # This may be replaced when dependencies are built. diff --git a/build/CMakeFiles/RankingSystem.dir/flags.make b/build/CMakeFiles/RankingSystem.dir/flags.make new file mode 100644 index 0000000..3c64eff --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile CXX with /usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/mnt/combined/RankingSystem/include -I/mnt/combined/RankingSystem/libraries + +CXX_FLAGS = -std=c++23 -Wall -Wextra -Wpedantic -Wshadow -Wconversion -Wsign-conversion -Wuninitialized -Wunused -Werror=return-type -fsanitize=address,undefined -g + diff --git a/build/CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o b/build/CMakeFiles/RankingSystem.dir/include/file_io/files.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..80225ed88dba05dbe72c6e9c1ea10e754ed9f46c GIT binary patch literal 13624 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 P`u0e+{=mSg$F@4Y{M_hX;A=R5t(nKNhR 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 R%~1JA{)96Xs0@m={vRBI(NO>Z literal 0 HcmV?d00001 diff --git a/build/CMakeFiles/RankingSystem.dir/source/main.cpp.o.d b/build/CMakeFiles/RankingSystem.dir/source/main.cpp.o.d new file mode 100644 index 0000000..82fd581 --- /dev/null +++ b/build/CMakeFiles/RankingSystem.dir/source/main.cpp.o.d @@ -0,0 +1,92 @@ +CMakeFiles/RankingSystem.dir/source/main.cpp.o: \ + /mnt/combined/RankingSystem/source/main.cpp /usr/include/stdc-predef.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/c++/13/stdlib.h /usr/include/c++/13/cstdlib \ + /usr/include/x86_64-linux-gnu/c++/13/bits/c++config.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/os_defines.h \ + /usr/include/x86_64-linux-gnu/c++/13/bits/cpu_defines.h \ + /usr/include/c++/13/pstl/pstl_config.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/c++/13/bits/std_abs.h /usr/include/string.h \ + /usr/include/strings.h /usr/include/unistd.h \ + /usr/include/x86_64-linux-gnu/bits/posix_opt.h \ + /usr/include/x86_64-linux-gnu/bits/environments.h \ + /usr/include/x86_64-linux-gnu/bits/confname.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_posix.h \ + /usr/include/x86_64-linux-gnu/bits/getopt_core.h \ + /usr/include/x86_64-linux-gnu/bits/unistd_ext.h \ + /usr/include/linux/close_range.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-least.h /usr/include/sqlite3.h \ + /mnt/combined/RankingSystem/include/logger/logger.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/timex.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/sys/stat.h \ + /usr/include/x86_64-linux-gnu/bits/stat.h \ + /usr/include/x86_64-linux-gnu/bits/struct_stat.h \ + /usr/include/x86_64-linux-gnu/bits/statx.h /usr/include/linux/stat.h \ + /usr/include/linux/types.h /usr/include/x86_64-linux-gnu/asm/types.h \ + /usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \ + /usr/include/x86_64-linux-gnu/asm/bitsperlong.h \ + /usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \ + /usr/include/linux/stddef.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types.h \ + /usr/include/x86_64-linux-gnu/asm/posix_types_64.h \ + /usr/include/asm-generic/posix_types.h \ + /usr/include/x86_64-linux-gnu/bits/statx-generic.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_statx.h \ + /mnt/combined/RankingSystem/include/file_io/files.h diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt index aa025d2..aa53db5 100644 --- a/build/CMakeFiles/TargetDirectories.txt +++ b/build/CMakeFiles/TargetDirectories.txt @@ -1,3 +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 +/mnt/combined/RankingSystem/build/CMakeFiles/RankingSystem.dir +/mnt/combined/RankingSystem/build/CMakeFiles/edit_cache.dir +/mnt/combined/RankingSystem/build/CMakeFiles/rebuild_cache.dir diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks index 0cfbf08..b8626c4 100644 --- a/build/CMakeFiles/progress.marks +++ b/build/CMakeFiles/progress.marks @@ -1 +1 @@ -2 +4 diff --git a/build/CMakeFiles/test.dir/build.make b/build/CMakeFiles/test.dir/build.make deleted file mode 100644 index 903d231..0000000 --- a/build/CMakeFiles/test.dir/build.make +++ /dev/null @@ -1,113 +0,0 @@ -# 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 deleted file mode 100644 index cb4bd7f..0000000 --- a/build/CMakeFiles/test.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 8b0c456..0000000 --- a/build/CMakeFiles/test.dir/compiler_depend.internal +++ /dev/null @@ -1,526 +0,0 @@ -# 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 deleted file mode 100644 index 9441bce..0000000 --- a/build/CMakeFiles/test.dir/compiler_depend.make +++ /dev/null @@ -1,1567 +0,0 @@ -# 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/flags.make b/build/CMakeFiles/test.dir/flags.make deleted file mode 100644 index c013a96..0000000 --- a/build/CMakeFiles/test.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# 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 deleted file mode 100644 index 16f191b..0000000 --- a/build/CMakeFiles/test.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/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/source/main.cpp.o b/build/CMakeFiles/test.dir/source/main.cpp.o deleted file mode 100644 index b8f9f3e7bf3d1f625075a7ae7efea8caa32fb978..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151128 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 r8n6vCVxZNyTJ+tfiXUqZMnSKg=} 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 diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake index 9739c0a..9d11ca4 100644 --- a/build/cmake_install.cmake +++ b/build/cmake_install.cmake @@ -1,4 +1,4 @@ -# Install script for directory: /Users/AfonsoCMSosua/Developer/C++/CPP_TEMPLATE +# Install script for directory: /mnt/combined/RankingSystem # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) @@ -27,35 +27,28 @@ if(NOT CMAKE_INSTALL_COMPONENT) endif() endif() +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +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. +# Set default install directory permissions. if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/Library/Developer/CommandLineTools/usr/bin/objdump") + set(CMAKE_OBJDUMP "/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() + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 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}" +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/mnt/combined/RankingSystem/build/${CMAKE_INSTALL_MANIFEST}" "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/include/file_io/files.cpp b/include/file_io/files.cpp new file mode 100644 index 0000000..d613037 --- /dev/null +++ b/include/file_io/files.cpp @@ -0,0 +1,10 @@ +#include "files.h" + +u_char file_exists(const char *filename) { + FILE *file = fopen(filename, "r"); + if (file) { + fclose(file); + return 1; // File exists + } + return 0; // File does not exist +} diff --git a/include/file_io/files.h b/include/file_io/files.h new file mode 100644 index 0000000..4f84bee --- /dev/null +++ b/include/file_io/files.h @@ -0,0 +1,10 @@ +#ifndef FILES__H_INCLUDED +#define FILES__H_INCLUDED + +#include +#include +#include + +u_char file_exists(const char *filename); + +#endif // FILES__H_INCLUDED diff --git a/include/logger/logger.cpp b/include/logger/logger.cpp new file mode 100644 index 0000000..f1bee4a --- /dev/null +++ b/include/logger/logger.cpp @@ -0,0 +1,229 @@ +#include "logger.h" +#include // For mkdir +#include // For errno + +// By declaring this function here, we make it private. you cant access it outside of this file +void get_executable_path(char *buffer, size_t size) +{ +#ifdef _WIN32 + // On Windows, we use GetModuleFileName + GetModuleFileName(NULL, buffer, (DWORD)size); + // Strip the filename from the path + char *last_slash = strrchr(buffer, '\\'); + if (last_slash) + *last_slash = '\0'; +#else + // On Linux, we can just do "./" + // or use readlink("/proc/self/exe", buffer, size) to get the full path + // but for simplicity, we just use "./" + + if (size > 2) + { + strncpy(buffer, "./", size - 1); + buffer[size - 1] = '\0'; + } + else + { + fprintf(stderr, "Buffer size is too small\n"); + exit(EXIT_FAILURE); + } +#endif +} + +/** \brief A simple print funcion to help easely print to the screen + * + * \param unsigned short flags + * \param const char *Format + * \param ... + * \return unsigned int (number of printed chars) + * + */ +unsigned int flogf(unsigned short flags, const char *Format, ...) +{ + va_list args; + va_start(args, Format); + + unsigned int char_counter = 0; + + static unsigned char isFileDeclared = 0; // false + char filepath[256]; + + FILE *selected_std = stdout; + + if (isFileDeclared) + { + selected_std = fopen(filepath, "a"); + } + + time_t RAW_TIME = time(NULL); + struct tm *time_info; + + time_info = localtime(&RAW_TIME); + + if ((flags & LOG_FILE) && !isFileDeclared) + { + char exe_path[512]; + get_executable_path(exe_path, sizeof(exe_path)); + +#if defined(_WIN32) + sprintf(filepath, "%s\\logs\\log_%02d-%02d-%4d.txt", + exe_path, + time_info->tm_mday, + time_info->tm_mon + 1, // months start at 0 + time_info->tm_year + 1900); +#else + sprintf(filepath, "%slogs/log_%02d-%02d-%4d.txt", + exe_path, + time_info->tm_mday, + time_info->tm_mon + 1, // months start at 0 + time_info->tm_year + 1900); +#endif + + // Ensure the logs directory exists + char logs_dir[512]; +#if defined(_WIN32) + sprintf(logs_dir, "%s\\logs", exe_path); + _mkdir(logs_dir); // Windows-specific mkdir +#else + sprintf(logs_dir, "%s/logs", exe_path); + if (mkdir(logs_dir, 0755) == -1 && errno != EEXIST) + { + perror("Error creating logs directory"); + return 0; + } +#endif + + // Create file if it doesn't exist + selected_std = fopen(filepath, "a"); + + if (!selected_std) + { + fprintf(stdout, "ERROR OPENING LOG FILE\n"); + selected_std = stdout; + return 0; + } + + printf("Loging to file: \"%s\"\n", filepath); + + fprintf(selected_std, "\n%02d:%02d:%02d - NEW ENTRY \n-------------------------------------------------\n", + time_info->tm_hour, + time_info->tm_min, + time_info->tm_sec); + + isFileDeclared = 1; + } + + if ((flags & LOG_TIME_STAMP)) + { + fprintf(selected_std, "%02d:%02d:%02d - ", + time_info->tm_hour, + time_info->tm_min, + time_info->tm_sec); + } + else + { + fprintf(selected_std, " "); + } + + if (flags & LOG_LEVEL_WARN) + { + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_YELLOW); + } + fprintf(selected_std, "[WARNING]: \t"); + + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_RESET); + } + } + else if (flags & LOG_LEVEL_ERROR) + { + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_RED); + } + fprintf(selected_std, "[ERROR]: \t"); + + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_RESET); + } + } + else if (flags & LOG_LEVEL_INFO) + { + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_BLUE); + } + + fprintf(selected_std, "[INFO]: \t"); + + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_RESET); + } + } + else if (flags & LOG_LEVEL_SUCCESS) + { + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_GREEN); + } + + fprintf(selected_std, "[SUCCESS]: \t"); + + if (flags & LOG_COLOR_OUT) + { + fprintf(selected_std, COLOR_RESET); + } + } + + while (*Format) + { + if (*Format == '%') + { + *Format++; // find out if its a d, s, f, etc. + switch (*Format) + { + case 'd': // Integer + fprintf(selected_std, "%d", va_arg(args, int)); + break; + case 'f': // Floating-point + fprintf(selected_std, "%f", va_arg(args, double)); + break; + case 's': // String + fprintf(selected_std, "%s", va_arg(args, char *)); + break; + case 'c': // Character + fprintf(selected_std, "%c", va_arg(args, int)); + break; + case 'x': // Hexadecimal + fprintf(selected_std, "%x", va_arg(args, unsigned int)); + break; + case 'p': // Pointer + fprintf(selected_std, "%p", va_arg(args, void *)); + break; + case '%': // Literal '%' + fprintf(selected_std, "%%"); + break; + default: // Unknown specifier + fprintf(selected_std, "%%"); + fprintf(selected_std, "%c", *Format); + break; + } + } + else + { + fprintf(selected_std, "%c", *Format); + } + *Format++; // iterate over the format text + char_counter++; + } + + if (flags & LOG_FILE) + fclose(selected_std); + va_end(args); + return char_counter; +} // wrapper (global) diff --git a/include/logger/logger.h b/include/logger/logger.h new file mode 100644 index 0000000..437e68a --- /dev/null +++ b/include/logger/logger.h @@ -0,0 +1,40 @@ +#ifndef LOGGER_H_INCLUDED +#define LOGGER_H_INCLUDED + +#include +#include +#include +#include +#include + +#ifdef _WIN32 +#include +#include +#define MKDIR(path) _mkdir(path) +#else +#include +#include +#include +#define MKDIR(path) mkdir(path, 0777) +#endif + +#define LOG_LEVEL_INFO (1 << 0) +#define LOG_LEVEL_WARN (1 << 1) +#define LOG_LEVEL_ERROR (1 << 2) +#define LOG_LEVEL_SUCCESS (1 << 3) +#define LOG_COLOR_OUT (1 << 4) +#define LOG_ONLY_ERROR (1 << 5) +#define LOG_FILE (1 << 6) +#define LOG_TIME_STAMP (1 << 7) + +#define COLOR_RED "\x1b[31m" +#define COLOR_GREEN "\x1b[32m" +#define COLOR_YELLOW "\x1b[33m" +#define COLOR_BLUE "\x1b[34m" +#define COLOR_RESET "\x1b[0m" + +unsigned int flogf(unsigned short flags, const char *Format, ...); + +void get_executable_path(char *buffer, size_t size); + +#endif // LOGGER_H_INCLUDED diff --git a/source/main.cpp b/source/main.cpp index df28b27..e96ceaa 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -1,7 +1,104 @@ -#include +#include +#include +#include +#include +#include +#include -int main() -{ - std::cout << "Hello, World!" << std::endl; - return 0; -} \ No newline at end of file +#include + +#include +#include + +#define LOG_DEFAULT (LOG_TIME_STAMP | LOG_COLOR_OUT | LOG_LEVEL_INFO) + +int main(int argc, char *argv[]) { + flogf(LOG_TIME_STAMP | LOG_COLOR_OUT | LOG_LEVEL_INFO, + "Starting Ranking system.\n"); + + char log_file_name[512] = {0}; + char white_list_file_name[512] = {0}; + char fast_time[16] = {0}; + char med_time[16] = {0}; + char slow_time[16] = {0}; + u_int16_t level_up_rating = 0; + + for (int i = 1; i < argc; i++) { + if (argv[i][0] == '-') { + switch (argv[i][1]) { + case 'l': + if (i + 1 < argc) + strncpy(log_file_name, argv[++i], sizeof(log_file_name) - 1); + break; + case 't': + if (i + 1 < argc) + level_up_rating = (u_int16_t)atoi(argv[++i]); + break; + case 'w': + if (i + 1 < argc) + strncpy(white_list_file_name, argv[++i], sizeof(white_list_file_name) - 1); + break; + case 'f': + if (strncmp(argv[i], "-fast", 5) == 0 && i + 1 < argc) + strncpy(fast_time, argv[++i], sizeof(fast_time) - 1); + break; + case 'm': + if (strncmp(argv[i], "-med", 4) == 0 && i + 1 < argc) + strncpy(med_time, argv[++i], sizeof(med_time) - 1); + break; + case 's': + if (strncmp(argv[i], "-slow", 5) == 0 && i + 1 < argc) + strncpy(slow_time, argv[++i], sizeof(slow_time) - 1); + break; + default: + break; + } + } else { + + return 1; + } + } + + if (log_file_name[0] && white_list_file_name[0] && level_up_rating && fast_time[0] && med_time[0] && slow_time[0]) { + if (file_exists(white_list_file_name) == 0) { + flogf(LOG_DEFAULT, "Using whitelist file: \"%s\"\n", white_list_file_name); + } else { + flogf(LOG_TIME_STAMP | LOG_COLOR_OUT | LOG_LEVEL_ERROR, + "No file with path \"%s\" was found\n", white_list_file_name); + return 1; + } + } + + if ((strcmp(logFilePath, "MX5") == 0) || (strcmp(logFilePath, "GT86") == 0) || + (strcmp(logFilePath, "GT4") == 0) || (strcmp(logFilePath, "GT3") == 0) || + (strcmp(logFilePath, "LMH") == 0)) { + if (file_exists(logFilePath) == 0) { + char donnor[5]; + char finalPath[256]; + char *date = get_today_yyyymmdd(); + + strcpy(donnor, logFilePath); + sprintf(finalPath, + "/mnt/combined/servers/acserver_%s/utils/logs/log-%s.txt", donnor, + date); + strncpy(logFilePath, finalPath, sizeof(logFilePath) - 1); + + if (file_exists(logFilePath) == 0) { + return 1; + } + } + } else { + flogf(LOG_TIME_STAMP | LOG_COLOR_OUT | LOG_LEVEL_ERROR, + "No valid log file name was provided. Please use one of the " + "following: MX5, GT86, GT4, GT3, LMH\n"); + } + + if (file_exists(logFilePath) == 0) { + flogf(LOG_DEFAULT, "Using log file: \"%s\"\n", logFilePath); + } else { + flogf(LOG_TIME_STAMP | LOG_COLOR_OUT | LOG_LEVEL_ERROR, + "No file with path \"%s\" was found\n", logFilePath); + return 1; + } + return 0; +}