mcuboot starting documentation

This commit is contained in:
Jeremy Janella
2026-07-04 14:23:37 -04:00
parent 6f163e1250
commit d20456a39c
766 changed files with 250 additions and 75895 deletions
+29
View File
@@ -19,6 +19,35 @@ west flash --runner pyocd # had to su root first to run this (after running nix
# MCUBoot
cd ~/utat-dev/zephyrproject
# Configure the DTS for partition sizes: https://docs.zephyrproject.org/latest/build/dts/intro-scope-purpose.html
# https://docs.zephyrproject.org/latest/build/dts/api/bindings/mtd/fixed-partitions.html
nvim "zephyr/boards/st/nucleo_g431rb/nucleo_g431rb.dts"
# Create a private key: https://docs.mcuboot.com/readme-zephyr.html
./scripts/imgtool.py keygen -k mykey.pem -t rsa-2048
# Create its public key
openssl rsa -in mykey.pem -pubout > pubkey.pem
# Set up signing: https://docs.mcuboot.com/readme-zephyr.html
# ./bootloader/mcuboot/samples/zephyr/Makefile
python scripts/imgtool.py sign \
--key mykey.pem \
--header-size 0x200 \
--align 8 \
--version 1.2 \
--slot-size 0x8000 \
./
# Add the key file path to the KConfig https://docs.zephyrproject.org/latest/build/kconfig/setting.html
echo "
# Set the key file
CONFIG_BOOT_SIGNATURE_KEY_FILE=pubkey.pem" >> "./zephyr/boards/st/nucleo_g431rb/nucleo_g431rb_defconfig"
west build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr -d build/mcuboot -- -DEXTRA_CONF_FILE=mcuboot-nucleo-g431rb.conf
west flash -d build/mcuboot --runner pyocd # (as root, with nix develop)
+2 -436
View File
@@ -32,15 +32,6 @@ BOARD_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431r
//Path to a program.
BOSSAC:FILEPATH=/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/bossac
//Kernel binary file
BYPRODUCT_KERNEL_BIN_NAME:FILEPATH=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/zephyr.bin
//Kernel elf file
BYPRODUCT_KERNEL_ELF_NAME:FILEPATH=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/zephyr.elf
//Kernel hex file
BYPRODUCT_KERNEL_HEX_NAME:FILEPATH=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/zephyr.hex
//Selected board
CACHED_BOARD:STRING=nucleo_g431rb
@@ -54,123 +45,7 @@ CACHED_SNIPPET:STRING=
CCACHE_FOUND:FILEPATH=CCACHE_FOUND-NOTFOUND
//Path to a program.
CCACHE_PROGRAM:FILEPATH=CCACHE_PROGRAM-NOTFOUND
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar
//Path to a program.
CMAKE_AS:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-as
//ASM compiler
CMAKE_ASM_COMPILER:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib
//Flags used by the ASM compiler during all build types.
CMAKE_ASM_FLAGS:STRING=
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//CXX compiler
CMAKE_CXX_COMPILER:STRING=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib
//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:STRING=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib
//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 build database during the build.
CMAKE_EXPORT_BUILD_DATABASE:BOOL=
//Export CMake compile commands. Used by gen_app_partitions.py
// script
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE
CMAKE_C_COMPILER:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/pkgRedirects
@@ -178,136 +53,6 @@ CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/buil
//Path to a program.
CMAKE_GCOV:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcov
//Path to a program.
CMAKE_GDB:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb-py
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=/nix/store/fx65xy1jiapn94i0gkq62k4vbvvbqyx1-ninja-1.13.1/bin/ninja
//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=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump
//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=MCUboot
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=4.4.99
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=4
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=99
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-readelf
//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=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-strip
//Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//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
//If desired, you can build the application usingthe configuration
// settings specified in an alternate .conf file using this parameter.
// These settings will override the settings in the applications
@@ -330,54 +75,18 @@ DTC_OVERLAY_FILE:STRING=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/b
//No help, variable specified on the command line.
EXTRA_CONF_FILE:UNINITIALIZED=mcuboot-nucleo-g431rb.conf
//Path to a program.
GEN_KOBJECT_LIST:FILEPATH=/home/jeremy/utat-dev/zephyrproject/zephyr/scripts/build/gen_kobject_list.py
//Linker BFD compatibility (compiler reported)
GNULD_LINKER_IS_BFD:BOOL=ON
//GNU ld version
GNULD_VERSION_STRING:STRING=2.43.1
//Path to a program.
GPERF:FILEPATH=GPERF-NOTFOUND
//Path to a program.
IMGTOOL:FILEPATH=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/scripts/imgtool.py
//Value Computed by CMake
MCUboot_BINARY_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/build/mcuboot
//Value Computed by CMake
MCUboot_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
MCUboot_SOURCE_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//Path to a program.
OPENOCD:FILEPATH=/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/openocd
//Path to a program.
PAHOLE:FILEPATH=PAHOLE-NOTFOUND
//Path to a program.
PTY_INTERFACE:FILEPATH=PTY_INTERFACE-NOTFOUND
//Path to a program.
PUNCOVER:FILEPATH=PUNCOVER-NOTFOUND
//Value Computed by CMake
Picolibc_BINARY_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/picolibc
//Value Computed by CMake
Picolibc_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
Picolibc_SOURCE_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc
//Path to the SoC directory.
SOC_FULL_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32
//True if toolchain supports libstdc++
TOOLCHAIN_HAS_GLIBCXX:BOOL=ON
@@ -399,21 +108,9 @@ WEST_PYTHON:UNINITIALIZED=/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.
//Zephyr base
ZEPHYR_BASE:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr
//Path to Zephyr git repository index file
ZEPHYR_GIT_INDEX:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/.git/index
//Zephyr toolchain variant
ZEPHYR_TOOLCHAIN_VARIANT:STRING=zephyr
//Value Computed by CMake
Zephyr-Kernel_BINARY_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/build/mcuboot
//Value Computed by CMake
Zephyr-Kernel_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
Zephyr-Kernel_SOURCE_DIR:STATIC=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//The directory containing a CMake configuration file for Zephyr-sdk.
Zephyr-sdk_DIR:PATH=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/cmake
@@ -435,27 +132,6 @@ Zephyr_DIR:PATH=/home/jeremy/utat-dev/zephyrproject/zephyr/share/zephyr-package/
BOARD_DIRECTORIES:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb
//DT bindings root directories
CACHED_DTS_ROOT_BINDINGS:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/dts/bindings
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER
CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/jeremy/utat-dev/zephyrproject/build/mcuboot
//Major version of cmake used to create the current loaded cache
@@ -470,54 +146,6 @@ CMAKE_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/b
CMAKE_CPACK_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-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_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-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
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//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_BUILD_DATABASE
CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
@@ -533,80 +161,18 @@ CMAKE_GENERATOR_TOOLSET:INTERNAL=
CMAKE_HOME_DIRECTORY:INTERNAL=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
//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=148
//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
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/share/cmake-4.1
//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=/nix/store/hqkszxk2c0cxvd04xa4gsaqs182dw8l2-coreutils-9.8/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Dtc
FIND_PACKAGE_MESSAGE_DETAILS_Dtc:INTERNAL=[/nix/store/nszfwxgy1r73svjq0ywnr3gf9xyyp1hs-zephyr-sdk-hosttools-1.0.1/bin/dtc][v1.7.0(1.4.6)]
//Details about finding GnuLd
FIND_PACKAGE_MESSAGE_DETAILS_GnuLd:INTERNAL=[/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd][v2.43.1()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13][found components: Interpreter ][v3.13.12(3.12)]
//Zephyr hardware model version
HWM:INTERNAL=v2
//Zephyr hardware model
HWMv2:INTERNAL=True
KERNEL_META_PATH:INTERNAL=/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/zephyr.meta
//List of SoC directories for SoC (stm32g431xx)
SOC_DIRECTORIES:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32
SOC_LINKER_SCRIPT:INTERNAL=/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/arch/arm/cortex_m/scripts/linker.ld
//West
WEST:INTERNAL=/nix/store/ibzxfw7gxwzqz2x8dyh3a2h32r1v87wn-python3-3.13.12-env/bin/python3.13;-m;west
//Cached environment variable ZEPHYR_SDK_INSTALL_DIR
@@ -1,30 +0,0 @@
set(CMAKE_ASM_COMPILER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar")
set(CMAKE_ASM_COMPILER_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar")
set(CMAKE_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib")
set(CMAKE_ASM_COMPILER_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib")
set(CMAKE_LINKER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_ASM_COMPILER_LINKER "")
set(CMAKE_ASM_COMPILER_LINKER_ID "")
set(CMAKE_ASM_COMPILER_LINKER_VERSION )
set(CMAKE_ASM_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "GNU")
set(CMAKE_ASM_COMPILER_VERSION "")
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
set(CMAKE_ASM_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)
set(CMAKE_ASM_LINKER_DEPFILE_SUPPORTED )
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
set(CMAKE_ASM_LINKER_PUSHPOP_STATE_SUPPORTED )
@@ -1,84 +0,0 @@
set(CMAKE_C_COMPILER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "14.3.0")
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 "")
set(CMAKE_C90_COMPILE_FEATURES "")
set(CMAKE_C99_COMPILE_FEATURES "")
set(CMAKE_C11_COMPILE_FEATURES "")
set(CMAKE_C17_COMPILE_FEATURES "")
set(CMAKE_C23_COMPILE_FEATURES "")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar")
set(CMAKE_C_COMPILER_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar")
set(CMAKE_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib")
set(CMAKE_C_COMPILER_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib")
set(CMAKE_LINKER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_C_COMPILER_LINKER "")
set(CMAKE_C_COMPILER_LINKER_ID "")
set(CMAKE_C_COMPILER_LINKER_VERSION )
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED )
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 "")
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 "")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
@@ -1,100 +0,0 @@
set(CMAKE_CXX_COMPILER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-g++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "14.3.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_STANDARD_LATEST "26")
set(CMAKE_CXX_COMPILE_FEATURES "")
set(CMAKE_CXX98_COMPILE_FEATURES "")
set(CMAKE_CXX11_COMPILE_FEATURES "")
set(CMAKE_CXX14_COMPILE_FEATURES "")
set(CMAKE_CXX17_COMPILE_FEATURES "")
set(CMAKE_CXX20_COMPILE_FEATURES "")
set(CMAKE_CXX23_COMPILE_FEATURES "")
set(CMAKE_CXX26_COMPILE_FEATURES "")
set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "")
set(CMAKE_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar")
set(CMAKE_CXX_COMPILER_AR "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ar")
set(CMAKE_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc-ranlib")
set(CMAKE_LINKER "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd")
set(CMAKE_LINKER_LINK "")
set(CMAKE_LINKER_LLD "")
set(CMAKE_CXX_COMPILER_LINKER "")
set(CMAKE_CXX_COMPILER_LINKER_ID "")
set(CMAKE_CXX_COMPILER_LINKER_VERSION )
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
set(CMAKE_MT "")
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED )
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 "")
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 "")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
@@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Linux-6.12.87")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "6.12.87")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Generic-4.4.99")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "4.4.99")
set(CMAKE_SYSTEM_PROCESSOR "arm")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)
@@ -1,934 +0,0 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#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_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
@@ -1,949 +0,0 @@
/* 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;
}
File diff suppressed because it is too large Load Diff
@@ -1,154 +0,0 @@
{
"InstallScripts" :
[
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/hash/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/mem_blocks/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/midi2/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/os/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/utils/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/uuid/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/stm32g4x/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/shields/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/canbus/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/debug/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/fs/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/gnss/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/instrumentation/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/ipc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/kvss/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/logging/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mem_mgmt/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mgmt/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/policy/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pmci/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lang_support_r/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/random/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/sd/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/stats/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/flash_map/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/testsuite/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/tracing/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/firmware/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/interconn/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/pcie/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/buf/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/stm32/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb_c/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/acpica/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-dsp/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-nn/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis_6/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/dhara/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/fatfs/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/adi/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_afbr/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ambiq/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/wifi/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_bouffalolab/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_espressif/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ethos_u/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_gigadevice/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_infineon/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_intel/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/microchip/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nordic/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nuvoton/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/hal_nxp/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openisa/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/quicklogic/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/hal_realtek/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/zephyr/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/drivers/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_rpi_pico/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_sifli/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_silabs/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_st/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/stm32g4xx/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_tdk/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_telink/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/source/ti/devices/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/mspm0/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wch/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wurthelektronik/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/xtensa/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hostap/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/liblc3/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmctp/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmetal/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libsbc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/littlefs/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lora-basics-modem/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/loramac-node/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lvgl/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mbedtls/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mipi-sys-t/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nanopb/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_wifi/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/open-amp/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openthread/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/percepio/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/picolibc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/segger/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-a/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-m/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/uoscore-uedhoc/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/zcbor/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_hw_models/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/sys/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/usage/cmake_install.cmake",
"/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/cmake_install.cmake"
],
"Parallel" : false
}
@@ -1,360 +0,0 @@
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/boards.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/shields.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/snippets.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/devicetree_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/menuconfig.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/guiconfig.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/hardenconfig.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/traceconfig.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/config-twister.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/asm.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/compiler.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/compiler-cpp.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/linker.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/bintools.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/code_data_relocation_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/runners_yaml_props_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/pristine.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/zephyr_property_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/version_h.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/app_version_h.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/syscall_list_h_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/driver_validation_h_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/kobj_types_h_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/device_api_ld_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/offsets.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/offsets_h.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/linker_zephyr_prebuilt_script_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr_pre0.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/linker_zephyr_final_script_target.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr_final.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/initlevels.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/run.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/build_info_yaml_saved.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/arch__common.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/isr_tables.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/hash/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/hash/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/CMakeFiles/heap_constants.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/CMakeFiles/heap_constants_h.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/mem_blocks/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/mem_blocks/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/midi2/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/midi2/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/os/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/os/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/utils/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/utils/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/uuid/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/uuid/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/stm32g4x/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/soc/soc/stm32g431xx/stm32g4x/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/shields/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/boards/shields/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/canbus/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/canbus/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/debug/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/debug/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/fs/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/fs/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/gnss/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/gnss/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/instrumentation/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/instrumentation/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/ipc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/ipc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/kvss/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/kvss/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/logging/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/logging/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mem_mgmt/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mem_mgmt/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mgmt/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/mgmt/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/policy/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pm/policy/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pmci/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/pmci/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lang_support_r/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lang_support_r/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/random/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/random/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/sd/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/sd/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/stats/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/stats/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/flash_map/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/storage/flash_map/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/testsuite/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/testsuite/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/tracing/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/tracing/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/usb/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/firmware/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/firmware/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/interconn/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/misc/interconn/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/pcie/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/pcie/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/buf/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/buf/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/stm32/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb/common/stm32/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb_c/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/usb_c/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/drivers__flash.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/acpica/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/acpica/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-dsp/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-dsp/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-nn/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-nn/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis_6/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis_6/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/dhara/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/dhara/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/fatfs/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/fatfs/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/adi/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/adi/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_afbr/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_afbr/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ambiq/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ambiq/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/wifi/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/wifi/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_bouffalolab/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_bouffalolab/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_espressif/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_espressif/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ethos_u/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ethos_u/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_gigadevice/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_gigadevice/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_infineon/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_infineon/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_intel/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_intel/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/microchip/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/microchip/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nordic/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nordic/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nuvoton/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nuvoton/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/hal_nxp/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/hal_nxp/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openisa/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openisa/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/quicklogic/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/quicklogic/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/hal_realtek/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/hal_realtek/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/zephyr/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/zephyr/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/drivers/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/drivers/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_rpi_pico/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_rpi_pico/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_sifli/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_sifli/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_silabs/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_silabs/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_st/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_st/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/stm32g4xx/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/stm32g4xx/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_tdk/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_tdk/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_telink/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_telink/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/source/ti/devices/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/source/ti/devices/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/devices/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/boards/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/mspm0/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/mspm0/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wch/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wch/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wurthelektronik/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wurthelektronik/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/xtensa/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/xtensa/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hostap/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hostap/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/liblc3/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/liblc3/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmctp/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmctp/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmetal/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmetal/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libsbc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libsbc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/littlefs/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/littlefs/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lora-basics-modem/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lora-basics-modem/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/loramac-node/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/loramac-node/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lvgl/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lvgl/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mbedtls/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mbedtls/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/CMakeFiles/mcuboot_util.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mipi-sys-t/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mipi-sys-t/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nanopb/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nanopb/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_wifi/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_wifi/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/open-amp/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/open-amp/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openthread/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openthread/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/percepio/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/percepio/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/picolibc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/picolibc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/segger/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/segger/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-a/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-a/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-m/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/trusted-firmware-m/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/uoscore-uedhoc/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/uoscore-uedhoc/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/zcbor/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/zcbor/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_hw_models/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_hw_models/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/sys/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/sys/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/flash.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/debug.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/debugserver.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/attach.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/rtt.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/flash/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/usage/CMakeFiles/usage.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/usage/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/usage/CMakeFiles/rebuild_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/ram_report.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/ram_plot.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/rom_report.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/rom_plot.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/footprint.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/dashboard.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/edit_cache.dir
/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake/reports/CMakeFiles/rebuild_cache.dir
@@ -1,8 +0,0 @@
# Additional clean files
cmake_minimum_required(VERSION 3.16)
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
file(REMOVE_RECURSE
"zephyr/include/generated/zephyr/syscalls"
)
endif()
@@ -1,454 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 4.1
# This file contains all the rules used to get the outputs files
# built from the input files.
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: MCUboot
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for compiling C files.
rule C_COMPILER__app_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__app_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for compiling C files.
rule C_COMPILER__zephyr_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__zephyr_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__offsets_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__zephyr_pre0_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C executable.
rule C_EXECUTABLE_LINKER__zephyr_pre0_
command = $PRE_LINK && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/14.3.0/thumb/v7e-m/nofp/space" -lc -lgcc && $POST_BUILD
description = Linking C executable $TARGET_FILE; Logical command for additional byproducts on target: zephyr_pre0
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__zephyr_final_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C executable.
rule C_EXECUTABLE_LINKER__zephyr_final_
command = $PRE_LINK && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES -L"/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/14.3.0/thumb/v7e-m/nofp/space" -lc -lgcc && $POST_BUILD
description = Linking C executable $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__arch__common_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__arch__common_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__isr_tables_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__isr_tables_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER__arch__arm__core_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building ASM object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__arch__arm__core_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__arch__arm__core_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER__arch__arm__core__cortex_m_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building ASM object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__arch__arm__core__cortex_m_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__arch__arm__core__cortex_m_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__arch__arm__core__mpu_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__arch__arm__core__mpu_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__lib__libc__picolibc_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__lib__libc__picolibc_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__lib__libc__common_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__lib__libc__common_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__heap_constants_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER__subsys__portability__posix__c_lib_ext_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__subsys__portability__posix__c_lib_ext_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__interrupt_controller_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__drivers__interrupt_controller_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__clock_control_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__drivers__clock_control_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__flash_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__drivers__flash_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__drivers__timer_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__drivers__timer_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__.2e.2e__modules__hal__stm32__stm32cube_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__.2e.2e__modules__hal__stm32__stm32cube_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__mcuboot_util_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__mcuboot_util_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER__kernel_unscanned_
depfile = $DEP_FILE
deps = gcc
command = ${LAUNCHER}${CODE_CHECK}/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER__kernel_
command = $PRE_LINK && /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -E rm -f $TARGET_FILE && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ar qc $TARGET_FILE $LINK_FLAGS $in && /nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-ranlib $TARGET_FILE && $POST_BUILD
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake --regenerate-during-build -S/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr -B/home/jeremy/utat-dev/zephyrproject/build/mcuboot
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning additional files.
rule CLEAN_ADDITIONAL
command = /nix/store/2xyd9pnqzg74a9xlayi54d2bcy1844n5-cmake-4.1.2/bin/cmake -DCONFIG=$CONFIG -P CMakeFiles/clean_additional.cmake
description = Cleaning additional files...
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = /nix/store/fx65xy1jiapn94i0gkq62k4vbvvbqyx1-ninja-1.13.1/bin/ninja $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = /nix/store/fx65xy1jiapn94i0gkq62k4vbvvbqyx1-ninja-1.13.1/bin/ninja -t targets
description = All primary targets available:
Binary file not shown.
File diff suppressed because one or more lines are too long
+5 -64
View File
@@ -1,65 +1,6 @@
cmake:
application:
configuration-dir: '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr'
source-dir: '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr'
board:
name: 'nucleo_g431rb'
path:
- '/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb'
qualifiers: 'stm32g431xx'
revision: ''
devicetree:
bindings-dirs:
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/bindings'
files:
- '/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/nucleo_g431rb.dts'
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/app.overlay'
include-dirs:
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq/dts'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/atmel/include'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab/include'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/bouffalolab/include/zephyr'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/gigadevice/include'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip/include'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/microchip/dts'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton/dts'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/nxp/dts'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/dts'
- '/home/jeremy/utat-dev/zephyrproject/modules/hal/ti/dts'
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/include'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/common'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/vendor'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/rx'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/x86'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/xtensa'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/sparc'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/riscv'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/posix'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm64'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arm'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts/arc'
- '/home/jeremy/utat-dev/zephyrproject/zephyr/dts'
user-files:
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/app.overlay'
kconfig:
extra-user-files:
- 'mcuboot-nucleo-g431rb.conf'
files:
- '/home/jeremy/utat-dev/zephyrproject/zephyr/boards/st/nucleo_g431rb/nucleo_g431rb_defconfig'
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/prj.conf'
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/mcuboot-nucleo-g431rb.conf'
user-files:
- '/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/prj.conf'
toolchain:
name: 'zephyr'
path: '/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1'
zephyr:
version: '4.4.99'
zephyr-base: '/home/jeremy/utat-dev/zephyrproject/zephyr'
version: '0.1.0'
west:
command: '/nix/store/1hhzbgg5hqhpw2c3gk98myzr6fjlfcja-python3.13-west-1.5.0/bin/west build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr -d build/mcuboot -- -DEXTRA_CONF_FILE=mcuboot-nucleo-g431rb.conf'
topdir: '/home/jeremy/utat-dev/zephyrproject'
version: '1.5.0'
command: /nix/store/1hhzbgg5hqhpw2c3gk98myzr6fjlfcja-python3.13-west-1.5.0/bin/west
build -p always -b nucleo_g431rb bootloader/mcuboot/boot/zephyr -d build/mcuboot
-- -DEXTRA_CONF_FILE=mcuboot-nucleo-g431rb.conf
topdir: /home/jeremy/utat-dev/zephyrproject
version: 1.5.0
@@ -1,67 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
if(CMAKE_INSTALL_COMPONENT)
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
unset(CMAKE_INST_COMP_HASH)
endif()
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,914 +0,0 @@
[
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/main.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/main.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/main.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/main.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/io.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/io.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/io.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/io.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/flash_map_extended.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_map_extended.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_map_extended.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/flash_map_extended.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/os.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/os.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/os.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/os.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/keys.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/keys.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/keys.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/keys.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o CMakeFiles/app.dir/watchdog.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/watchdog.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/watchdog.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/CMakeFiles/app.dir/watchdog.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/validate_libc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/validate_libc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/libc/validate_libc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/heap/heap.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/heap/heap.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/heap/heap.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/boot_banner.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/boot_banner.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/boot_banner.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/boot_banner.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/cbprintf_packaged.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/cbprintf_packaged.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_packaged.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/clock.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/clock.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/clock.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/printk.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/printk.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_nano.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/cbprintf_nano.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/cbprintf_nano.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_nano.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/assert.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/os/assert.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/os/assert.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/dec.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/dec.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/dec.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/hex.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/hex.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/hex.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/rb.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/rb.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/rb.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/set.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/set.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/set.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/timeutil.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/timeutil.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/timeutil.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/bitarray.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/bitarray.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitarray.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/bitmask.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/bitmask.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/bitmask.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/getopt/getopt.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/getopt/getopt.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/getopt/getopt_common.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/getopt/getopt_common.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/getopt/getopt_common.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/ring_buffer.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/ring_buffer.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/ring_buffer.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/last_section_id.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/utils/last_section_id.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/lib/utils/last_section_id.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj -c /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/misc/generated/configs.c",
"file": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/misc/generated/configs.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/stm32cube_hal.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/stm32cube_hal.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32cube_hal.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/soc_config.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/soc_config.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/soc_config.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/stm32_backup_domain.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/stm32_backup_domain.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/common/stm32_backup_domain.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g4x/soc.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/soc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/soc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/soc/st/stm32/stm32g4x/soc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_minimal.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/logging/log_minimal.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/logging/log_minimal.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/logging/log_minimal.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/mem_mgmt/mem_attr.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/mem_mgmt/mem_attr.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/mem_mgmt/mem_attr.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map_default.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map_default.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map_default.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map_default.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map_layout.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map_layout.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/storage/flash_map/flash_map_layout.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/storage/flash_map/flash_map_layout.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/tracing/tracing_none.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/tracing/tracing_none.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/subsys/tracing/tracing_none.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/drivers/flash/flash_util.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_util.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_util.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/drivers/flash/flash_util.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/kernel/sys/sem.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sys/sem.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sys/sem.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/kernel/sys/sem.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/kernel/sys/thread_entry.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sys/thread_entry.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sys/thread_entry.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/kernel/sys/thread_entry.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_validate.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_validate.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_validate.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_validate.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_find_key.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_find_key.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_find_key.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_find_key.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_hash.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_hash.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_hash.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_hash.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_security_cnt.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_security_cnt.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_security_cnt.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_img_security_cnt.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/tlv.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/tlv.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/tlv.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/tlv.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/encrypted.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/encrypted.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/encrypted.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/encrypted.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_rsa.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_rsa.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_rsa.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_rsa.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ecdsa.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ecdsa.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ecdsa.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ecdsa.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ed25519.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ed25519.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ed25519.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/image_ed25519.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_misc.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_misc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_misc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_misc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_area.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_area.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_area.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_area.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_loader.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_loader.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_loader.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_loader.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/fault_injection_hardening.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/fault_injection_hardening.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/fault_injection_hardening.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/fault_injection_hardening.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/loader.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/loader.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/loader.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/loader.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_misc.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_misc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_misc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_misc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/caps.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/caps.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/caps.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/caps.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_move.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_move.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_move.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/swap_move.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/sha256.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/sha256.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/sha256.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/sha256.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/utils.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/utils.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/utils.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/source/utils.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/cleanup/arm_cortex_m.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/cleanup/arm_cortex_m.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/cleanup/arm_cortex_m.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/cleanup/arm_cortex_m.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/kernel/banner.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/kernel/banner.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/kernel/banner.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/kernel/banner.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_check.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_check.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_check.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/flash_check.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/offsets/offsets.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/offsets/offsets.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/misc/empty_file.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/misc/empty_file.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr_pre0.dir/misc/empty_file.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/misc/empty_file.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/misc/empty_file.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj -c /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/isr_tables.c",
"file": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/isr_tables.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/sw_isr_common.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/sw_isr_common.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/arch__common.dir/sw_isr_common.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/init.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/init.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/arch__common.dir/init.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/xip.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/xip.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/arch__common.dir/xip.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/isr_tables.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/isr_tables.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/common/CMakeFiles/isr_tables.dir/isr_tables.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/fatal.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/fatal.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/fatal.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/nmi.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/nmi.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/nmi_on_reset.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/nmi_on_reset.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/nmi_on_reset.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/tls.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/tls.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/CMakeFiles/arch__arm__core.dir/tls.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fault.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fault.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fault_s.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fault_s.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fault_s.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fpu.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/fpu.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/fpu.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/reset.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/reset.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/reset.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/scb.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/scb.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/scb.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/vector_table.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/vector_table.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/vector_table.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/svc.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/svc.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/svc.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/svc.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_manage.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_manage.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_manage.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/prep_c.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/prep_c.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/prep_c.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/thread.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/thread.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/cpu_idle.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/cpu_idle.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/cpu_idle.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/exc_exit.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/exc_exit.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/exc_exit.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/thread_abort.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/thread_abort.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/thread_abort.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/swap_helper.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/swap_helper.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/swap_helper.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_init.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/irq_init.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/irq_init.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/isr_wrapper.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/isr_wrapper.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/isr_wrapper.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -xassembler-with-cpp -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -D_ASMLANGUAGE -Wno-unused-but-set-variable -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -o zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/cortex_m/__aeabi_read_tp.S",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.dir/__aeabi_read_tp.S.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/cortex_m -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_core_mpu.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_core_mpu.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_core_mpu.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/cortex_m -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_mpu.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_mpu.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/cortex_m -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_mpu_regions.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/core/mpu/arm_mpu_regions.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu_regions.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/assert.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/assert.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/assert.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/cbprintf.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/cbprintf.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/chk_fail.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/chk_fail.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/errno_wrap.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/exit.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/exit.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/exit.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/locks.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/locks.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/locks.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/stdio.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/stdio.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/stdio.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/stdlib/abort.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abort.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/time/time.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/time/time.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/time/time.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/stdlib/malloc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/malloc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-builtin-malloc -o zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/errno/errno.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/errno/errno.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/source/errno/errno.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/errno/errno.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -fno-lto -o zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/lib/heap/heap_constants.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/lib/heap/heap_constants.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/lib/heap/CMakeFiles/heap_constants.dir/heap_constants.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/fnmatch.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/fnmatch.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/fnmatch.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/fnmatch.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/getentropy.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getentropy.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getentropy.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/getentropy.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/getopt_shim.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt_shim.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt_shim.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/subsys/portability/posix/c_lib_ext/CMakeFiles/subsys__portability__posix__c_lib_ext.dir/getopt_shim.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/interrupt_controller/intc_exti_stm32.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/interrupt_controller/intc_exti_stm32.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_exti_stm32.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/common/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/interrupt_controller/intc_gpio_stm32.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/interrupt_controller/intc_gpio_stm32.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/interrupt_controller/CMakeFiles/drivers__interrupt_controller.dir/intc_gpio_stm32.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/clock_control/clock_stm32_ll_common.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/clock_control/clock_stm32_ll_common.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32_ll_common.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g4.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/clock_control/clock_stm32g4.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/clock_control/clock_stm32g4.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_stm32g4.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_page_layout.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_page_layout.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_page_layout.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_page_layout.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_stm32.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_stm32.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_stm32.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_stm32.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_stm32g4x.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_stm32g4x.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/flash/flash_stm32g4x.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/flash/CMakeFiles/drivers__flash.dir/flash_stm32g4x.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/timer/sys_clock_init.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/timer/sys_clock_init.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/sys_clock_init.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/drivers/timer/cortex_m_systick.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/drivers/timer/cortex_m_systick.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/drivers/timer/CMakeFiles/drivers__timer.dir/cortex_m_systick.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/soc/system_stm32g4xx.c.obj -c /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc/system_stm32g4xx.c",
"file": "/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc/system_stm32g4xx.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/soc/system_stm32g4xx.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal.c.obj -c /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal.c",
"file": "/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal_rcc.c.obj -c /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal_rcc.c",
"file": "/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal_rcc.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal_rcc.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal_rcc_ex.c.obj -c /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal_rcc_ex.c",
"file": "/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_hal_rcc_ex.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_hal_rcc_ex.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_ll_utils.c.obj -c /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_ll_utils.c",
"file": "/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/src/stm32g4xx_ll_utils.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/CMakeFiles/..__modules__hal__stm32__stm32cube.dir/stm32g4xx/drivers/src/stm32g4xx_ll_utils.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o modules/mcuboot/CMakeFiles/mcuboot_util.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_public.c.obj -c /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_public.c",
"file": "/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_public.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/CMakeFiles/mcuboot_util.dir/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/src/bootutil_public.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/main_weak.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/main_weak.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/main_weak.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/busy_wait.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/busy_wait.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/busy_wait.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/device.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/device.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/device.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/fatal.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/fatal.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/fatal.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/init.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/init.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/init.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/kheap.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/kheap.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/kheap.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mem_slab.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mem_slab.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/mem_slab.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/float.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/float.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/float.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/version.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/version.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/version.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/idle.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/idle.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/idle.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mailbox.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mailbox.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/mailbox.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/msg_q.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/msg_q.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/msg_q.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mutex.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mutex.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/mutex.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/queue.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/queue.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/queue.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sem.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sem.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/sem.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/stack.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/stack.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/stack.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/system_work_q.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/system_work_q.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/system_work_q.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/work.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/work.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/work.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/condvar.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/condvar.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/condvar.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/thread.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/thread.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/thread.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sched.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sched.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/sched.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/sleep.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sleep.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/sleep.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/sleep.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/pipe.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/pipe.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/pipe.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/scheduler.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/scheduler.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/scheduler.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/scheduler.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timeslicing.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timeslicing.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/timeslicing.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timeout.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timeout.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/timeout.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timer.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/timer.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/timer.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mempool.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/mempool.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/mempool.c.obj"
},
{
"directory": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot",
"command": "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc -DCORE_CM4 -DHSE_VALUE=24000000 -DKERNEL -DK_HEAP_MEM_POOL_SIZE=0 -DMCUBOOT_SLOT0_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT0_EXPECTED_WRITE_SIZE=8 -DMCUBOOT_SLOT1_EXPECTED_ERASE_SIZE=2048 -DMCUBOOT_SLOT1_EXPECTED_WRITE_SIZE=8 -DMIN_SECTOR_COUNT=24 -DPICOLIBC_MINIMAL_PRINTF_SCANF -DSTM32G431xx -DUSE_FULL_LL_DRIVER -DUSE_HAL_DRIVER -D_POSIX_THREAD_SAFE_FUNCTIONS=200809L -D__LINUX_ERRNO_EXTENSIONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -I/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/arch/arm/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr -I/home/jeremy/utat-dev/zephyrproject/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32 -I/home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/picolibc/include -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/common/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/drivers -I/home/jeremy/utat-dev/zephyrproject/zephyr/soc/st/stm32/stm32g4x/. -I/home/jeremy/utat-dev/zephyrproject/zephyr/subsys/portability/posix/c_lib_ext/getopt -I/home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6/. -I/home/jeremy/utat-dev/zephyrproject/modules/hal/cmsis_6/CMSIS/Core/Include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/soc -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx/drivers/include -I/home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/common_ll/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/ext/tinycrypt/lib/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/.. -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../zephyr/include -I/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr/../../../ext/tinycrypt/lib/include -isystem /home/jeremy/utat-dev/zephyrproject/zephyr/lib/libc/common/include -fno-strict-aliasing -Os -imacros /home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h -fno-printf-return-value -fno-common -g -gdwarf-4 -fdiagnostics-color=always -mcpu=cortex-m4 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/arm-zephyr-eabi -imacros /home/jeremy/utat-dev/zephyrproject/zephyr/include/zephyr/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=implicit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/zephyr=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/jeremy/utat-dev/zephyrproject=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -std=c17 -o zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj -c /home/jeremy/utat-dev/zephyrproject/zephyr/kernel/dynamic_disabled.c",
"file": "/home/jeremy/utat-dev/zephyrproject/zephyr/kernel/dynamic_disabled.c",
"output": "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/zephyr/kernel/CMakeFiles/kernel.dir/dynamic_disabled.c.obj"
}
]
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/acpica
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/acpica/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/adi
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/adi/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/atmel/asf
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/atmel/asf/common
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/atmel/asf/common/components
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/wifi/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/atmel/asf/common/components/wifi
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/common/components/wifi/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/atmel
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/asf/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/atmel/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis-dsp
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-dsp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis-nn
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis-nn/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/cmsis_6
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/cmsis_6/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/dhara
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/dhara/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/fatfs
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/fatfs/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_afbr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_afbr/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ambiq
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ambiq/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_bouffalolab
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_bouffalolab/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/espressif/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_espressif/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_ethos_u
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_ethos_u/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_gigadevice
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_gigadevice/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_infineon
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_infineon/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/intel/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_intel/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_nordic
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nordic/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_nxp
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/hal_nxp/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/nxp/zephyr/src
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_nxp/hal_nxp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_realtek
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/hal_realtek/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/realtek
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_realtek/hal_realtek/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,52 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/renesas
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/zephyr/cmake_install.cmake")
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/drivers/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/renesas/drivers
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/drivers/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/renesas/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_renesas/zephyr/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_rpi_pico
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_rpi_pico/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_sifli
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_sifli/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_silabs
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_silabs/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/st
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_st/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/stm32g4xx/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/stm32/stm32cube/stm32g4xx
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_stm32/stm32cube/stm32g4xx/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/tdk
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_tdk/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/telink
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_telink/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hal_wch
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wch/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/wurthelektronik
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hal_wurthelektronik/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/hostap
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/hostap/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/liblc3
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/liblc3/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/lib/libmctp/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmctp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/libmetal
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libmetal/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/libsbc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/libsbc/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/littlefs
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/littlefs/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/lora-basics-modem
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lora-basics-modem/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/loramac-node
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/loramac-node/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/lvgl
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/lvgl/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/mbedtls
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mbedtls/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/bootloader/mcuboot/boot/bootutil/zephyr
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mcuboot/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/microchip
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/microchip/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/debug/mipi-sys-t
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/mipi-sys-t/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/nanopb
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nanopb/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/bsim_hw_models/nrf_hw_models
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_hw_models/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/nrf_wifi
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nrf_wifi/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/nuvoton
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/nuvoton/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/lib/open-amp
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/open-amp/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/openisa
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openisa/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/openthread
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/openthread/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/percepio
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/percepio/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/lib/picolibc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/picolibc/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/quicklogic
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/quicklogic/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/zephyr/modules/segger
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/segger/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,53 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/cmake_install.cmake")
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/cmake_install.cmake")
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/mspm0/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/mspm0
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/mspm0/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,51 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/simplelink
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/source/ti/devices/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/simplelink/source/ti/devices
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink/source/ti/devices/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,52 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/simplelink_lpf3
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/devices/cmake_install.cmake")
include("/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/boards/cmake_install.cmake")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/boards
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/boards/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()
@@ -1,45 +0,0 @@
# Install script for directory: /home/jeremy/utat-dev/zephyrproject/modules/hal/ti/simplelink_lpf3/source/ti/devices
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set path to fallback-tool for dependency-resolution.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "/nix/store/jc8rrlxa357m23f36nknc61ns5ajm114-zephyr-sdk-1.0.1/gnu/arm-zephyr-eabi/bin/arm-zephyr-eabi-objdump")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/home/jeremy/utat-dev/zephyrproject/build/mcuboot/modules/ti/simplelink_lpf3/source/ti/devices/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()

Some files were not shown because too many files have changed in this diff Show More