From c1423b66aa34c03e7fe026b5b9ea55457775e608 Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Fri, 30 Jan 2026 23:35:43 -0500 Subject: [PATCH] First working version of desktop emulator with game launcher support. Includes local stubs and launcher logic. --- emulator/CMakeCache.txt | 380 +++ .../CMakeFiles/4.2.3/CMakeCCompiler.cmake | 84 + .../CMakeFiles/4.2.3/CMakeCXXCompiler.cmake | 104 + .../4.2.3/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 33560 bytes .../4.2.3/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 33560 bytes emulator/CMakeFiles/4.2.3/CMakeSystem.cmake | 15 + .../4.2.3/CompilerIdC/CMakeCCompilerId.c | 934 +++++++ emulator/CMakeFiles/4.2.3/CompilerIdC/a.out | Bin 0 -> 33736 bytes .../CMakeFiles/4.2.3/CompilerIdC/apple-sdk.c | 1 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 949 ++++++++ emulator/CMakeFiles/4.2.3/CompilerIdCXX/a.out | Bin 0 -> 33736 bytes .../4.2.3/CompilerIdCXX/apple-sdk.cpp | 1 + emulator/CMakeFiles/CMakeConfigureLog.yaml | 2147 +++++++++++++++++ emulator/CMakeFiles/cmake.check_cache | 1 + emulator/CMakeLists.txt | 19 + emulator/Makefile | 33 + emulator/README.md | 25 + emulator/basic1_emulator | Bin 0 -> 140736 bytes emulator/build_and_run.sh | 11 + emulator/game.h | 25 + emulator/game_launcher.cpp | 86 + emulator/game_launcher.h | 35 + emulator/input_event.h | 27 + emulator/input_manager.cpp | 3 + emulator/input_manager.h | 6 + emulator/low_level_display_sfml.cpp | 60 + emulator/low_level_display_sfml.h | 19 + emulator/main.cpp | 109 + 28 files changed, 5074 insertions(+) create mode 100644 emulator/CMakeCache.txt create mode 100644 emulator/CMakeFiles/4.2.3/CMakeCCompiler.cmake create mode 100644 emulator/CMakeFiles/4.2.3/CMakeCXXCompiler.cmake create mode 100755 emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_C.bin create mode 100755 emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_CXX.bin create mode 100644 emulator/CMakeFiles/4.2.3/CMakeSystem.cmake create mode 100644 emulator/CMakeFiles/4.2.3/CompilerIdC/CMakeCCompilerId.c create mode 100755 emulator/CMakeFiles/4.2.3/CompilerIdC/a.out create mode 100644 emulator/CMakeFiles/4.2.3/CompilerIdC/apple-sdk.c create mode 100644 emulator/CMakeFiles/4.2.3/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 emulator/CMakeFiles/4.2.3/CompilerIdCXX/a.out create mode 100644 emulator/CMakeFiles/4.2.3/CompilerIdCXX/apple-sdk.cpp create mode 100644 emulator/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 emulator/CMakeFiles/cmake.check_cache create mode 100644 emulator/CMakeLists.txt create mode 100644 emulator/Makefile create mode 100644 emulator/README.md create mode 100755 emulator/basic1_emulator create mode 100755 emulator/build_and_run.sh create mode 100644 emulator/game.h create mode 100644 emulator/game_launcher.cpp create mode 100644 emulator/game_launcher.h create mode 100644 emulator/input_event.h create mode 100644 emulator/input_manager.cpp create mode 100644 emulator/input_manager.h create mode 100644 emulator/low_level_display_sfml.cpp create mode 100644 emulator/low_level_display_sfml.h create mode 100644 emulator/main.cpp diff --git a/emulator/CMakeCache.txt b/emulator/CMakeCache.txt new file mode 100644 index 0000000..6e9445c --- /dev/null +++ b/emulator/CMakeCache.txt @@ -0,0 +1,380 @@ +# This is the CMakeCache file. +# For build in directory: /Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator +# It was generated by CMake: /opt/homebrew/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/pkgRedirects + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING= + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:STRING= + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=basic1_emulator + +//Value Computed by CMake +CMAKE_PROJECT_SPDX_LICENSE:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/tapi + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//The directory containing a CMake configuration file for SFML. +SFML_DIR:PATH=SFML_DIR-NOTFOUND + +//Value Computed by CMake +basic1_emulator_BINARY_DIR:STATIC=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator + +//Value Computed by CMake +basic1_emulator_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +basic1_emulator_SOURCE_DIR:STATIC=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=2 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/opt/homebrew/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator +//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/opt/homebrew/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/emulator/CMakeFiles/4.2.3/CMakeCCompiler.cmake b/emulator/CMakeFiles/4.2.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..404bd78 --- /dev/null +++ b/emulator/CMakeFiles/4.2.3/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "AppleClang") +set(CMAKE_C_COMPILER_VERSION "17.0.0.17000603") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Darwin") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID "arm64") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_C_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_C_COMPILER_LINKER_VERSION 1230.1) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks") diff --git a/emulator/CMakeFiles/4.2.3/CMakeCXXCompiler.cmake b/emulator/CMakeFiles/4.2.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..29f4a53 --- /dev/null +++ b/emulator/CMakeFiles/4.2.3/CMakeCXXCompiler.cmake @@ -0,0 +1,104 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "17.0.0.17000603") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "arm64") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 1230.1) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) +set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) +set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") + + + diff --git a/emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_C.bin b/emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..796062e0131523c39b6b7a066ac428077d5bd51d GIT binary patch literal 33560 zcmeI5O=w(I6vyv;R1*^OA%4`Pwj&0qA0#D)cF3ZJIC}D&?r>fN#wAWQe_u zq82y0HdvhJMY>VSurCsB46F58qfc1&7IL#vNlK*5>(hD5prJXR)?#j^WZl9x@9U;G zMe*jGCQ`;T>0B*gbG{WTU$x|_U7w?VPWf{AtdTx!Ih*tKwVL%YXBM{WrJ+^|NI8{0 zYNQj=NGCJOZsg~-@doukMNnInd_@&^H}@N0{-A3pVwanUTmt1Y?iHD3<=j$t%>a+A&Ol*DGI?%9=GfW z*&}2#o2{g8k$oGDEyskIrm>B5l$52qS04GEe!-Smn7R5P8aV%{BC(_ofi1MXgQU1P7TwU)J<+a{ona++Ax7t1sl}#U<=o9VFHwG~W4_{$7yQBfq2Zh{qi2#baU`D|-{pQ< zh@d~TKQ^2%NIjd;6XRL`K6xPM^Lv9HK~c3PR>$DgvBo1Q|GmJXscY@R=XpDw$6eM*PlrA)g@6DEfB*=9 z00@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p z2!H?xfB*=900@8p2!H?xfB*=9fFjWR|L4F00w4eaAOHd&00JNY0w4eaAOHd&00JNY z0w4eaAOHd&00JNY0w4eaAOHd&00JNY0w4eaAOHd&00JNY0w4eaAOHd&00JNY0w4ea zAOHd&00JNY0w4eaAOHd&@ZS({(PO#yIV($jTW_c7QdjOJUKKUhs5`n=^)#*%HYx7q z5O=k8h?Q=-RH$*dL#8IAKCQ>6sNL>_9;JS}qLq8w%etn$;*M0*NQ*mZDX(GaC+(nI zKT$tjuJ52_JE`A2+Xmaz;hgJXn;+Y0GZ(Xc58LGAe!Oh&RB^i9vRy)MQkmRPnN*dT z{#wgm88Z$`J)JP3X|W+TY2@>hdSjTo2~!0^T)Ws_p^9FiDVN1^7x}1C+i_th`gXOI zIQb(gDg^ELSkYxyt>rD(-wq`!YKy1BPsoHjxhE#(Jlk)7_w4ewzns6~E`R*n>XEPa z1{^bU^Mk=X%U|wtUVP{Ix6ec}%WKJs^PAPxXY8TKmi5^WW@k=(w=_5M(qpG@HU8Dg zN9W(`NgiGN{gd9M*A6Y+=<*)iwl@31g_V;-l{dZDZ#DlvtzZ0O_uXUOmxuqfpS!a7 ZV`_UvAN}x5^5bb9Ye@fV0hnfU+! literal 0 HcmV?d00001 diff --git a/emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_CXX.bin b/emulator/CMakeFiles/4.2.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..693f4317bfb760ecc829d642758313fb662643ff GIT binary patch literal 33560 zcmeI5e`s4(6vuDUZcA-#w;{5v>z2ZB)=Il|rF3O~Bx{o`n59u;jjeLYkC*kaHW{xe zHl@&vI;c3I1Ht_vq70|V{KuaJCRP*`#UK4=qTt;ATVaACsGYES&VBE-FIiD=e>uMg z&b#;AbMEQ6pZ5y4f0Xm}^`CCk3E>hXZqm)9(P|-13NOus*h+esRLZFTP+&0dP(QDh zi`rbibd$w-W+_n0SRfuNcdPxr@-<=E>u8ykN>U6(99O@ya47OXpf6+tFILn=Hp><+hJ@>}Yht@oh~h?`6op_W`z$+7 z_8zjC%@)!*ve(o2GmWz}){;g^S@>IH3~H_tgep$>XZ2z3TK8$XC!O*7W^yvybjaa~_v(iE~%xyiED2 zj??p1@?t0w?C%-VC$(HgrjO^1p*`JC2oVYO2a`Sdg4B$hmL4)f2j!tiAk-J}3-YQx z$wFR}IU}tZL*Y;?77oZjq%Y);*#3l(8Xig*qg|b}V&3bvTkqRB@*R!ua6TGY`R@!C zpL(u7_#RkC_p*)ZR!D}|yxy%wU<%wa7-Ei*;UXhP2l z>UGHhEZh^bp7wD6ORj_Zw<~*xWydW0fMrjxO`XcQ4vyy^*WlugGN;KbDu0` z=BvM5SUBeHkFQ&vdV6Z}>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/emulator/CMakeFiles/4.2.3/CompilerIdC/a.out b/emulator/CMakeFiles/4.2.3/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..04ad8070bdb9ab830d16eeb13318f7efe33473dc GIT binary patch literal 33736 zcmeI5Urbwd6vt0XnI(V}C372-br0$=3lvz!GNUUK+)xG!OT?Gw%8QFK zd7BNThLfp8C_1Vqi}P*an@hfgj*DL?D{^yy^TndcqJiwxp|!CQFv6c?q@9&iHrUpxt%w8S^2X?&FN&KIUE{l4jv5$*%zs2l{&^7 ze`wtNY0KsJgAesyXuY_xmFK*y4pyQKT<`|VwjS5*+t6q zKg!Z`G{3ZovJ3T;{ic$xE!9w#Yo2sF{MQ!iGuevJ;*Kjd{;bL*LF}|hP;}M`mGd>au(#Q_<0n~eV>V4D01Ga zIEzQ0MDprmRJaH>2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?x zfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@A2-0D4@rn9*Re-Nx>LGvr;Sll(LK2?+_X=(%ccWm zw7_k_%T#1cnd9bgI%TRc(+HXgst83#Vu}J0BNU~HTC2*P%b!`Y-+1Rk!`VwmF4yao)n|SW*1Y`jTNl2LH|+Z0 P`|5r12cK#E&ZhM@UQ_KW literal 0 HcmV?d00001 diff --git a/emulator/CMakeFiles/4.2.3/CompilerIdC/apple-sdk.c b/emulator/CMakeFiles/4.2.3/CompilerIdC/apple-sdk.c new file mode 100644 index 0000000..db846b4 --- /dev/null +++ b/emulator/CMakeFiles/4.2.3/CompilerIdC/apple-sdk.c @@ -0,0 +1 @@ +#include diff --git a/emulator/CMakeFiles/4.2.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/emulator/CMakeFiles/4.2.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/emulator/CMakeFiles/4.2.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__RENESAS__) +# define COMPILER_ID "Renesas" +/* __RENESAS_VERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__DCC__) && defined(_DIAB_TOOL) +# define COMPILER_ID "Diab" + # define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__) + # define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__) + # define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__) + # define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__) + + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) || defined(__CPARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__RENESAS__) +# if defined(__CCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__CCRL__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__CCRH__) +# define ARCHITECTURE_ID "RH850" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR) + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/emulator/CMakeFiles/4.2.3/CompilerIdCXX/a.out b/emulator/CMakeFiles/4.2.3/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..c64f7877feeefa84c6ffb16fb707c1024e08c390 GIT binary patch literal 33736 zcmeI5Uu@G=6vt1y4mQW2{)qyUP#+{JW@~{6K@&Q+=@utjV8Lb!UVf~fDbS0Cip^(84u2L?(eqiN*Rgx_&v$# zz2}^J&+pvN@3wE-`S$wNf0hurh{er%7i+VJ=m`0EMzn&po>i&l>Zj{k>$WwCcfRP& z^IbPsl4pn)D%DaKYMCF_`-Ag+Wb9&gi*iX?luFwBlg8j7Ki>#1lzii6iP&{nVQ7jK$P~%Buykt)*Cy- z_WNuLo8_z}gRDFb@py{IGS+5Rkxb6TJeM{9MV9g=A1i;is4CT)sES5*SB3kcVYWpo zSf!50hkv~L+v3eXoqp%=qSh^YBkS1bW0e|+R&v2B^;{p<^^NBd_UiNLI1%$rOCGuB zxgyW?vr0_ghnnyBIIg)`xSsa4YbyhlTvTMYu5(lFdTP`+HCsC`+TPcjw7V;xG+THz z(Hd4=&!EHVVPgwlkyWe`_aEXKokNNHmNI*oCT3UD=u`!bUM{1V*=01!XB{qa1!tx! z(xau3=}lLb1xHI?yieD1XW`fs*TwZ88!J*5 z8@4{xw7EUr-4lu0iMHyVo~T_DwPKw+Nk@93RGoPhIpoL=hJe~0d+VKcsM#!vNl^Zkf`00@8p2!H?x zfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?xfB*=9 z00@8p2!H?xfB*=900@8p2!H?xfB*=900@8p2!H?x{67SIoTk~RWXx^To!eGidWmO5 z&x71-KA7>$-$yP*2PGtpqdhd7cJXIgf1c8xBm7D38+%yOiu{h(wAw>Mvf3kkv8g=M z+nVl{M%pQ>(^m9grja&1TSOzJ+-qKS?@{)CyFHb()gIdl+X*U-#5&@Nws%{R81*}K z%UY3_SeJ71>Ph~82XcNXdznjjHrMvOVsp$Jbm9*fTh1@*{l@kgdz-PB8#`g_5@QdF z%^Rhsw(R$jDp0Y~73*U=)9l$DGYg;q$GjCcP<7&2Zc0;8sar^1sU+2Rb{@D^ z(KT6pvgVDV^4PW4M@~(LqMzI21DD?XVb=>g&L2GYQ7C?4x?{|9X=0+w-4rUG9r$>l z|HzMDzFPnCqi1h7KKa?%#+6eSLg54FE}lPn=Bznp&V*W=#)rFYbwS=IN%?dHGL r{;5~K+V^$W_wS|t{xi^e^@EdJPFz0v*K2DgqdWS3|Dx3Wi9_pOB=r5? literal 0 HcmV?d00001 diff --git a/emulator/CMakeFiles/4.2.3/CompilerIdCXX/apple-sdk.cpp b/emulator/CMakeFiles/4.2.3/CompilerIdCXX/apple-sdk.cpp new file mode 100644 index 0000000..db846b4 --- /dev/null +++ b/emulator/CMakeFiles/4.2.3/CompilerIdCXX/apple-sdk.cpp @@ -0,0 +1 @@ +#include diff --git a/emulator/CMakeFiles/CMakeConfigureLog.yaml b/emulator/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..cb53482 --- /dev/null +++ b/emulator/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,2147 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/uname" + - "/Users/adolforeyna/.pyenv/shims/uname" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/uname" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/uname" + - "/opt/homebrew/bin/uname" + - "/opt/homebrew/sbin/uname" + - "/usr/local/bin/uname" + - "/System/Cryptexes/App/usr/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Darwin - 25.2.0 - arm64 + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeUnixFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "gmake" + - "make" + - "smake" + candidate_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/gmake" + - "/Users/adolforeyna/.pyenv/shims/gmake" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/gmake" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/gmake" + - "/opt/homebrew/bin/gmake" + - "/opt/homebrew/sbin/gmake" + - "/usr/local/bin/gmake" + - "/System/Cryptexes/App/usr/bin/gmake" + - "/usr/bin/gmake" + - "/bin/gmake" + - "/usr/sbin/gmake" + - "/sbin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/gmake" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/gmake" + - "/opt/pmk/env/global/bin/gmake" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/gmake" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/gmake" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/gmake" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/gmake" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/gmake" + - "/Users/adolforeyna/.antigravity/antigravity/bin/make" + - "/Users/adolforeyna/.pyenv/shims/make" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/make" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/make" + - "/opt/homebrew/bin/make" + - "/opt/homebrew/sbin/make" + - "/usr/local/bin/make" + - "/System/Cryptexes/App/usr/bin/make" + found: "/usr/bin/make" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:73 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:64 (_cmake_find_compiler)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER" + description: "C compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "cc" + - "gcc" + - "cl" + - "bcc" + - "xlc" + - "icx" + - "clang" + candidate_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/cc" + - "/Users/adolforeyna/.pyenv/shims/cc" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/cc" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/cc" + - "/opt/homebrew/bin/cc" + - "/opt/homebrew/sbin/cc" + - "/usr/local/bin/cc" + - "/System/Cryptexes/App/usr/bin/cc" + found: "/usr/bin/cc" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/opt/homebrew/share/cmake/Modules/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/cc + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is AppleClang, found in: + /Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/4.2.3/CompilerIdC/a.out + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:290 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Detecting C compiler apple sysroot: "/usr/bin/cc" "-E" "apple-sdk.c" + # 1 "apple-sdk.c" + # 1 "" 1 + # 1 "" 3 + # 466 "" 3 + # 1 "" 1 + # 1 "" 2 + # 1 "apple-sdk.c" 2 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 1 3 4 + # 89 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 90 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h" 1 3 4 + # 91 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 207 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 1 3 4 + # 196 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 197 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 33 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 2 3 4 + # 198 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 35 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 2 3 4 + # 199 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 208 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 2 "apple-sdk.c" 2 + + + Found apple sysroot: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ar" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/ar" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ranlib" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/ranlib" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "strip" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/strip" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ld" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/ld" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "nm" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/nm" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objdump" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + found: "/usr/bin/objdump" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "objcopy" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/usr/bin/objcopy" + - "/Users/adolforeyna/.antigravity/antigravity/bin/objcopy" + - "/Users/adolforeyna/.pyenv/shims/objcopy" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/objcopy" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/objcopy" + - "/opt/homebrew/bin/objcopy" + - "/opt/homebrew/sbin/objcopy" + - "/usr/local/bin/objcopy" + - "/System/Cryptexes/App/usr/bin/objcopy" + - "/bin/objcopy" + - "/usr/sbin/objcopy" + - "/sbin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/objcopy" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/objcopy" + - "/opt/pmk/env/global/bin/objcopy" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/objcopy" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/objcopy" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/objcopy" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/objcopy" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/objcopy" + found: false + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "readelf" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/usr/bin/readelf" + - "/Users/adolforeyna/.antigravity/antigravity/bin/readelf" + - "/Users/adolforeyna/.pyenv/shims/readelf" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/readelf" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/readelf" + - "/opt/homebrew/bin/readelf" + - "/opt/homebrew/sbin/readelf" + - "/usr/local/bin/readelf" + - "/System/Cryptexes/App/usr/bin/readelf" + - "/bin/readelf" + - "/usr/sbin/readelf" + - "/sbin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/readelf" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/readelf" + - "/opt/pmk/env/global/bin/readelf" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/readelf" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/readelf" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/readelf" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/readelf" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/readelf" + found: false + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "dlltool" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/usr/bin/dlltool" + - "/Users/adolforeyna/.antigravity/antigravity/bin/dlltool" + - "/Users/adolforeyna/.pyenv/shims/dlltool" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/dlltool" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/dlltool" + - "/opt/homebrew/bin/dlltool" + - "/opt/homebrew/sbin/dlltool" + - "/usr/local/bin/dlltool" + - "/System/Cryptexes/App/usr/bin/dlltool" + - "/bin/dlltool" + - "/usr/sbin/dlltool" + - "/sbin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/dlltool" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/dlltool" + - "/opt/pmk/env/global/bin/dlltool" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/dlltool" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/dlltool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/dlltool" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/dlltool" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/dlltool" + found: false + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "addr2line" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/usr/bin/addr2line" + - "/Users/adolforeyna/.antigravity/antigravity/bin/addr2line" + - "/Users/adolforeyna/.pyenv/shims/addr2line" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/addr2line" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/addr2line" + - "/opt/homebrew/bin/addr2line" + - "/opt/homebrew/sbin/addr2line" + - "/usr/local/bin/addr2line" + - "/System/Cryptexes/App/usr/bin/addr2line" + - "/bin/addr2line" + - "/usr/sbin/addr2line" + - "/sbin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/addr2line" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/addr2line" + - "/opt/pmk/env/global/bin/addr2line" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/addr2line" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/addr2line" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/addr2line" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/addr2line" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/addr2line" + found: false + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "tapi" + candidate_directories: + - "/usr/bin/" + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/usr/bin/tapi" + - "/Users/adolforeyna/.antigravity/antigravity/bin/tapi" + - "/Users/adolforeyna/.pyenv/shims/tapi" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/tapi" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/tapi" + - "/opt/homebrew/bin/tapi" + - "/opt/homebrew/sbin/tapi" + - "/usr/local/bin/tapi" + - "/System/Cryptexes/App/usr/bin/tapi" + - "/bin/tapi" + - "/usr/sbin/tapi" + - "/sbin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/tapi" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/tapi" + - "/opt/pmk/env/global/bin/tapi" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/tapi" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/tapi" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/tapi" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/tapi" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/tapi" + found: false + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake:54 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:69 (_cmake_find_compiler)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER" + description: "CXX compiler" + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "c++" + - "g++" + - "cl" + - "bcc" + - "icpx" + - "icx" + - "clang++" + candidate_directories: + - "/usr/bin/" + found: "/usr/bin/c++" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/opt/homebrew/share/cmake/Modules/" + found: "/opt/homebrew/share/cmake/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/c++ + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is AppleClang, found in: + /Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/4.2.3/CompilerIdCXX/a.out + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:290 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Detecting CXX compiler apple sysroot: "/usr/bin/c++" "-E" "apple-sdk.cpp" + # 1 "apple-sdk.cpp" + # 1 "" 1 + # 1 "" 3 + # 514 "" 3 + # 1 "" 1 + # 1 "" 2 + # 1 "apple-sdk.cpp" 2 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 1 3 4 + # 89 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 90 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h" 1 3 4 + # 91 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 207 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 1 3 4 + # 196 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 197 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 33 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 2 3 4 + # 198 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 1 3 4 + # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 3 4 + # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 + # 35 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 2 3 4 + # 199 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 + # 208 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 + # 2 "apple-sdk.cpp" 2 + + + Found apple sysroot: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk + - + kind: "find-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake:76 (find_program)" + - "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake:32 (include)" + - "CMakeLists.txt:2 (project)" + mode: "program" + variable: "CMAKE_INSTALL_NAME_TOOL" + description: "Path to a program." + settings: + SearchFramework: "FIRST" + SearchAppBundle: "FIRST" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "install_name_tool" + candidate_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/" + - "/Users/adolforeyna/.pyenv/shims/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/" + - "/opt/homebrew/bin/" + - "/opt/homebrew/sbin/" + - "/usr/local/bin/" + - "/System/Cryptexes/App/usr/bin/" + - "/usr/bin/" + - "/bin/" + - "/usr/sbin/" + - "/sbin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin/" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin/" + - "/opt/pmk/env/global/bin/" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin/" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin/" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/" + searched_directories: + - "/Users/adolforeyna/.antigravity/antigravity/bin/install_name_tool" + - "/Users/adolforeyna/.pyenv/shims/install_name_tool" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/install_name_tool" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/install_name_tool" + - "/opt/homebrew/bin/install_name_tool" + - "/opt/homebrew/sbin/install_name_tool" + - "/usr/local/bin/install_name_tool" + - "/System/Cryptexes/App/usr/bin/install_name_tool" + found: "/usr/bin/install_name_tool" + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + CMAKE_INSTALL_PREFIX: "/usr/local" + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK" + binary: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK' + + Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_d8f7b/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d8f7b.dir/build.make CMakeFiles/cmTC_d8f7b.dir/build + Building C object CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -arch arm64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c + Apple clang version 17.0.0 (clang-1700.6.3.2) + Target: arm64-apple-darwin25.2.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=26.2 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK -target-linker-version 1230.1 -v -fcoverage-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 -fskip-odr-check-in-gmf -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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c + clang -cc1 version 17.0.0 (clang-1700.6.3.2) default target arm64-apple-darwin25.2.0 + ignoring nonexistent directory "/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /Library/Developer/CommandLineTools/usr/lib/clang/17/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory) + End of search list. + Linking C executable cmTC_d8f7b + /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d8f7b.dir/link.txt --verbose=1 + Apple clang version 17.0.0 (clang-1700.6.3.2) + Target: arm64-apple-darwin25.2.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_d8f7b -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1230.1 + BUILD 06:36:05 Dec 2 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.3.8) + Library search paths: + /usr/local/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks + /usr/bin/cc -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -o cmTC_d8f7b + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:122 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.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: "arm64" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_d8f7b/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d8f7b.dir/build.make CMakeFiles/cmTC_d8f7b.dir/build] + ignore line: [Building C object CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -arch arm64 -v -Wl -v -MD -MT CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Apple clang version 17.0.0 (clang-1700.6.3.2)] + ignore line: [Target: arm64-apple-darwin25.2.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=26.2 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK -target-linker-version 1230.1 -v -fcoverage-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-Byx6pK -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks -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 -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 -fskip-odr-check-in-gmf -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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 17.0.0 (clang-1700.6.3.2) default target arm64-apple-darwin25.2.0] + ignore line: [ignoring nonexistent directory "/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/17/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking C executable cmTC_d8f7b] + ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d8f7b.dir/link.txt --verbose=1] + ignore line: [Apple clang version 17.0.0 (clang-1700.6.3.2)] + ignore line: [Target: arm64-apple-darwin25.2.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_d8f7b -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/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 [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [26.0.0] ==> ignore + arg [26.2] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk] ==> ignore + arg [-mllvm] ==> ignore + arg [-enable-linkonceodr-outlining] ==> ignore + arg [-o] ==> ignore + arg [cmTC_d8f7b] ==> ignore + arg [-L/usr/local/lib] ==> dir [/usr/local/lib] + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_d8f7b.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + linker tool for 'C': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + implicit libs: [] + implicit objs: [] + implicit dirs: [/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the C compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" + @(#)PROGRAM:ld PROJECT:ld-1230.1 + BUILD 06:36:05 Dec 2 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.3.8) + - + kind: "try_compile-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O" + binary: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_OSX_ARCHITECTURES: "" + CMAKE_OSX_DEPLOYMENT_TARGET: "" + CMAKE_OSX_SYSROOT: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O' + + Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4f4aa/fast + /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4f4aa.dir/build.make CMakeFiles/cmTC_4f4aa.dir/build + Building CXX object CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o + /usr/bin/c++ -arch arm64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp + Apple clang version 17.0.0 (clang-1700.6.3.2) + Target: arm64-apple-darwin25.2.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + clang++: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1" + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -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=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=26.2 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O -target-linker-version 1230.1 -v -fcoverage-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks -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 -fdeprecated-macro -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 -fskip-odr-check-in-gmf -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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 17.0.0 (clang-1700.6.3.2) default target arm64-apple-darwin25.2.0 + ignoring nonexistent directory "/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" + ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + #include "..." search starts here: + #include <...> search starts here: + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/17/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory) + End of search list. + Linking CXX executable cmTC_4f4aa + /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4f4aa.dir/link.txt --verbose=1 + Apple clang version 17.0.0 (clang-1700.6.3.2) + Target: arm64-apple-darwin25.2.0 + Thread model: posix + InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_4f4aa -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a + @(#)PROGRAM:ld PROJECT:ld-1230.1 + BUILD 06:36:05 Dec 2 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.3.8) + Library search paths: + /usr/local/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift + Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks + /usr/bin/c++ -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4f4aa + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:122 (message)" + - "/opt/homebrew/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: "arm64" + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O'] + ignore line: [] + ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_4f4aa/fast] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4f4aa.dir/build.make CMakeFiles/cmTC_4f4aa.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -arch arm64 -v -Wl -v -MD -MT CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 17.0.0 (clang-1700.6.3.2)] + ignore line: [Target: arm64-apple-darwin25.2.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang++: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx26.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -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=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=26.2 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O -target-linker-version 1230.1 -v -fcoverage-compilation-dir=/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/CMakeScratch/TryCompile-9c3F2O -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks -internal-iframework /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks -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 -fdeprecated-macro -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 -fskip-odr-check-in-gmf -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 -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 17.0.0 (clang-1700.6.3.2) default target arm64-apple-darwin25.2.0] + ignore line: [ignoring nonexistent directory "/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/17/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_4f4aa] + ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4f4aa.dir/link.txt --verbose=1] + ignore line: [Apple clang version 17.0.0 (clang-1700.6.3.2)] + ignore line: [Target: arm64-apple-darwin25.2.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 26.0.0 26.2 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_4f4aa -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/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 [arm64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [26.0.0] ==> ignore + arg [26.2] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk] ==> ignore + arg [-mllvm] ==> ignore + arg [-enable-linkonceodr-outlining] ==> ignore + arg [-o] ==> ignore + arg [cmTC_4f4aa] ==> ignore + arg [-L/usr/local/lib] ==> dir [/usr/local/lib] + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_4f4aa.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld + Library search paths: [;/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/usr/local/lib] ==> [/usr/local/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] + + + - + kind: "message-v1" + backtrace: + - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/opt/homebrew/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:ld-1230.1 + BUILD 06:36:05 Dec 2 2025 + configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em armv8m.main armv8.1m.main + will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em + LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) + TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.3.8) + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:6 (find_package)" + name: "SFML" + components: + - + name: "graphics" + required: true + found: false + - + name: "window" + required: true + found: false + - + name: "system" + required: true + found: false + configs: + - + filename: "SFMLConfig.cmake" + kind: "cmake" + - + filename: "sfml-config.cmake" + kind: "cmake" + version_request: + version: "2.5" + version_complete: "2.5" + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "SFML" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/pkgRedirects/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Projects/pico-bare-metal/Adolfo/basic1/emulator/CMakeFiles/pkgRedirects/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.antigravity/antigravity/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.antigravity/antigravity/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pyenv/shims/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pyenv/shims/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/homebrew/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/homebrew/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/local/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Cryptexes/App/usr/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/usr/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/opt/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/Library/Frameworks/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Developer/CommandLineTools/Library/Frameworks/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Frameworks/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Library/Frameworks/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Library/Frameworks/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/System/Library/Frameworks/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Applications/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Users/adolforeyna/Applications/sfml-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/SFMLConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/Applications/sfml-config.cmake" + mode: "config" + reason: "no_exist" + found: null + search_context: + ENV{PATH}: + - "/Users/adolforeyna/.antigravity/antigravity/bin" + - "/Users/adolforeyna/.pyenv/shims" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/opt/homebrew/bin" + - "/opt/homebrew/sbin" + - "/usr/local/bin" + - "/System/Cryptexes/App/usr/bin" + - "/usr/bin" + - "/bin" + - "/usr/sbin" + - "/sbin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin" + - "/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin" + - "/opt/pmk/env/global/bin" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand" + - "/Users/adolforeyna/Library/Application Support/Code/User/globalStorage/github.copilot-chat/copilotCli" + - "/Users/adolforeyna/.pico-sdk/toolchain/14_2_Rel1/bin" + - "/Users/adolforeyna/.pico-sdk/picotool/2.2.0-a4/picotool" + - "/Users/adolforeyna/.pico-sdk/cmake/v3.31.5/bin" + - "/Users/adolforeyna/.pico-sdk/ninja/v1.12.1" + - "/Users/adolforeyna/.vscode/extensions/ms-python.debugpy-2025.18.0-darwin-arm64/bundled/scripts/noConfigScripts" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr" + - "/opt/homebrew" + - "/usr/local" + - "/usr" + - "/" + - "/opt/homebrew" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - "/sw" + - "/opt/local" + CMAKE_SYSTEM_FRAMEWORK_PATH: + - "~/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Network/Library/Frameworks" + - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" + - "/Library/Developer/CommandLineTools/Library/Frameworks" + - "/Library/Developer/CommandLineTools/Library/Frameworks" + - "/Library/Frameworks" + - "/Network/Library/Frameworks" + - "/System/Library/Frameworks" +... diff --git a/emulator/CMakeFiles/cmake.check_cache b/emulator/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/emulator/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/emulator/CMakeLists.txt b/emulator/CMakeLists.txt new file mode 100644 index 0000000..b323bf9 --- /dev/null +++ b/emulator/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.10) +project(basic1_emulator) + +set(CMAKE_CXX_STANDARD 17) + +find_package(SFML 2.5 COMPONENTS graphics window system REQUIRED) + +# Add source files +set(SOURCES + main.cpp + low_level_display_sfml.cpp + # Add more emulator-specific sources here +) + +add_executable(basic1_emulator ${SOURCES}) + +target_include_directories(basic1_emulator PRIVATE ../display ../fonts ../games .) + +target_link_libraries(basic1_emulator sfml-graphics sfml-window sfml-system) diff --git a/emulator/Makefile b/emulator/Makefile new file mode 100644 index 0000000..8af17ea --- /dev/null +++ b/emulator/Makefile @@ -0,0 +1,33 @@ +# Detect Operating System +OS := $(shell uname) + +# Compiler +CXX = g++ +CXXFLAGS = -std=c++17 -Wall + +# Paths for Homebrew on macOS (Silicon/M1/M2/M3) +ifeq ($(OS), Darwin) + SFML_DIR = $(shell brew --prefix sfml@2) + INCLUDES = -I. -I$(SFML_DIR)/include -I../display -I../fonts -I../games + LIBS = -L$(SFML_DIR)/lib -lsfml-graphics -lsfml-window -lsfml-system +else + # Standard Linux paths + INCLUDES = -I. -I../display -I../fonts -I../games + LIBS = -lsfml-graphics -lsfml-window -lsfml-system +endif + + + +# Target +TARGET = basic1_emulator +SRC = main.cpp low_level_display_sfml.cpp input_manager.cpp game_launcher.cpp \ + ../display/low_level_render.cpp \ + ../display/low_level_gui.cpp \ + ../games/demo_game.cpp \ + ../games/tic_tac_toe.cpp + +$(TARGET): $(SRC) + $(CXX) $(CXXFLAGS) $(SRC) -o $(TARGET) $(INCLUDES) $(LIBS) + +clean: + rm -f $(TARGET) \ No newline at end of file diff --git a/emulator/README.md b/emulator/README.md new file mode 100644 index 0000000..af1794e --- /dev/null +++ b/emulator/README.md @@ -0,0 +1,25 @@ +# Emulator for basic1 Game Logic + +This folder contains a desktop emulator for the basic1 game, using the same game logic and rendering libraries as the embedded version. The emulator uses SFML for graphics and input, allowing you to test and develop the game on your computer. + +## Features +- Uses the same game logic and rendering code as the embedded firmware +- Emulates touch with mouse clicks +- Emulates hardware buttons with keyboard keys +- Runs as a native desktop application (no Pico SDK required) + +## Build Instructions +1. Install SFML (https://www.sfml-dev.org/) +2. Run `cmake . && make` in this directory +3. Run `./basic1_emulator` + +## Input Mapping +- Mouse click: Emulates touch +- Arrow keys, space, enter: Emulate hardware buttons + +## Extending +- Add new features or overlays for debugging +- Update input mapping as needed + +--- +This emulator is independent from the embedded build system. diff --git a/emulator/basic1_emulator b/emulator/basic1_emulator new file mode 100755 index 0000000000000000000000000000000000000000..8f23672a09f4e7d20d353e999827ef38ebfb8a33 GIT binary patch literal 140736 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 literal 0 HcmV?d00001 diff --git a/emulator/build_and_run.sh b/emulator/build_and_run.sh new file mode 100755 index 0000000..a83f23c --- /dev/null +++ b/emulator/build_and_run.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -e + +echo "[Emulator] Cleaning old build..." +make clean + +echo "[Emulator] Building..." +make + +echo "[Emulator] Running emulator..." +./basic1_emulator diff --git a/emulator/game.h b/emulator/game.h new file mode 100644 index 0000000..efab3e9 --- /dev/null +++ b/emulator/game.h @@ -0,0 +1,25 @@ +// Emulator copy of game.h +#ifndef GAME_H +#define GAME_H +#include +#include "input_event.h" +#include "../display/low_level_render.h" +#include "../display/low_level_gui.h" +class InputManager; +class Game { +public: + Game(uint16_t width, uint16_t height, LowLevelRenderer* renderer, LowLevelGUI* gui, InputManager* input_manager) + : width(width), height(height), renderer(renderer), gui(gui), input_manager(input_manager) {} + virtual ~Game() {} + virtual void init() = 0; + virtual bool update(const InputEvent& event) = 0; + virtual void draw() = 0; + virtual bool wants_to_exit() const { return false; } +protected: + uint16_t width; + uint16_t height; + LowLevelRenderer* renderer; + LowLevelGUI* gui; + InputManager* input_manager; +}; +#endif // GAME_H diff --git a/emulator/game_launcher.cpp b/emulator/game_launcher.cpp new file mode 100644 index 0000000..f1322ac --- /dev/null +++ b/emulator/game_launcher.cpp @@ -0,0 +1,86 @@ +// Copy of game_launcher.cpp for emulator build +#include "game_launcher.h" +#include "input_manager.h" +#include "../display/low_level_render.h" +#include "../display/low_level_gui.h" +#include +extern Font font_5x5_obj; +GameLauncher::GameLauncher(uint16_t width, uint16_t height, LowLevelRenderer* renderer, LowLevelGUI* gui, InputManager* input_manager) + : width(width), height(height), renderer(renderer), gui(gui), input_manager(input_manager), + selected_index(0), selected_game(nullptr) {} +void GameLauncher::register_game(const char* name, const char* description, Game* (*factory)(uint16_t, uint16_t, LowLevelRenderer*, LowLevelGUI*, InputManager*)) { + GameEntry entry; + entry.name = name; + entry.description = description; + entry.factory = factory; + games.push_back(entry); + printf("Registered game: %s - %s\n", name, description); +} +void GameLauncher::draw() { + LowLevelWindow* window = gui->draw_new_window(10, 10, width - 20, height - 20, "Game Launcher"); + renderer->set_font(&font_5x5_obj); + renderer->draw_string_scaled(30, 40, "Select a Game:", 2); + for (size_t i = 0; i < games.size(); i++) { + int y = MENU_Y_START + (i * MENU_ITEM_HEIGHT); + bool is_selected = ((int)i == selected_index); + gui->draw_button(window, 20, y, games[i].name, is_selected, true); + renderer->set_font(&font_5x5_obj); + renderer->set_text_color(true); + renderer->draw_string_scaled(50, y + 36, games[i].description, 1); + } + const char* instructions; + if (input_manager->has_buttons()) { + instructions = "Touch game or use KEY0/KEY1"; + } else { + instructions = "Touch game to play"; + } + renderer->set_font(&font_5x5_obj); + renderer->draw_string_scaled(30, height - 35, instructions, 2); +} +bool GameLauncher::update(const InputEvent& event) { + bool needs_refresh = false; + switch (event.type) { + case INPUT_TOUCH_DOWN: { + for (size_t i = 0; i < games.size(); i++) { + int y = MENU_Y_START + (i * MENU_ITEM_HEIGHT); + if (event.y >= y - 5 && event.y < y + MENU_ITEM_HEIGHT - 5) { + selected_game = games[i].factory(width, height, renderer, gui, input_manager); + if (selected_game) { + selected_game->init(); + return true; + } + break; + } + } + break; + } + case INPUT_BUTTON_0: { + if (games.size() > 0) { + selected_index = (selected_index + 1) % games.size(); + needs_refresh = true; + } + break; + } + case INPUT_BUTTON_1: { + if (selected_index >= 0 && selected_index < (int)games.size()) { + selected_game = games[selected_index].factory(width, height, renderer, gui, input_manager); + if (selected_game) { + selected_game->init(); + return true; + } + } + break; + } + default: + break; + } + return needs_refresh; +} +Game* GameLauncher::get_selected_game() { return selected_game; } +void GameLauncher::reset() { + if (selected_game) { + delete selected_game; + selected_game = nullptr; + } + selected_index = 0; +} diff --git a/emulator/game_launcher.h b/emulator/game_launcher.h new file mode 100644 index 0000000..e7d00dd --- /dev/null +++ b/emulator/game_launcher.h @@ -0,0 +1,35 @@ +// Copy of game_launcher.h for emulator build +#include +#include +#include "input_event.h" +#include "game.h" +class LowLevelRenderer; +class LowLevelGUI; +class InputManager; +struct GameEntry { + const char* name; + const char* description; + Game* (*factory)(uint16_t width, uint16_t height, LowLevelRenderer* renderer, LowLevelGUI* gui, InputManager* input_manager); +}; +class GameLauncher { +public: + GameLauncher(uint16_t width, uint16_t height, LowLevelRenderer* renderer, LowLevelGUI* gui, InputManager* input_manager); + void register_game(const char* name, const char* description, Game* (*factory)(uint16_t, uint16_t, LowLevelRenderer*, LowLevelGUI*, InputManager*)); + void draw(); + bool update(const InputEvent& event); + Game* get_selected_game(); + void reset(); + bool is_game_selected() const { return selected_game != nullptr; } +private: + uint16_t width; + uint16_t height; + LowLevelRenderer* renderer; + LowLevelGUI* gui; + InputManager* input_manager; + std::vector games; + int selected_index; + Game* selected_game; + static const int MENU_Y_START = 60; + static const int MENU_ITEM_HEIGHT = 40; + static const int MENU_PADDING = 10; +}; diff --git a/emulator/input_event.h b/emulator/input_event.h new file mode 100644 index 0000000..4e99fee --- /dev/null +++ b/emulator/input_event.h @@ -0,0 +1,27 @@ +// Emulator copy of input_event.h +// Shared input event structures used by InputManager and Game classes +// Extracted from basic1.cpp for modular game architecture +#ifndef INPUT_EVENT_H +#define INPUT_EVENT_H +#include +// Input event types +enum InputType { + INPUT_NONE = 0, + INPUT_TOUCH_DOWN, + INPUT_TOUCH_MOVE, + INPUT_TOUCH_UP, + INPUT_BUTTON_0, + INPUT_BUTTON_1, + INPUT_GESTURE +}; +// Unified input event structure +struct InputEvent { + InputType type; + int16_t x; + int16_t y; + uint8_t gesture_code; + uint8_t button_id; + uint8_t pressure; + bool valid; +}; +#endif // INPUT_EVENT_H diff --git a/emulator/input_manager.cpp b/emulator/input_manager.cpp new file mode 100644 index 0000000..4c3a4cd --- /dev/null +++ b/emulator/input_manager.cpp @@ -0,0 +1,3 @@ +// Emulator stub for InputManager implementation +#include "input_manager.h" +// No implementation needed for stub diff --git a/emulator/input_manager.h b/emulator/input_manager.h new file mode 100644 index 0000000..ee397fd --- /dev/null +++ b/emulator/input_manager.h @@ -0,0 +1,6 @@ +#pragma once +// Minimal stub for emulator build +class InputManager { +public: + bool has_buttons() const { return false; } +}; diff --git a/emulator/low_level_display_sfml.cpp b/emulator/low_level_display_sfml.cpp new file mode 100644 index 0000000..cb67a04 --- /dev/null +++ b/emulator/low_level_display_sfml.cpp @@ -0,0 +1,60 @@ + +#include "low_level_display_sfml.h" +#include +#include +#include + +// Add missing method implementations for emulator linkage +bool LowLevelDisplaySFML::pollEvent(sf::Event& event) { + return window.pollEvent(event); +} + +void LowLevelDisplaySFML::close() { + window.close(); +} + +LowLevelDisplaySFML::LowLevelDisplaySFML(int w, int h) + : width(w), height(h), window(sf::VideoMode(w, h), "basic1 Emulator"), framebuffer((w * h + 7) / 8, 0) {} + +bool LowLevelDisplaySFML::init() { + texture.create(width, height); + sprite.setTexture(texture); + return window.isOpen(); +} + +void LowLevelDisplaySFML::draw_buffer(const uint8_t* bit_buffer) { + // Convert 1-bit buffer to 8-bit grayscale (or RGBA) for SFML + // Each bit in bit_buffer represents a pixel (0=black, 1=white) + std::vector pixels(width * height * 4, 0); + for (int y = 0; y < height; ++y) { + for (int x = 0; x < width; ++x) { + int bit_index = y * width + x; + int byte_index = bit_index / 8; + int bit_offset = 7 - (bit_index % 8); + bool on = (bit_buffer[byte_index] >> bit_offset) & 0x1; + int idx = (y * width + x) * 4; + sf::Uint8 color = on ? 255 : 0; + pixels[idx + 0] = color; // R + pixels[idx + 1] = color; // G + pixels[idx + 2] = color; // B + pixels[idx + 3] = 255; // A + } + } + texture.update(pixels.data()); +} + +void LowLevelDisplaySFML::refresh() { + sf::Event event; + while (window.pollEvent(event)) { + if (event.type == sf::Event::Closed) + window.close(); + // TODO: Handle mouse/keyboard input here + } + window.clear(sf::Color::Black); + window.draw(sprite); + window.display(); +} + +bool LowLevelDisplaySFML::isOpen() const { + return window.isOpen(); +} diff --git a/emulator/low_level_display_sfml.h b/emulator/low_level_display_sfml.h new file mode 100644 index 0000000..6d065a6 --- /dev/null +++ b/emulator/low_level_display_sfml.h @@ -0,0 +1,19 @@ +#pragma once +#include + +class LowLevelDisplaySFML { +public: + LowLevelDisplaySFML(int width, int height); + bool init(); + void draw_buffer(const uint8_t* bit_buffer); + void refresh(); + bool isOpen() const; + bool pollEvent(sf::Event& event); + void close(); +private: + int width, height; + sf::RenderWindow window; + sf::Texture texture; + sf::Sprite sprite; + std::vector framebuffer; +}; diff --git a/emulator/main.cpp b/emulator/main.cpp new file mode 100644 index 0000000..6eb4000 --- /dev/null +++ b/emulator/main.cpp @@ -0,0 +1,109 @@ +// Entry point for the desktop emulator +#include "low_level_display_sfml.h" +#include "../display/low_level_render.h" +#include "../display/low_level_gui.h" +#include "game_launcher.h" +#include "../games/demo_game.h" +#include "../games/tic_tac_toe.h" +#include "input_manager.h" +#include +#include +#include +#include +#include + +constexpr int WIDTH = 400; +constexpr int HEIGHT = 300; + + +int main() { + // Allocate 1-bit framebuffer (rounded up) + size_t buffer_size = (WIDTH * HEIGHT + 7) / 8; + std::vector framebuffer(buffer_size, 0); + + // Set up display, renderer, and GUI + LowLevelDisplaySFML display(WIDTH, HEIGHT); + if (!display.init()) { + std::cerr << "Failed to initialize SFML display" << std::endl; + return 1; + } + LowLevelRenderer renderer(framebuffer.data(), WIDTH, HEIGHT); + LowLevelGUI gui(&renderer, font_5x5_obj); + InputManager input_manager; // Emulator stub + + // Create GameLauncher + GameLauncher launcher(WIDTH, HEIGHT, &renderer, &gui, &input_manager); + launcher.register_game("Tic-Tac-Toe", "Classic 2-player game", + [](uint16_t w, uint16_t h, LowLevelRenderer* r, LowLevelGUI* g, InputManager* im) -> Game* { + return new TicTacToeGame(w, h, r, g, im); + }); + launcher.register_game("Demo Game", "Simple test game", + [](uint16_t w, uint16_t h, LowLevelRenderer* r, LowLevelGUI* g, InputManager* im) -> Game* { + return new DemoGame(w, h, r, g, im); + }); + + Game* current_game = nullptr; + bool running = true; + bool needs_redraw = true; + + while (display.isOpen() && running) { + // Handle SFML events and translate to InputEvent + InputEvent event = {INPUT_NONE, 0, 0, 0, 0, 0, false}; + sf::Event sfEvent; + while (display.pollEvent(sfEvent)) { + if (sfEvent.type == sf::Event::Closed) { + display.close(); + running = false; + } else if (sfEvent.type == sf::Event::MouseButtonPressed) { + event.type = INPUT_TOUCH_DOWN; + event.x = sfEvent.mouseButton.x; + event.y = sfEvent.mouseButton.y; + event.valid = true; + } else if (sfEvent.type == sf::Event::KeyPressed) { + if (sfEvent.key.code == sf::Keyboard::Space) { + event.type = INPUT_BUTTON_0; + event.valid = true; + } else if (sfEvent.key.code == sf::Keyboard::Enter) { + event.type = INPUT_BUTTON_1; + event.valid = true; + } else if (sfEvent.key.code == sf::Keyboard::Escape) { + // Simulate long-press exit + if (launcher.is_game_selected()) { + launcher.reset(); + needs_redraw = true; + } + } + } + } + + if (event.valid) { + if (launcher.is_game_selected()) { + current_game = launcher.get_selected_game(); + needs_redraw = current_game->update(event) || needs_redraw; + if (current_game->wants_to_exit()) { + launcher.reset(); + needs_redraw = true; + } + } else { + bool game_selected = launcher.update(event); + if (game_selected) { + needs_redraw = true; + } + } + } + + if (needs_redraw) { + renderer.clear_buffer(); + if (launcher.is_game_selected()) { + current_game = launcher.get_selected_game(); + current_game->draw(); + } else { + launcher.draw(); + } + display.draw_buffer(framebuffer.data()); + display.refresh(); + needs_redraw = false; + } + } + return 0; +}