diff --git a/.gitignore b/.gitignore index d94e61f..d6411f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ build/ managed_components/ +build_slave/ +CMakeFiles/ +esp-idf/ +gdbinit/ diff --git a/CMakeLists.txt b/CMakeLists.txt index e60b2ec..835fafd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,20 +2,22 @@ # in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.16) -# "Trim" the build. Include the minimal set of components, main and anything it depends on. -set(COMPONENTS main) -include($ENV{IDF_PATH}/tools/cmake/project.cmake) - -if(${IDF_TARGET} STREQUAL "esp32p4") +if($ENV{IDF_TARGET} STREQUAL "esp32p4") + include($ENV{IDF_PATH}/tools/cmake/project.cmake) + # "Trim" the build. Include the minimal set of components, main and anything it depends on. + set(COMPONENTS main) set(EXTRA_COMPONENT_DIRS /home/marc/esp-dev-kits/examples/esp32-p4-function-ev-board/examples/common_components $ENV{IDF_PATH}/examples/protocols/linux_stubs/esp_stubs ) + project(rgb_lcd) + add_link_options("-Wl,--disable-non-contiguous-regions") else() # PROJECT_PLATFORM_LINUX # PROJECT_PLATFORM_ESP32 add_compile_definitions(PROJECT_PLATFORM_LINUX) + set(EXCLUDE_COMPONENTS main driver bh1750 espressif__bh1750 wifi_logger) set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/protocols/linux_stubs/esp_stubs @@ -23,6 +25,27 @@ else() "/home/marc/esp-protocols/common_components/linux_compat" "/home/marc/esp-protocols/components/mdns/tests/host_test/components" ) + project(rgb_lcd) + + add_executable(domotic_display + components/domotic_display/ihm.c + # ajoute d’autres fichiers si nécessaire + ) + + + # -- FreeRTOS config + add_library(freertos_config INTERFACE) + target_include_directories(freertos_config INTERFACE + ${CMAKE_CURRENT_SOURCE_DIR}/FreeRTOSConfig + ) + + add_subdirectory(FreeRTOS/FreeRTOS/Source) + add_subdirectory(components/meteofrance) + add_subdirectory(components/stateManagement) + add_subdirectory(managed_components/lvgl__lvgl) + target_include_directories(domotic_display PRIVATE components/domotic_display/include) + # --- Liens nécessaires --- + target_link_libraries(domotic_display PRIVATE freertos_kernel lvgl m pthread meteofrance) + endif() -project(rgb_lcd) \ No newline at end of file diff --git a/FreeRTOSConfig/FreeRTOSConfig.h b/FreeRTOSConfig/FreeRTOSConfig.h new file mode 100644 index 0000000..cf72043 --- /dev/null +++ b/FreeRTOSConfig/FreeRTOSConfig.h @@ -0,0 +1,15 @@ +#ifndef FREERTOS_CONFIG_H +#define FREERTOS_CONFIG_H + +#define configUSE_PREEMPTION 1 +#define configUSE_IDLE_HOOK 0 +#define configUSE_TICK_HOOK 0 +#define configCPU_CLOCK_HZ ( ( unsigned long ) 80000000 ) +#define configTICK_RATE_HZ ( ( TickType_t ) 1000 ) +#define configMAX_PRIORITIES 5 +#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 130 ) +#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 64 * 1024 ) ) +#define configMAX_TASK_NAME_LEN 10 +#define configUSE_16_BIT_TICKS 0 + +#endif /* FREERTOS_CONFIG_H */ \ No newline at end of file diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..73caf3d --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,8647 @@ +[ +{ + "directory": "/home/marc/rgb_lcd", + "command": "/usr/bin/cc -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp/v5.5.1/esp-idf/components/cmock/CMock/src -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp_app_format/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_ana_cmpr/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_i2c/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_jpeg/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_ledc/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_mcpwm/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_parlio/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_pcnt/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_ppa/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_rmt/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_sdio/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_sdm/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_sdmmc/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_sdspi/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_tsens/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_https_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -I/home/marc/esp/v5.5.1/esp-idf/components/pthread/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/examples/protocols/linux_stubs/esp_stubs/include -I/home/marc/esp-protocols/components/mdns/tests/host_test/components/esp_netif_linux/include -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/rgb_lcd/components/image_downloader/include -I/home/marc/rgb_lcd/components/protocol_examples_common/include -DLINUX_TARGET --coverage -o CMakeFiles/rgb_lcd.elf.dir/project_elf_src_linux.c.o -c /home/marc/rgb_lcd/project_elf_src_linux.c", + "file": "/home/marc/rgb_lcd/project_elf_src_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd", + "command": "/usr/bin/cc -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/components/domotic_display/include -o CMakeFiles/domotic_display.dir/components/domotic_display/ihm.c.o -c /home/marc/rgb_lcd/components/domotic_display/ihm.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/ihm.c" +}, +{ + "directory": "/home/marc/rgb_lcd", + "command": "/usr/bin/cc -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/components/domotic_display/include -o CMakeFiles/domotic_display.dir/components/domotic_display/lv_theme_domotic.c.o -c /home/marc/rgb_lcd/components/domotic_display/lv_theme_domotic.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/lv_theme_domotic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/linux", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_linux.dir/fls.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/linux/fls.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/linux/fls.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spi_flash", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_spi_flash.dir/linux/spi_flash_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/spi_flash_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/spi_flash_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spi_flash", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_spi_flash.dir/linux/cache_utils.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/cache_utils.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/cache_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spi_flash", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include/spi_flash -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_spi_flash.dir/linux/flash_mmap.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/flash_mmap.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/linux/flash_mmap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_system", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_system.dir/esp_system.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_system/esp_system.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_system", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_system.dir/esp_err.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_system/esp_err.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_system", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_system.dir/port/soc/linux/reset_reason.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/soc/linux/reset_reason.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/soc/linux/reset_reason.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_system", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_system.dir/port/soc/linux/system_internal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/soc/linux/system_internal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/soc/linux/system_internal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_system", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_system.dir/port/esp_system_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_system/port/esp_system_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_common", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DLINUX_TARGET --coverage -o CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_common/src/esp_err_to_name.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_sys.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_print.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/patches/esp_rom_print.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/linux/esp_rom_sys.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_sys.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_sys.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/linux/esp_rom_crc.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_crc.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_crc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/linux/esp_rom_md5.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_md5.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_md5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_rom", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wimplicit-fallthrough=0 -Wno-shift-count-overflow -o CMakeFiles/__idf_esp_rom.dir/linux/esp_rom_efuse.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_efuse.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/esp_rom_efuse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/hal", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_hal.dir/hal_utils.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/hal/hal_utils.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/hal/hal_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/hal", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_hal.dir/efuse_hal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/hal/efuse_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/hal", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_hal.dir/linux/efuse_hal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/hal/linux/efuse_hal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/efuse_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/hal", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_hal.dir/color_hal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/hal/color_hal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/hal/color_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/linux/log_timestamp.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/log_timestamp.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/log_timestamp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_timestamp_common.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_timestamp_common.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/linux/log_lock.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/log_lock.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/log_lock.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/buffer/log_buffers.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/buffer/log_buffers.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/linux/util.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/util.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/linux/util.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/util.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/util.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/util.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_format_text.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_format_text.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_print.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_print.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_print.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/os/log_write.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/os/log_write.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_level/log_level.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/log_level.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/tag_log_level.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/tag_log_level.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/linked_list/log_linked_list.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/linked_list/log_linked_list.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/log", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include/esp_private -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_log.dir/src/log_level/tag_log_level/cache/log_binary_heap.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/log/src/log_level/tag_log_level/cache/log_binary_heap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/heap", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_heap.dir/heap_caps_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/heap/heap_caps_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/heap/heap_caps_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_hw_support", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_hw_support.dir/port/linux/esp_random.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/port/linux/esp_random.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/port/linux/esp_random.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_hw_support", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_hw_support.dir/port/linux/chip_info.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/port/linux/chip_info.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/port/linux/chip_info.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/freertos", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_freertos.dir/freertos_linux.c.o -c /home/marc/esp-protocols/common_components/linux_compat/freertos/freertos_linux.c", + "file": "/home/marc/esp-protocols/common_components/linux_compat/freertos/freertos_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/freertos", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -std=gnu++17 -o CMakeFiles/__idf_freertos.dir/osal/queue.cpp.o -c /home/marc/esp-protocols/common_components/linux_compat/freertos/osal/queue.cpp", + "file": "/home/marc/esp-protocols/common_components/linux_compat/freertos/osal/queue.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/freertos", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -std=gnu++17 -o CMakeFiles/__idf_freertos.dir/osal/event_group.cpp.o -c /home/marc/esp-protocols/common_components/linux_compat/freertos/osal/event_group.cpp", + "file": "/home/marc/esp-protocols/common_components/linux_compat/freertos/osal/event_group.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/freertos", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -std=gnu++17 -o CMakeFiles/__idf_freertos.dir/osal/mutex.cpp.o -c /home/marc/esp-protocols/common_components/linux_compat/freertos/osal/mutex.cpp", + "file": "/home/marc/esp-protocols/common_components/linux_compat/freertos/osal/mutex.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/unity/src/unity.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src/unity.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src/unity.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/unity_compat.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/unity_compat.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/unity_compat.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/unity_runner.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/unity_runner.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/unity_runner.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/unity_utils_memory.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/unity_utils_memory.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/unity_utils_memory.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/unity_port_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/unity_port_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/unity_port_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/unity", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-unused-const-variable -o CMakeFiles/__idf_unity.dir/port/linux/unity_utils_memory_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/unity/port/linux/unity_utils_memory_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/unity/port/linux/unity_utils_memory_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/cmock", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -DUNITY_INCLUDE_CONFIG_H -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/cmock/CMock/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/include -I/home/marc/esp/v5.5.1/esp-idf/components/unity/unity/src -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/cmock/CMock/src/cmock.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/cmock/CMock/src/cmock.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/vfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_vfs.dir/vfs_eventfd_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/vfs/vfs_eventfd_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_timer", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_timer.dir/esp_timer_linux.c.o -c /home/marc/esp-protocols/common_components/linux_compat/esp_timer/esp_timer_linux.c", + "file": "/home/marc/esp-protocols/common_components/linux_compat/esp_timer/esp_timer_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_timer", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -std=gnu++17 -o CMakeFiles/__idf_esp_timer.dir/timer_task.cpp.o -c /home/marc/esp-protocols/common_components/linux_compat/esp_timer/timer_task.cpp", + "file": "/home/marc/esp-protocols/common_components/linux_compat/esp_timer/timer_task.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/commands.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/commands.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/commands.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/esp_console_common.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_common.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_common.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/esp_console_repl_internal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_repl_internal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/split_argv.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/split_argv.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/split_argv.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/linenoise/linenoise.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/linenoise/linenoise.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/esp_console_repl_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_repl_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/esp_console_repl_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_cmd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_date.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_date.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dbl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_dstr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_end.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_end.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_file.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_file.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_hashtable.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_int.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_int.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_lit.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_rex.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_str.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_str.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/arg_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/console", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/console -I/home/marc/esp/v5.5.1/esp-idf/components/console/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/vfs/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_uart/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_usb_serial_jtag/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_console.dir/argtable3/argtable3.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/console/argtable3/argtable3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_partition", + "command": "/usr/bin/cc -DBUILD_DIR=\\\"/home/marc/rgb_lcd\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/bootloader_support/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_partition.dir/partition.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_partition/partition.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/partition.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_partition", + "command": "/usr/bin/cc -DBUILD_DIR=\\\"/home/marc/rgb_lcd\\\" -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/bootloader_support/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_partition.dir/partition_linux.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_partition/partition_linux.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/partition_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/linux/esp_efuse_table.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_table.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_table.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/linux/esp_efuse_fields.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_fields.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_fields.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/linux/esp_efuse_utility.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_utility.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/esp_efuse_utility.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_api.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_fields.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_utility.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/src/efuse_controller/keys/with_key_purposes/esp_efuse_api_key.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/efuse", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/private_include -I/home/marc/esp/v5.5.1/esp-idf/components/efuse/linux/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_efuse.dir/src/esp_efuse_startup.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/efuse/src/esp_efuse_startup.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/esp_crt_bundle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -o CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.o -c /home/marc/rgb_lcd/x509_crt_bundle.S", + "file": "/home/marc/rgb_lcd/x509_crt_bundle.S" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/3rdparty/everest", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/everest.dir/library/everest.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/everest.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/3rdparty/everest", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/everest.dir/library/x25519.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/x25519.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/3rdparty/everest", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include/everest/kremlib -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/library/Hacl_Curve25519_joined.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/3rdparty/p256-m", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m_driver_entrypoints.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/3rdparty/p256-m", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/p256m.dir/p256-m/p256-m.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m/p256-m.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/debug.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/debug.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/debug.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/mps_reader.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_reader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/mps_trace.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/mps_trace.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_cache.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_cookie.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_debug_helpers_generated.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_msg.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_msg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_ticket.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls12_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls12_server.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls12_server.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_keys.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls13_server.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_server.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls13_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ssl_tls13_generic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/mbedtls_debug.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_platform_time.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedtls.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/net_sockets.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/pkcs7.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509_create.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_create.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509_crl.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509_crt.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509_csr.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509write.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509write_crt.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedx509.dir/x509write_csr.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/aes.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aes.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aes.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/aesni.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesni.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/aesce.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aesce.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/aria.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aria.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/aria.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/asn1parse.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/asn1write.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/asn1write.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/base64.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/base64.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/base64.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/bignum.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/bignum_core.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_core.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/bignum_mod.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/bignum_mod_raw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/block_cipher.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/block_cipher.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/camellia.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/camellia.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ccm.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ccm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/chacha20.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chacha20.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/chachapoly.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/cipher.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/cipher_wrap.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/constant_time.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/constant_time.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/cmac.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/cmac.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ctr_drbg.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/des.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/des.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/des.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/dhm.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/dhm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecdh.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdh.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecdsa.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecjpake.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecp.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecp_curves.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ecp_curves_new.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/entropy.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/entropy_poll.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/error.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/error.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/gcm.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/gcm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/hkdf.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hkdf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/hmac_drbg.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/lmots.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lmots.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/lms.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lms.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/lms.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/md.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/md5.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md5.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/md5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/nist_kw.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/oid.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/oid.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/oid.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/padlock.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/padlock.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pem.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pem.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pk.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pk_ecc.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_ecc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pk_wrap.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pkcs12.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pkcs5.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pkparse.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkparse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/pkwrite.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/platform.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/platform_util.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/platform_util.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/poly1305.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/poly1305.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_aead.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_cipher.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_driver_wrappers_no_static.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ecp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_ffdh.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_hash.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_mac.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_pake.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_rsa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_se.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_slot_management.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_crypto_storage.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_its_file.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_its_file.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/psa_util.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/psa_util.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/ripemd160.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/rsa.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/rsa_alt_helpers.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/sha1.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/sha256.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha256.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/sha512.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha512.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/sha3.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/sha3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/threading.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/threading.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/threading.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/timing.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/timing.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/timing.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/version.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/version_features.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library/version_features.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_mem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/esp_timing.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/rgb_lcd/esp-idf/mbedtls/mbedtls/library -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -Wall -Wextra -Wwrite-strings -Wmissing-prototypes -Wformat=2 -Wno-format-nonliteral -Wvla -Wlogical-op -Wshadow -Wformat-signedness -Wformat-overflow=2 -Wformat-truncation -Werror -Wmissing-declarations -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/mbedcrypto.dir/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/md/esp_md.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/http_parser", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_http_parser.dir/http_parser.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/http_parser/http_parser.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/http_parser/http_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp-tls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp-tls.dir/esp_tls.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp-tls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto/esp_tls_crypto.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp-tls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_error_capture.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_error_capture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp-tls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp-tls.dir/esp_tls_platform_port.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_platform_port.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_platform_port.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp-tls", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp_tls_mbedtls.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_app_format", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -D PROJECT_NAME=\\\"rgb_lcd\\\" -DPROJECT_VER=\\\"0.3\\\" -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_app_format/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_app_format/esp_app_desc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_driver_cam", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_driver_cam.dir/esp_cam_ctlr.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/esp_cam_ctlr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_driver_cam", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/interface -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_isp/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_driver_cam.dir/dvp_share_ctrl.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_driver_cam/dvp_share_ctrl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_event", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_event.dir/default_event_loop.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_event/default_event_loop.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_event", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_event.dir/esp_event.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_event/esp_event.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_event", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_event.dir/esp_event_private.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_event/esp_event_private.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_event/esp_event_private.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/tcp_transport", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_tcp_transport.dir/transport.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/tcp_transport", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ssl.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ssl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/tcp_transport", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_internal.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_internal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/tcp_transport", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_socks_proxy.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_socks_proxy.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/tcp_transport", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ws.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/transport_ws.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_client", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/esp_http_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/esp_http_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_client", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_auth.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_auth.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_client", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_header.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_header.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_client", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_utils.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/lib/http_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_main.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_main.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_parse.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_parse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_sess.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_sess.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_txrx.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_txrx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_uri.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_uri.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_ws.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/httpd_ws.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_http_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/port/esp32 -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/src/util/ctrl_sock.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_https_server", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_https_server/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_server/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_https_server/src/https_server.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_https_server/src/https_server.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_netif", + "command": "/usr/bin/cc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_handlers.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_handlers.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_netif", + "command": "/usr/bin/cc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_objects.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_objects.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_netif", + "command": "/usr/bin/cc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_defaults.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/esp_netif_defaults.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_netif", + "command": "/usr/bin/cc -DESP_NETIF_COMPONENT_BUILD -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/Partition.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/Partition.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/SPI_Flash.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/SPI_Flash.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Flash.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/WL_Flash.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/crc32.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/crc32.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/wear_levelling", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/wear_levelling.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/wear_levelling.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_rawflash.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_wl.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio/diskio_wl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/src/ff.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/src/ff.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src/ff.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/src/ffunicode.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src/ffunicode.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/fatfs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/diskio -I/home/marc/esp/v5.5.1/esp-idf/components/fatfs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/wear_levelling/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_fatfs.dir/port/linux/ffsystem.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/fatfs/port/linux/ffsystem.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/fatfs/port/linux/ffsystem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/json", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_json.dir/cJSON/cJSON.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/json", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON_Utils.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON/cJSON_Utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mqtt", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mqtt", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mqtt", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/mqtt", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/esp/v5.5.1/esp-idf/components/http_parser -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_api.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_page.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_storage.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_lookup.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_types.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_platform.cpp.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_platform.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/nvs_flash", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/include -I/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/private_include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -I/home/marc/esp/v5.5.1/esp-idf/components/spi_flash/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -DLINUX_TARGET --coverage -o CMakeFiles/__idf_nvs_flash.dir/src/nvs_bootloader.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/nvs_flash/src/nvs_bootloader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/protobuf-c", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/pthread", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/pthread/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_pthread.dir/port/linux/pthread.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/pthread/port/linux/pthread.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/pthread/port/linux/pthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_spiffs.dir/spiffs_api.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs_api.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs_api.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_check.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/spiffs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/include -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs -I/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_partition/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -Wno-format -o CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.o -c /home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_stubs", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp/v5.5.1/esp-idf/examples/protocols/linux_stubs/esp_stubs/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_stubs.dir/esp_stubs.c.o -c /home/marc/esp/v5.5.1/esp-idf/examples/protocols/linux_stubs/esp_stubs/esp_stubs.c", + "file": "/home/marc/esp/v5.5.1/esp-idf/examples/protocols/linux_stubs/esp_stubs/esp_stubs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/esp_netif_linux", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/esp-protocols/components/mdns/tests/host_test/components/esp_netif_linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_netif/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_esp_netif_linux.dir/esp_netif_linux.c.o -c /home/marc/esp-protocols/components/mdns/tests/host_test/components/esp_netif_linux/esp_netif_linux.c", + "file": "/home/marc/esp-protocols/components/mdns/tests/host_test/components/esp_netif_linux/esp_netif_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/stateManagement", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_stateManagement.dir/stateManagement.c.o -c /home/marc/rgb_lcd/components/stateManagement/stateManagement.c", + "file": "/home/marc/rgb_lcd/components/stateManagement/stateManagement.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/meteofrance", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_meteofrance.dir/meteofrance.c.o -c /home/marc/rgb_lcd/components/meteofrance/meteofrance.c", + "file": "/home/marc/rgb_lcd/components/meteofrance/meteofrance.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/eventsManager", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_eventsManager.dir/eventsManager.c.o -c /home/marc/rgb_lcd/components/eventsManager/eventsManager.c", + "file": "/home/marc/rgb_lcd/components/eventsManager/eventsManager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_group.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_group.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_group.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_class.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_class.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_class.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_draw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_draw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_draw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_event.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_event.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_event.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_id_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_id_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_id_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_pos.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_pos.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_pos.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_property.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_property.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_property.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_scroll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_scroll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_scroll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_style_gen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style_gen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style_gen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_obj_tree.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_tree.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_tree.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/core/lv_refr.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_refr.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_refr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/display/lv_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/display/lv_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/display/lv_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/convert/helium/lv_draw_buf_convert_helium.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/helium/lv_draw_buf_convert_helium.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/helium/lv_draw_buf_convert_helium.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/convert/lv_draw_buf_convert.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/lv_draw_buf_convert.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/lv_draw_buf_convert.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/convert/neon/lv_draw_buf_convert_neon.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/neon/lv_draw_buf_convert_neon.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/neon/lv_draw_buf_convert_neon.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/dma2d/lv_draw_dma2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/dma2d/lv_draw_dma2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/dma2d/lv_draw_dma2d_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_letter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_letter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_letter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_ram_g.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_ram_g.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_ram_g.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_draw_eve_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/eve/lv_eve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_eve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_eve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_3d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_3d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_3d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_mask.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_mask.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_mask.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_draw_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/lv_image_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_image_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_image_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nema_gfx/lv_nema_gfx_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_draw_buf_g2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_buf_g2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_buf_g2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_g2d_buf_map.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_buf_map.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_buf_map.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/g2d/lv_g2d_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_draw_buf_pxp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_pxp_cfg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_pxp_osa.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_osa.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_osa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/nxp/pxp/lv_pxp_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/opengles/lv_draw_opengles.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/opengles/lv_draw_opengles.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/opengles/lv_draw_opengles.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sdl/lv_draw_sdl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sdl/lv_draw_sdl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sdl/lv_draw_sdl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_box_shadow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_box_shadow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_box_shadow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_letter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_letter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_letter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_mask.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_mask_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_transform.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_transform.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_transform.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/sw/lv_draw_sw_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_buf_vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_math.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_math.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_math.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_pending.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_pending.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_pending.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_stroke.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/draw/vg_lite/lv_vg_lite_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/drm/lv_linux_drm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/drm/lv_linux_drm_common.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_common.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_common.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/drm/lv_linux_drm_egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/fb/lv_linux_fbdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/fb/lv_linux_fbdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/fb/lv_linux_fbdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/ft81x/lv_ft81x.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ft81x/lv_ft81x.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ft81x/lv_ft81x.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/ili9341/lv_ili9341.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ili9341/lv_ili9341.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ili9341/lv_ili9341.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/lcd/lv_lcd_generic_mipi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/nv3007/lv_nv3007.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nv3007/lv_nv3007.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nv3007/lv_nv3007.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/st7735/lv_st7735.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7735/lv_st7735.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7735/lv_st7735.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/st7789/lv_st7789.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7789/lv_st7789.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7789/lv_st7789.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/st7796/lv_st7796.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7796/lv_st7796.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7796/lv_st7796.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/st_ltdc/lv_st_ltdc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/display/tft_espi/lv_tft_espi.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/tft_espi/lv_tft_espi.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/tft_espi/lv_tft_espi.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/draw/eve/lv_draw_eve_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/draw/eve/lv_draw_eve_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/draw/eve/lv_draw_eve_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/evdev/lv_evdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/evdev/lv_evdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/evdev/lv_evdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/libinput/lv_libinput.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_libinput.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_libinput.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/libinput/lv_xkb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_xkb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_xkb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_entry.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_entry.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_entry.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_fbdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_image_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_lcd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_lcd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_lcd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_libuv.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_libuv.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_libuv.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_mouse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_mouse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_mouse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_profiler.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_profiler.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_profiler.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/nuttx/lv_nuttx_touchscreen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/assets/lv_opengles_shader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/assets/lv_opengles_shader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/assets/lv_opengles_shader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/glad/src/egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/glad/src/gles2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/gles2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/gles2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/lv_opengles_debug.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_debug.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_debug.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/lv_opengles_driver.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_driver.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_driver.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/lv_opengles_egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/lv_opengles_glfw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_glfw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_glfw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/lv_opengles_texture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_texture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_texture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/qnx/lv_qnx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/qnx/lv_qnx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/qnx/lv_qnx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/sdl/lv_sdl_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/sdl/lv_sdl_mouse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mouse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mouse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/sdl/lv_sdl_mousewheel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mousewheel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mousewheel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/sdl/lv_sdl_window.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_window.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_window.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_context.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_context.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_context.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_indev_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_indev_pointer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_pointer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_pointer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_indev_touch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_touch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_touch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/uefi/lv_uefi_private.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_private.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_private.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wayland.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wayland_smm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland_smm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland_smm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_dmabuf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_dmabuf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_dmabuf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_pointer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_pointer_axis.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer_axis.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer_axis.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_seat.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_seat.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_seat.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_shm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_shm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_shm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_touch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_touch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_touch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_window.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_window_decorations.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window_decorations.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window_decorations.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/wayland/lv_wl_xdg_shell.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_xdg_shell.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_xdg_shell.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/windows/lv_windows_context.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_context.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_context.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/windows/lv_windows_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/windows/lv_windows_input.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_input.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_input.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/x11/lv_x11_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/drivers/x11/lv_x11_input.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_input.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_input.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_binfont_loader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_binfont_loader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_binfont_loader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_dejavu_16_persian_hebrew.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_fmt_txt.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_fmt_txt.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_fmt_txt.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_10.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_10.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_10.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_12.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_12.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_14.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_14_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_18.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_18.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_18.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_20.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_20.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_20.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_22.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_22.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_22.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_24.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_24.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_24.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_26.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_26.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_26.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_28.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_28_compressed.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28_compressed.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28_compressed.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_30.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_30.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_30.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_32.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_32.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_32.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_34.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_34.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_34.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_36.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_36.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_36.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_38.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_38.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_38.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_40.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_40.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_40.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_42.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_42.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_42.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_44.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_44.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_44.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_46.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_46.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_46.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_48.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_48.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_48.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_montserrat_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_source_han_sans_sc_14_cjk.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_14_cjk.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_14_cjk.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_source_han_sans_sc_16_cjk.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_16_cjk.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_16_cjk.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_unscii_16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/font/lv_font_unscii_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/indev/lv_indev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/indev/lv_indev_gesture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_gesture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_gesture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/indev/lv_indev_scroll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_scroll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_scroll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/layouts/flex/lv_flex.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/flex/lv_flex.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/flex/lv_flex.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/layouts/grid/lv_grid.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/grid/lv_grid.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/grid/lv_grid.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/layouts/lv_layout.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/lv_layout.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/lv_layout.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/FT800-FT813/EVE_commands.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_commands.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_commands.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/FT800-FT813/EVE_supplemental.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_supplemental.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_supplemental.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/barcode/code128.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/code128.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/code128.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/barcode/lv_barcode.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/lv_barcode.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/lv_barcode.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/bin_decoder/lv_bin_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bin_decoder/lv_bin_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bin_decoder/lv_bin_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/bmp/lv_bmp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bmp/lv_bmp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bmp/lv_bmp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/expat/xmlparse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlparse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlparse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/expat/xmlrole.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlrole.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlrole.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/expat/xmltok.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/expat/xmltok_impl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_impl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_impl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/expat/xmltok_ns.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_ns.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_ns.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/ffmpeg/lv_ffmpeg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/ffmpeg/lv_ffmpeg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/ffmpeg/lv_ffmpeg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/freetype/lv_freetype.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/freetype/lv_freetype_glyph.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_glyph.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_glyph.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/freetype/lv_freetype_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/freetype/lv_freetype_outline.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_outline.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_outline.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/freetype/lv_ftsystem.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_ftsystem.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_ftsystem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/frogfs/src/decomp_raw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/decomp_raw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/decomp_raw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/frogfs/src/frogfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/frogfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/frogfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_arduino_sd.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_sd.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_sd.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_cbfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_cbfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_cbfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_fatfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_fatfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_fatfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_frogfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_frogfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_frogfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_littlefs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_littlefs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_littlefs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_memfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_memfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_memfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_posix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_posix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_posix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_stdio.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_stdio.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_stdio.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_uefi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_uefi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_uefi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/fsdrv/lv_fs_win32.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_win32.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_win32.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gif/AnimatedGIF/src/gif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/AnimatedGIF/src/gif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/AnimatedGIF/src/gif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gif/lv_gif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/lv_gif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/lv_gif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_bind.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_bind.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_bind.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/assets/chromatic.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/chromatic.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/chromatic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gltf/math/lv_gltf_math.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/math/lv_gltf_math.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/math/lv_gltf_math.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/gstreamer/lv_gstreamer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gstreamer/lv_gstreamer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gstreamer/lv_gstreamer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/libpng/lv_libpng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libpng/lv_libpng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libpng/lv_libpng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/lodepng/lodepng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lodepng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lodepng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/lodepng/lv_lodepng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lv_lodepng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lv_lodepng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/lz4/lz4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lz4/lz4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lz4/lz4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/qrcode/lv_qrcode.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/lv_qrcode.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/lv_qrcode.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/qrcode/qrcodegen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/qrcodegen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/qrcodegen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/rle/lv_rle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rle/lv_rle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rle/lv_rle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/rlottie/lv_rlottie.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rlottie/lv_rlottie.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rlottie/lv_rlottie.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/svg/lv_svg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/svg/lv_svg_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/svg/lv_svg_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/svg/lv_svg_render.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_render.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_render.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/svg/lv_svg_token.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_token.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_token.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgAccessor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgCapi.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgCompressor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgGlCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgInitializer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieExpressions.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieInterpolator.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieModel.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieModifier.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgLottieParserHandler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgPaint.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgPicture.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgRawLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgRender.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSaver.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgScene.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgStr.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSvgCssStyle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSvgPath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSvgSceneBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSvgUtil.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwImage.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwMemPool.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwPostEffect.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwRaster.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwRenderer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwRle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgSwStroke.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgTaskScheduler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgText.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgWgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/thorvg/tvgXmlParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/tiny_ttf/lv_tiny_ttf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/tjpgd/lv_tjpgd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/lv_tjpgd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/lv_tjpgd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/tjpgd/tjpgd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/tjpgd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/tjpgd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/lv_init.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/lv_init.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/lv_init.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/class/lv_cache_lru_ll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_ll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_ll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/class/lv_cache_lru_rb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_rb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_rb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/class/lv_cache_sc_da.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_sc_da.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_sc_da.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/instance/lv_image_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/instance/lv_image_header_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_header_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_header_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/lv_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/cache/lv_cache_entry.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache_entry.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache_entry.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_anim.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_anim_timeline.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim_timeline.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim_timeline.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_area.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_area.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_area.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_array.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_array.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_array.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_async.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_async.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_async.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_bidi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_bidi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_bidi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_circle_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_circle_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_circle_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_color.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_color_op.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color_op.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color_op.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_event.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_event.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_event.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_fs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_fs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_fs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_iter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_iter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_iter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_ll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_ll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_ll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_log.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_log.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_log.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_lru.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_lru.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_lru.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_math.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_math.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_math.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_palette.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_palette.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_palette.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_profiler_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_profiler_builtin_posix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin_posix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin_posix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_rb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_rb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_rb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_style_gen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style_gen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style_gen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_templ.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_templ.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_templ.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_text.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_text_ap.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text_ap.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text_ap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_timer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_timer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_timer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_tree.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_tree.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_tree.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/misc/lv_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_cmsis_rtos2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_cmsis_rtos2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_cmsis_rtos2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_freertos.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_freertos.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_freertos.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_linux.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_linux.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_mqx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_mqx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_mqx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_os.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_os_none.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os_none.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os_none.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_pthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_pthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_pthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_sdl2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_sdl2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_sdl2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/osal/lv_windows.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_windows.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_windows.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/file_explorer/lv_file_explorer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/file_explorer/lv_file_explorer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/file_explorer/lv_file_explorer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/font_manager/lv_font_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/font_manager/lv_font_manager_recycle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager_recycle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager_recycle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/fragment/lv_fragment.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/fragment/lv_fragment_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/gridnav/lv_gridnav.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/gridnav/lv_gridnav.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/gridnav/lv_gridnav.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/ime/lv_ime_pinyin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/ime/lv_ime_pinyin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/ime/lv_ime_pinyin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/imgfont/lv_imgfont.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/imgfont/lv_imgfont.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/imgfont/lv_imgfont.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/monkey/lv_monkey.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/monkey/lv_monkey.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/monkey/lv_monkey.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/observer/lv_observer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/observer/lv_observer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/observer/lv_observer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/snapshot/lv_snapshot.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/snapshot/lv_snapshot.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/snapshot/lv_snapshot.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/sysmon/lv_sysmon.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/sysmon/lv_sysmon.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/sysmon/lv_sysmon.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/test/lv_test_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/test/lv_test_helpers.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_helpers.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_helpers.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/test/lv_test_indev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/test/lv_test_indev_gesture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev_gesture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev_gesture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/test/lv_test_screenshot_compare.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_screenshot_compare.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_screenshot_compare.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/translation/lv_translation.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/translation/lv_translation.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/translation/lv_translation.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/vg_lite_tvg/vg_lite_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/c++ -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu++2b -fno-exceptions -fno-rtti -fuse-cxa-atexit -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/vg_lite_tvg/vg_lite_tvg.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_base_types.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_base_types.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_base_types.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_component.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_component.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_component.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_load.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_load.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_load.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_test.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_test.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_test.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_translation.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_translation.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_translation.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_update.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_update.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_update.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/lv_xml_widget.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_widget.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_widget.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_arc_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_arc_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_arc_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_bar_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_bar_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_bar_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_button_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_button_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_button_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_calendar_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_calendar_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_calendar_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_canvas_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_canvas_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_canvas_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_chart_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_chart_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_chart_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_checkbox_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_checkbox_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_checkbox_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_dropdown_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_dropdown_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_dropdown_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_image_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_image_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_image_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_keyboard_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_keyboard_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_keyboard_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_label_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_label_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_label_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_obj_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_obj_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_obj_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_qrcode_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_qrcode_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_qrcode_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_roller_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_roller_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_roller_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_scale_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_scale_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_scale_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_slider_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_slider_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_slider_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_spangroup_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spangroup_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spangroup_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_spinbox_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spinbox_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spinbox_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_switch_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_switch_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_switch_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_table_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_table_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_table_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_tabview_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/others/xml/parsers/lv_xml_textarea_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_textarea_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_textarea_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/builtin/lv_mem_core_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_mem_core_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_mem_core_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/builtin/lv_sprintf_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_sprintf_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_sprintf_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/builtin/lv_string_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_string_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_string_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/builtin/lv_tlsf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_tlsf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_tlsf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/clib/lv_mem_core_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_mem_core_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_mem_core_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/clib/lv_sprintf_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_sprintf_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_sprintf_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/clib/lv_string_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_string_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_string_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/lv_mem.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/lv_mem.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/lv_mem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/micropython/lv_mem_core_micropython.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/micropython/lv_mem_core_micropython.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/micropython/lv_mem_core_micropython.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/rtthread/lv_mem_core_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/rtthread/lv_sprintf_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/rtthread/lv_string_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_string_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_string_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/stdlib/uefi/lv_mem_core_uefi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/uefi/lv_mem_core_uefi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/uefi/lv_mem_core_uefi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/themes/default/lv_theme_default.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/default/lv_theme_default.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/default/lv_theme_default.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/themes/lv_theme.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/lv_theme.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/lv_theme.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/themes/mono/lv_theme_mono.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/mono/lv_theme_mono.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/mono/lv_theme_mono.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/themes/simple/lv_theme_simple.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/simple/lv_theme_simple.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/simple/lv_theme_simple.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/tick/lv_tick.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/tick/lv_tick.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/tick/lv_tick.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/3dtexture/lv_3dtexture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/3dtexture/lv_3dtexture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/3dtexture/lv_3dtexture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/animimage/lv_animimage.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/animimage/lv_animimage.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/animimage/lv_animimage.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/arc/lv_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arc/lv_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arc/lv_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/arclabel/lv_arclabel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arclabel/lv_arclabel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arclabel/lv_arclabel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/bar/lv_bar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/bar/lv_bar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/bar/lv_bar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/button/lv_button.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/button/lv_button.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/button/lv_button.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/buttonmatrix/lv_buttonmatrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/calendar/lv_calendar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/calendar/lv_calendar_chinese.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_chinese.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_chinese.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/calendar/lv_calendar_header_arrow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_arrow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_arrow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/calendar/lv_calendar_header_dropdown.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/canvas/lv_canvas.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/canvas/lv_canvas.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/canvas/lv_canvas.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/chart/lv_chart.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/chart/lv_chart.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/chart/lv_chart.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/checkbox/lv_checkbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/checkbox/lv_checkbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/checkbox/lv_checkbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/dropdown/lv_dropdown.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/dropdown/lv_dropdown.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/dropdown/lv_dropdown.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/image/lv_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/image/lv_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/image/lv_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/imagebutton/lv_imagebutton.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/imagebutton/lv_imagebutton.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/imagebutton/lv_imagebutton.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/keyboard/lv_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/keyboard/lv_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/keyboard/lv_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/label/lv_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/label/lv_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/label/lv_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/led/lv_led.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/led/lv_led.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/led/lv_led.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/line/lv_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/line/lv_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/line/lv_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/list/lv_list.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/list/lv_list.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/list/lv_list.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/lottie/lv_lottie.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/lottie/lv_lottie.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/lottie/lv_lottie.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/menu/lv_menu.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/menu/lv_menu.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/menu/lv_menu.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/msgbox/lv_msgbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/msgbox/lv_msgbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/msgbox/lv_msgbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/objx_templ/lv_objx_templ.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/objx_templ/lv_objx_templ.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/objx_templ/lv_objx_templ.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_animimage_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_animimage_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_animimage_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_dropdown_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_dropdown_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_dropdown_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_image_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_image_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_image_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_keyboard_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_keyboard_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_keyboard_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_label_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_label_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_label_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_obj_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_obj_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_obj_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_roller_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_roller_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_roller_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_slider_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_slider_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_slider_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_style_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_style_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_style_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/property/lv_textarea_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_textarea_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_textarea_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/roller/lv_roller.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/roller/lv_roller.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/roller/lv_roller.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/scale/lv_scale.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/scale/lv_scale.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/scale/lv_scale.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/slider/lv_slider.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/slider/lv_slider.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/slider/lv_slider.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/span/lv_span.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/span/lv_span.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/span/lv_span.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/spinbox/lv_spinbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinbox/lv_spinbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinbox/lv_spinbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/spinner/lv_spinner.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinner/lv_spinner.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinner/lv_spinner.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/switch/lv_switch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/switch/lv_switch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/switch/lv_switch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/table/lv_table.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/table/lv_table.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/table/lv_table.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/tabview/lv_tabview.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tabview/lv_tabview.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tabview/lv_tabview.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/textarea/lv_textarea.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/textarea/lv_textarea.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/textarea/lv_textarea.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/tileview/lv_tileview.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tileview/lv_tileview.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tileview/lv_tileview.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/lvgl__lvgl", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -I/home/marc/esp/v5.5.1/esp-idf/components/freertos/FreeRTOS-Kernel/include/freertos -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_lvgl__lvgl.dir/src/widgets/win/lv_win.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/win/lv_win.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/win/lv_win.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/domotic_display.c.o -c /home/marc/rgb_lcd/components/domotic_display/domotic_display.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/domotic_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/ihm.c.o -c /home/marc/rgb_lcd/components/domotic_display/ihm.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/ihm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/lv_theme_domotic.c.o -c /home/marc/rgb_lcd/components/domotic_display/lv_theme_domotic.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/lv_theme_domotic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/fonts/montserrat_medium_12.c.o -c /home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_12.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/fonts/montserrat_medium_18.c.o -c /home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_18.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_18.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/fonts/montserrat_medium_24.c.o -c /home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_24.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/fonts/montserrat_medium_24.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/domotic_display", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DLV_ATTRIBUTE_FAST_MEM=IRAM_ATTR -DLV_CONF_INCLUDE_SIMPLE -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/domotic_display/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/rgb_lcd/components/meteofrance/include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/rgb_lcd/components/stateManagement/include -I/home/marc/rgb_lcd/components/eventsManager/include -I/home/marc/esp/v5.5.1/esp-idf/components/mqtt/esp-mqtt/include -I/home/marc/esp/v5.5.1/esp-idf/components/tcp_transport/include -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src -I/home/marc/rgb_lcd/managed_components -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_domotic_display.dir/fonts/notomedium16.c.o -c /home/marc/rgb_lcd/components/domotic_display/fonts/notomedium16.c", + "file": "/home/marc/rgb_lcd/components/domotic_display/fonts/notomedium16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/image_downloader", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/image_downloader/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -I/home/marc/esp/v5.5.1/esp-idf/components/json/cJSON -I/home/marc/esp/v5.5.1/esp-idf/components/esp_http_client/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_event/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls -I/home/marc/esp/v5.5.1/esp-idf/components/esp-tls/esp-tls-crypto -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/port/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/library -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/esp_crt_bundle/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/everest/include -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m -I/home/marc/esp/v5.5.1/esp-idf/components/mbedtls/mbedtls/3rdparty/p256-m/p256-m -I/home/marc/esp-protocols/common_components/linux_compat/esp_timer/include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_image_downloader.dir/image_downloader.c.o -c /home/marc/rgb_lcd/components/image_downloader/image_downloader.c", + "file": "/home/marc/rgb_lcd/components/image_downloader/image_downloader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/esp-idf/protocol_examples_common", + "command": "/usr/bin/cc -DESP_PLATFORM -DIDF_VER=\\\"v5.5.1-dirty\\\" -DPROJECT_PLATFORM_LINUX -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -DSOC_XTAL_FREQ_MHZ=CONFIG_XTAL_FREQ -D_GLIBCXX_HAVE_POSIX_SEMAPHORE -D_GLIBCXX_USE_POSIX_SEMAPHORE -D_GNU_SOURCE -I/home/marc/rgb_lcd/config -I/home/marc/rgb_lcd/components/protocol_examples_common/include -I/home/marc/esp-protocols/common_components/linux_compat/freertos/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_hw_support/include -I/home/marc/esp/v5.5.1/esp-idf/components/heap/include -I/home/marc/esp/v5.5.1/esp-idf/components/log/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/include -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux -I/home/marc/esp/v5.5.1/esp-idf/components/soc/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/platform_port/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/hal/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux/include/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/linux -I/home/marc/esp/v5.5.1/esp-idf/components/esp_common/include -I/home/marc/esp/v5.5.1/esp-idf/components/esp_system/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/include -I/home/marc/esp/v5.5.1/esp-idf/components/linux/linux_include -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-error=extra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -O2 -fmacro-prefix-map=/home/marc/rgb_lcd=. -fmacro-prefix-map=/home/marc/esp/v5.5.1/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -std=gnu17 -Wno-old-style-declaration -o CMakeFiles/__idf_protocol_examples_common.dir/protocol_examples_utils.c.o -c /home/marc/rgb_lcd/components/protocol_examples_common/protocol_examples_utils.c", + "file": "/home/marc/rgb_lcd/components/protocol_examples_common/protocol_examples_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_avatar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_avatar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_avatar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_lvgl_logo_argb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_argb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_argb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_lvgl_logo_rgb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_rgb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_rgb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_12_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_12_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_12_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_14_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_14_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_14_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_16_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_16_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_16_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_18_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_18_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_18_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_20_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_20_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_20_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_24_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_24_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_24_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_26_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_26_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_26_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/benchmark/lv_demo_benchmark.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/lv_demo_benchmark.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/benchmark/lv_demo_benchmark.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/gltf/lv_demo_gltf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/gltf/lv_demo_gltf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/gltf/lv_demo_gltf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/keypad_encoder/lv_demo_keypad_encoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/keypad_encoder/lv_demo_keypad_encoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/keypad_encoder/lv_demo_keypad_encoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/lv_demos.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/lv_demos.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/lv_demos.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_corner_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_corner_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_corner_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_pause.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_play.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_play.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_play.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_play_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_play_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_list_play_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_loop.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_loop.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_loop.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_loop_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_loop_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_loop_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_next.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_next.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_next.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_next_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_next_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_next_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_pause.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_pause.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_pause.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_pause_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_pause_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_pause_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_play.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_play.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_play.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_play_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_play_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_play_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_prev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_prev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_prev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_prev_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_prev_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_prev_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_rnd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_rnd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_rnd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_rnd_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_rnd_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_btn_rnd_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_left.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_left.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_left.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_left_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_left_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_left_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_right.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_right.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_right.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_right_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_right_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_corner_right_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_1_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_1_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_1_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_2_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_2_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_2_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_3_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_3_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_cover_3_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_1_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_1_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_1_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_2_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_2_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_2_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_3_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_3_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_3_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_4_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_4_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_icon_4_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_list_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_list_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_list_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_list_border_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_list_border_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_list_border_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_logo.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_logo.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_logo.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_slider_knob.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_slider_knob.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_slider_knob.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_slider_knob_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_slider_knob_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_slider_knob_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_bottom.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_bottom.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_bottom.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_bottom_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_bottom_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_bottom_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_top.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_top.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_top.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_top_large.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_top_large.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/assets/img_lv_demo_music_wave_top_large.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music_list.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music_list.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music_list.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music_main.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music_main.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/music/lv_demo_music_main.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_arc_bg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_arc_bg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_arc_bg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_argb8888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_argb8888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_argb8888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_argb8888_premultiplied.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_argb8888_premultiplied.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_argb8888_premultiplied.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_i1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_i1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_i1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_l8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_l8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_l8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb565.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb565_swapped.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565_swapped.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565_swapped.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb565a8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565a8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb565a8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_rgb888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_xrgb8888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_xrgb8888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/assets/img_render_lvgl_logo_xrgb8888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/render/lv_demo_render.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/lv_demo_render.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/render/lv_demo_render.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/stress/lv_demo_stress.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/stress/lv_demo_stress.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/stress/lv_demo_stress.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/vector_graphic/assets/img_demo_vector_avatar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/vector_graphic/assets/img_demo_vector_avatar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/vector_graphic/assets/img_demo_vector_avatar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/vector_graphic/lv_demo_vector_graphic.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/vector_graphic/lv_demo_vector_graphic.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/vector_graphic/lv_demo_vector_graphic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_clothes.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_clothes.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_clothes.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_demo_widgets_avatar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_demo_widgets_avatar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_demo_widgets_avatar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_demo_widgets_needle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_demo_widgets_needle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_demo_widgets_needle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_lvgl_logo.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_lvgl_logo.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/assets/img_lvgl_logo.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets_analytics.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_analytics.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_analytics.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets_components.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_components.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_components.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets_profile.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_profile.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_profile.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -o CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets_shop.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_shop.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos/widgets/lv_demo_widgets_shop.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_timeline_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_timeline_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/anim/lv_example_anim_timeline_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/animimg001.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg001.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg001.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/animimg002.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg002.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg002.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/animimg003.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg003.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/animimg003.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/emoji/img_emoji_F617.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/emoji/img_emoji_F617.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/emoji/img_emoji_F617.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_caret_down.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_caret_down.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_caret_down.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_argb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_argb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_argb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_indexed16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_indexed16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_indexed16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_rgb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_rgb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_cogwheel_rgb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_hand.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_hand.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_hand.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_skew_strip.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_skew_strip.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_skew_strip.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_star.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_star.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_star.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/img_svg_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_svg_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/img_svg_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_left.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_left.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_left.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_mid.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_mid.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_mid.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_right.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_right.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/assets/imgbtn_right.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_bubble.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_bubble.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_bubble.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_button.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_button.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_button.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_click.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_click.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_click.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_draw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_draw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_draw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_streak.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_streak.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_streak.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_trickle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_trickle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/event/lv_example_event_trickle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/get_started/lv_example_get_started_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/grad/lv_example_grad_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/grad/lv_example_grad_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/grad/lv_example_grad_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/grad/lv_example_grad_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/grad/lv_example_grad_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/flex/lv_example_flex_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/layouts/grid/lv_example_grid_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/barcode/lv_example_barcode_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/barcode/lv_example_barcode_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/barcode/lv_example_barcode_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/bmp/lv_example_bmp_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/bmp/lv_example_bmp_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/bmp/lv_example_bmp_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/ffmpeg/lv_example_ffmpeg_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/ffmpeg/lv_example_ffmpeg_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/freetype/lv_example_freetype_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/freetype/lv_example_freetype_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/freetype/lv_example_freetype_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/freetype/lv_example_freetype_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/gif/img_bulb_gif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gif/img_bulb_gif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gif/img_bulb_gif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/gif/lv_example_gif_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gif/lv_example_gif_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gif/lv_example_gif_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/gltf/lv_example_gltf_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gltf/lv_example_gltf_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gltf/lv_example_gltf_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/gltf/lv_example_gltf_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gltf/lv_example_gltf_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gltf/lv_example_gltf_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/gstreamer/lv_example_gstreamer_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gstreamer/lv_example_gstreamer_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/gstreamer/lv_example_gstreamer_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/libjpeg_turbo/lv_example_libjpeg_turbo_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libjpeg_turbo/lv_example_libjpeg_turbo_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libjpeg_turbo/lv_example_libjpeg_turbo_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/libpng/img_png_demo.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libpng/img_png_demo.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libpng/img_png_demo.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/libpng/lv_example_libpng_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libpng/lv_example_libpng_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/libpng/lv_example_libpng_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/lodepng/img_wink_png.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/lodepng/img_wink_png.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/lodepng/img_wink_png.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/lodepng/lv_example_lodepng_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/lodepng/lv_example_lodepng_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/lodepng/lv_example_lodepng_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/qrcode/lv_example_qrcode_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/qrcode/lv_example_qrcode_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/qrcode/lv_example_qrcode_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_approve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_approve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/rlottie/lv_example_rlottie_approve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/svg/lv_example_svg_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/svg/lv_example_svg_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/svg/lv_example_svg_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/svg/lv_example_svg_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/ubuntu_font.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/ubuntu_font.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tiny_ttf/ubuntu_font.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/libs/tjpgd/lv_example_tjpgd_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tjpgd/lv_example_tjpgd_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/libs/tjpgd/lv_example_tjpgd_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/file_explorer/lv_example_file_explorer_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/font_manager/lv_example_font_manager_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/font_manager/lv_example_font_manager_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/font_manager/lv_example_font_manager_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/font_manager/lv_example_font_manager_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/fragment/lv_example_fragment_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/fragment/lv_example_fragment_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/fragment/lv_example_fragment_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/fragment/lv_example_fragment_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/fragment/lv_example_fragment_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/fragment/lv_example_fragment_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gestures/lv_example_gestures.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gestures/lv_example_gestures.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gestures/lv_example_gestures.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/gridnav/lv_example_gridnav_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/ime/lv_example_ime_pinyin_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/ime/lv_example_ime_pinyin_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/ime/lv_example_ime_pinyin_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/ime/lv_example_ime_pinyin_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/ime/lv_example_ime_pinyin_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/ime/lv_example_ime_pinyin_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/imgfont/lv_example_imgfont_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/imgfont/lv_example_imgfont_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/imgfont/lv_example_imgfont_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/monkey/lv_example_monkey_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/observer/lv_example_observer_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/snapshot/lv_example_snapshot_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/snapshot/lv_example_snapshot_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/snapshot/lv_example_snapshot_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/translation/lv_example_translation_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/translation/lv_example_translation_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/translation/lv_example_translation_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/translation/lv_example_translation_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/translation/lv_example_translation_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/translation/lv_example_translation_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/xml/lv_example_xml_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/xml/lv_example_xml_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/xml/lv_example_xml_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/others/xml/lv_example_xml_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/xml/lv_example_xml_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/others/xml/lv_example_xml_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_disp_template.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_disp_template.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_disp_template.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_fs_template.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_fs_template.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_fs_template.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_indev_template.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_indev_template.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_indev_template.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_lcd_stm32_template.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_lcd_stm32_template.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/lv_port_lcd_stm32_template.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/porting/osal/lv_example_osal.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/osal/lv_example_osal.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/porting/osal/lv_example_osal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/scroll/lv_example_scroll_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_10.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_10.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_10.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_11.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_11.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_11.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_12.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_12.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_13.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_13.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_13.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_14.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_14.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_14.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_15.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_15.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_15.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_17.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_17.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_17.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_18.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_18.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_18.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_19.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_19.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_19.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_9.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_9.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/styles/lv_example_style_9.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/animimg/lv_example_animimg_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/animimg/lv_example_animimg_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/animimg/lv_example_animimg_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/arc/lv_example_arc_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/arc/lv_example_arc_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/arc/lv_example_arc_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arc/lv_example_arc_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/arclabel/lv_example_arclabel_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arclabel/lv_example_arclabel_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/arclabel/lv_example_arclabel_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/bar/lv_example_bar_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/button/lv_example_button_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/calendar/lv_example_calendar_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/calendar/lv_example_calendar_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/calendar/lv_example_calendar_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/calendar/lv_example_calendar_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/calendar/lv_example_calendar_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/calendar/lv_example_calendar_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_10.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_10.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_10.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_11.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_11.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_11.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_9.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_9.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/canvas/lv_example_canvas_9.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/chart/lv_example_chart_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/checkbox/lv_example_checkbox_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/checkbox/lv_example_checkbox_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/checkbox/lv_example_checkbox_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/checkbox/lv_example_checkbox_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/checkbox/lv_example_checkbox_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/checkbox/lv_example_checkbox_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/dropdown/lv_example_dropdown_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/image/lv_example_image_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/imagebutton/lv_example_imagebutton_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/imagebutton/lv_example_imagebutton_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/imagebutton/lv_example_imagebutton_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/keyboard/lv_example_keyboard_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/keyboard/lv_example_keyboard_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/keyboard/lv_example_keyboard_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/keyboard/lv_example_keyboard_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/label/lv_example_label_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/led/lv_example_led_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/led/lv_example_led_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/led/lv_example_led_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/line/lv_example_line_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/line/lv_example_line_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/line/lv_example_line_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/list/lv_example_list_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/list/lv_example_list_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/list/lv_example_list_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/list/lv_example_list_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/list/lv_example_list_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/list/lv_example_list_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_approve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_approve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/lottie/lv_example_lottie_approve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/menu/lv_example_menu_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/msgbox/lv_example_msgbox_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/msgbox/lv_example_msgbox_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/msgbox/lv_example_msgbox_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/msgbox/lv_example_msgbox_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/msgbox/lv_example_msgbox_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/msgbox/lv_example_msgbox_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/obj/lv_example_obj_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/roller/lv_example_roller_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_10.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_10.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_10.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_11.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_11.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_11.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_12.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_12.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_5.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_5.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_5.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_6.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_6.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_6.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_7.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_7.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_7.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_9.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_9.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/scale/lv_example_scale_9.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/slider/lv_example_slider_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/span/lv_example_span_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/span/lv_example_span_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/span/lv_example_span_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/spinbox/lv_example_spinbox_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/spinbox/lv_example_spinbox_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/spinbox/lv_example_spinbox_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/spinner/lv_example_spinner_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/spinner/lv_example_spinner_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/spinner/lv_example_spinner_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/switch/lv_example_switch_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/switch/lv_example_switch_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/switch/lv_example_switch_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/switch/lv_example_switch_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/switch/lv_example_switch_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/switch/lv_example_switch_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/table/lv_example_table_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/table/lv_example_table_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/table/lv_example_table_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/table/lv_example_table_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/table/lv_example_table_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/table/lv_example_table_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/tabview/lv_example_tabview_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tabview/lv_example_tabview_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tabview/lv_example_tabview_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/tabview/lv_example_tabview_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tabview/lv_example_tabview_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tabview/lv_example_tabview_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_3.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_3.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_3.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/textarea/lv_example_textarea_4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/tileview/lv_example_tileview_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tileview/lv_example_tileview_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/tileview/lv_example_tileview_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_examples.dir/examples/widgets/win/lv_example_win_1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/win/lv_example_win_1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples/widgets/win/lv_example_win_1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgAccessor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCapi.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCompressor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgGlCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgInitializer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieExpressions.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieInterpolator.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieModel.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieModifier.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieParserHandler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgPaint.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgPicture.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgRawLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgRender.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSaver.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgScene.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgStr.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgCssStyle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgPath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgSceneBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgUtil.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwImage.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwMemPool.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwPostEffect.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRaster.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRenderer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwStroke.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgTaskScheduler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgText.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgWgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgXmlParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -I/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -Wunused-parameter -o CMakeFiles/lvgl_thorvg.dir/src/others/vg_lite_tvg/vg_lite_tvg.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_group.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_group.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_group.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_class.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_class.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_class.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_draw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_draw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_draw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_event.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_event.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_event.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_id_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_id_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_id_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_pos.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_pos.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_pos.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_property.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_property.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_property.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_scroll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_scroll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_scroll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_style_gen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style_gen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_style_gen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_obj_tree.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_tree.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_obj_tree.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/core/lv_refr.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_refr.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/core/lv_refr.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/display/lv_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/display/lv_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/display/lv_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/convert/helium/lv_draw_buf_convert_helium.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/helium/lv_draw_buf_convert_helium.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/helium/lv_draw_buf_convert_helium.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/convert/lv_draw_buf_convert.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/lv_draw_buf_convert.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/lv_draw_buf_convert.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/convert/neon/lv_draw_buf_convert_neon.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/neon/lv_draw_buf_convert_neon.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/convert/neon/lv_draw_buf_convert_neon.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/dma2d/lv_draw_dma2d_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/espressif/ppa/lv_draw_ppa_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/espressif/ppa/lv_draw_ppa_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_letter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_letter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_letter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_ram_g.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_ram_g.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_ram_g.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_draw_eve_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_draw_eve_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/eve/lv_eve.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_eve.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/eve/lv_eve.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_3d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_3d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_3d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_mask.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_mask.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_mask.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_draw_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_draw_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/lv_image_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_image_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/lv_image_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_nema_gfx_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_draw_buf_g2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_buf_g2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_buf_g2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_draw_g2d_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_draw_g2d_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_g2d_buf_map.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_buf_map.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_buf_map.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/g2d/lv_g2d_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/g2d/lv_g2d_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_buf_pxp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_cfg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_osa.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_osa.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_osa.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/nxp/pxp/lv_pxp_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/opengles/lv_draw_opengles.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/opengles/lv_draw_opengles.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/opengles/lv_draw_opengles.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sdl/lv_draw_sdl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sdl/lv_draw_sdl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sdl/lv_draw_sdl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/helium/lv_blend_helium.S.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/helium/lv_blend_helium.S", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/helium/lv_blend_helium.S" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888_premultiplied.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565_swapped.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb565.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/blend/neon/lv_draw_sw_blend_neon_to_rgb888.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_box_shadow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_box_shadow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_box_shadow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_letter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_letter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_letter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_mask_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_transform.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_transform.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_transform.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/sw/lv_draw_sw_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_buf_vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_border.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_fill.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_img.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_layer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_triangle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_vector.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_math.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_math.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_math.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_pending.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_pending.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_pending.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_stroke.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/draw/vg_lite/lv_vg_lite_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/drm/lv_linux_drm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/drm/lv_linux_drm_common.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_common.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_common.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/drm/lv_linux_drm_egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/drm/lv_linux_drm_egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/fb/lv_linux_fbdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/fb/lv_linux_fbdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/fb/lv_linux_fbdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/ft81x/lv_ft81x.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ft81x/lv_ft81x.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ft81x/lv_ft81x.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/ili9341/lv_ili9341.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ili9341/lv_ili9341.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/ili9341/lv_ili9341.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/lcd/lv_lcd_generic_mipi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/lovyan_gfx/lv_lovyan_gfx.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/nv3007/lv_nv3007.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nv3007/lv_nv3007.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nv3007/lv_nv3007.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/nxp_elcdif/lv_nxp_elcdif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/st7735/lv_st7735.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7735/lv_st7735.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7735/lv_st7735.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/st7789/lv_st7789.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7789/lv_st7789.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7789/lv_st7789.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/st7796/lv_st7796.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7796/lv_st7796.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st7796/lv_st7796.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/st_ltdc/lv_st_ltdc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/display/tft_espi/lv_tft_espi.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/tft_espi/lv_tft_espi.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/display/tft_espi/lv_tft_espi.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/draw/eve/lv_draw_eve_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/draw/eve/lv_draw_eve_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/draw/eve/lv_draw_eve_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/evdev/lv_evdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/evdev/lv_evdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/evdev/lv_evdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/libinput/lv_libinput.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_libinput.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_libinput.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/libinput/lv_xkb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_xkb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/libinput/lv_xkb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_entry.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_entry.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_entry.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_fbdev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_image_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_lcd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_lcd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_lcd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_libuv.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_libuv.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_libuv.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_mouse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_mouse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_mouse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_profiler.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_profiler.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_profiler.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_touchscreen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/assets/lv_opengles_shader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/assets/lv_opengles_shader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/assets/lv_opengles_shader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/glad/src/egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/glad/src/gles2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/gles2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/glad/src/gles2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/lv_opengles_debug.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_debug.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_debug.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/lv_opengles_driver.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_driver.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_driver.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/lv_opengles_egl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_egl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_egl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/lv_opengles_glfw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_glfw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_glfw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/lv_opengles_texture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_texture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/lv_opengles_texture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/opengles/opengl_shader/lv_opengl_shader_program.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/qnx/lv_qnx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/qnx/lv_qnx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/qnx/lv_qnx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mouse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mouse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mouse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mousewheel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mousewheel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_mousewheel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_window.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_window.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/sdl/lv_sdl_window.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_context.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_context.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_context.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_indev_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_indev_pointer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_pointer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_pointer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_indev_touch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_touch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_indev_touch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/uefi/lv_uefi_private.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_private.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/uefi/lv_uefi_private.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland_smm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland_smm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wayland_smm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_dmabuf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_dmabuf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_dmabuf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_pointer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_pointer_axis.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer_axis.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_pointer_axis.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_seat.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_seat.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_seat.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_shm.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_shm.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_shm.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_touch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_touch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_touch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_window.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_window_decorations.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window_decorations.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_window_decorations.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wl_xdg_shell.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_xdg_shell.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/wayland/lv_wl_xdg_shell.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_context.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_context.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_context.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_input.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_input.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/windows/lv_windows_input.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_input.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_input.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/drivers/x11/lv_x11_input.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_binfont_loader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_binfont_loader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_binfont_loader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_dejavu_16_persian_hebrew.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_fmt_txt.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_fmt_txt.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_fmt_txt.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_10.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_10.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_10.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_12.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_12.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_12.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_14.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_14_aligned.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14_aligned.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_14_aligned.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_18.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_18.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_18.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_20.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_20.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_20.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_22.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_22.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_22.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_24.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_24.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_24.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_26.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_26.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_26.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28_compressed.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28_compressed.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_28_compressed.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_30.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_30.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_30.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_32.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_32.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_32.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_34.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_34.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_34.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_36.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_36.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_36.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_38.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_38.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_38.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_40.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_40.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_40.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_42.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_42.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_42.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_44.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_44.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_44.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_46.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_46.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_46.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_48.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_48.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_48.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_montserrat_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_source_han_sans_sc_14_cjk.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_14_cjk.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_14_cjk.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_source_han_sans_sc_16_cjk.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_16_cjk.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_source_han_sans_sc_16_cjk.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_unscii_16.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_16.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_16.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/font/lv_font_unscii_8.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_8.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/font/lv_font_unscii_8.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/indev/lv_indev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/indev/lv_indev_gesture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_gesture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_gesture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/indev/lv_indev_scroll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_scroll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/indev/lv_indev_scroll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/layouts/flex/lv_flex.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/flex/lv_flex.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/flex/lv_flex.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/layouts/grid/lv_grid.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/grid/lv_grid.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/grid/lv_grid.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/layouts/lv_layout.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/lv_layout.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/layouts/lv_layout.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/FT800-FT813/EVE_commands.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_commands.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_commands.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/FT800-FT813/EVE_supplemental.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_supplemental.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/FT800-FT813/EVE_supplemental.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/barcode/code128.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/code128.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/code128.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/barcode/lv_barcode.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/lv_barcode.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/barcode/lv_barcode.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/bin_decoder/lv_bin_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bin_decoder/lv_bin_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bin_decoder/lv_bin_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/bmp/lv_bmp.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bmp/lv_bmp.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/bmp/lv_bmp.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/expat/xmlparse.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlparse.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlparse.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/expat/xmlrole.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlrole.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmlrole.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/expat/xmltok.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/expat/xmltok_impl.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_impl.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_impl.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/expat/xmltok_ns.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_ns.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/expat/xmltok_ns.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/ffmpeg/lv_ffmpeg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/ffmpeg/lv_ffmpeg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/ffmpeg/lv_ffmpeg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_glyph.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_glyph.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_glyph.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_outline.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_outline.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_freetype_outline.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/freetype/lv_ftsystem.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_ftsystem.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/freetype/lv_ftsystem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/frogfs/src/decomp_raw.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/decomp_raw.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/decomp_raw.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/frogfs/src/frogfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/frogfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/frogfs/src/frogfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_arduino_sd.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_sd.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_arduino_sd.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_cbfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_cbfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_cbfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_fatfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_fatfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_fatfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_frogfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_frogfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_frogfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_littlefs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_littlefs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_littlefs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_memfs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_memfs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_memfs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_posix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_posix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_posix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_stdio.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_stdio.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_stdio.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_uefi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_uefi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_uefi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_win32.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_win32.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/fsdrv/lv_fs_win32.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gif/AnimatedGIF/src/gif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/AnimatedGIF/src/gif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/AnimatedGIF/src/gif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gif/lv_gif.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/lv_gif.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gif/lv_gif.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_bind.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_bind.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_bind.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_animations.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_cache.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_injest.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_mesh.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_node.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_primitive.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_shader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_skin.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_data_texture.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_data/lv_gltf_uniform_locations.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/assets/chromatic.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/chromatic.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/chromatic.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/assets/lv_gltf_view_shader.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/ibl/lv_gltf_ibl_sampler.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_render.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/gltf_view/lv_gltf_view_shader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gltf/math/lv_gltf_math.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/math/lv_gltf_math.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gltf/math/lv_gltf_math.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/gstreamer/lv_gstreamer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gstreamer/lv_gstreamer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/gstreamer/lv_gstreamer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/libpng/lv_libpng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libpng/lv_libpng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/libpng/lv_libpng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/lodepng/lodepng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lodepng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lodepng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/lodepng/lv_lodepng.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lv_lodepng.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lodepng/lv_lodepng.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/lz4/lz4.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lz4/lz4.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/lz4/lz4.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/qrcode/lv_qrcode.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/lv_qrcode.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/lv_qrcode.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/qrcode/qrcodegen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/qrcodegen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/qrcode/qrcodegen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/rle/lv_rle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rle/lv_rle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rle/lv_rle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/rlottie/lv_rlottie.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rlottie/lv_rlottie.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/rlottie/lv_rlottie.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/svg/lv_svg.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_decoder.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_decoder.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_decoder.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_render.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_render.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_render.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_token.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_token.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/svg/lv_svg_token.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgAccessor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAccessor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgCapi.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCapi.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgCompressor.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgCompressor.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgGlCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgGlCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgInitializer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgInitializer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieAnimation.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieAnimation.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieExpressions.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieExpressions.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieInterpolator.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieModel.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModel.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieModifier.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieModifier.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgLottieParserHandler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgPaint.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPaint.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgPicture.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgPicture.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgRawLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRawLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgRender.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgRender.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSaver.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSaver.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgScene.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgScene.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgStr.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgStr.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSvgCssStyle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSvgLoader.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgLoader.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSvgPath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgPath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSvgSceneBuilder.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSvgUtil.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSvgUtil.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwFill.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwFill.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwImage.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwImage.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwMath.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMath.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwMemPool.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwMemPool.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwPostEffect.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwPostEffect.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwRaster.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRaster.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwRenderer.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRenderer.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwRle.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwRle.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwShape.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwShape.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgSwStroke.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgSwStroke.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgTaskScheduler.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgTaskScheduler.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgText.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgText.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgWgCanvas.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgWgCanvas.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/thorvg/tvgXmlParser.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/thorvg/tvgXmlParser.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/tiny_ttf/lv_tiny_ttf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/tjpgd/lv_tjpgd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/lv_tjpgd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/lv_tjpgd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/tjpgd/tjpgd.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/tjpgd.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/tjpgd/tjpgd.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_path.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_path.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_path.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLite/vg_lite_stroke.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/VGLiteKernel/vg_lite_kernel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/lv_vg_lite_hal.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/libs/vg_lite_driver/lv_vg_lite_hal/vg_lite_os.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/lv_init.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/lv_init.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/lv_init.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/class/lv_cache_lru_ll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_ll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_ll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/class/lv_cache_lru_rb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_rb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_lru_rb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/class/lv_cache_sc_da.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_sc_da.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/class/lv_cache_sc_da.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/instance/lv_image_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/instance/lv_image_header_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_header_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/instance/lv_image_header_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/lv_cache.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/cache/lv_cache_entry.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache_entry.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/cache/lv_cache_entry.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_anim.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_anim_timeline.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim_timeline.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_anim_timeline.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_area.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_area.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_area.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_array.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_array.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_array.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_async.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_async.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_async.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_bidi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_bidi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_bidi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_circle_buf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_circle_buf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_circle_buf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_color.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_color_op.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color_op.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_color_op.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_event.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_event.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_event.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_fs.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_fs.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_fs.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_grad.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_grad.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_grad.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_iter.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_iter.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_iter.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_ll.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_ll.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_ll.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_log.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_log.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_log.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_lru.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_lru.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_lru.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_math.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_math.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_math.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_palette.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_palette.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_palette.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_profiler_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_profiler_builtin_posix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin_posix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_profiler_builtin_posix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_rb.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_rb.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_rb.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_style_gen.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style_gen.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_style_gen.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_templ.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_templ.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_templ.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_text.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_text_ap.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text_ap.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_text_ap.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_timer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_timer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_timer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_tree.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_tree.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_tree.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/misc/lv_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/misc/lv_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_cmsis_rtos2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_cmsis_rtos2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_cmsis_rtos2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_freertos.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_freertos.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_freertos.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_linux.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_linux.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_linux.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_mqx.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_mqx.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_mqx.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_os.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_os_none.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os_none.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_os_none.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_pthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_pthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_pthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_sdl2.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_sdl2.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_sdl2.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/osal/lv_windows.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_windows.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/osal/lv_windows.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/file_explorer/lv_file_explorer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/file_explorer/lv_file_explorer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/file_explorer/lv_file_explorer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/font_manager/lv_font_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/font_manager/lv_font_manager_recycle.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager_recycle.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/font_manager/lv_font_manager_recycle.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/fragment/lv_fragment.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/fragment/lv_fragment_manager.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment_manager.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/fragment/lv_fragment_manager.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/gridnav/lv_gridnav.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/gridnav/lv_gridnav.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/gridnav/lv_gridnav.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/ime/lv_ime_pinyin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/ime/lv_ime_pinyin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/ime/lv_ime_pinyin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/imgfont/lv_imgfont.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/imgfont/lv_imgfont.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/imgfont/lv_imgfont.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/monkey/lv_monkey.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/monkey/lv_monkey.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/monkey/lv_monkey.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/observer/lv_observer.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/observer/lv_observer.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/observer/lv_observer.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/snapshot/lv_snapshot.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/snapshot/lv_snapshot.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/snapshot/lv_snapshot.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/sysmon/lv_sysmon.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/sysmon/lv_sysmon.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/sysmon/lv_sysmon.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/test/lv_test_display.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_display.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_display.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/test/lv_test_helpers.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_helpers.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_helpers.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/test/lv_test_indev.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/test/lv_test_indev_gesture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev_gesture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_indev_gesture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/test/lv_test_screenshot_compare.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_screenshot_compare.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/test/lv_test_screenshot_compare.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/translation/lv_translation.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/translation/lv_translation.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/translation/lv_translation.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/vg_lite_tvg/vg_lite_matrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -Wunused-parameter -o CMakeFiles/lvgl.dir/src/others/vg_lite_tvg/vg_lite_tvg.cpp.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_base_types.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_base_types.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_base_types.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_component.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_component.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_component.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_load.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_load.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_load.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_style.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_style.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_style.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_test.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_test.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_test.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_translation.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_translation.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_translation.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_update.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_update.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_update.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_utils.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_utils.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_utils.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/lv_xml_widget.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_widget.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/lv_xml_widget.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_arc_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_arc_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_arc_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_bar_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_bar_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_bar_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_button_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_button_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_button_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_buttonmatrix_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_calendar_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_calendar_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_calendar_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_canvas_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_canvas_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_canvas_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_chart_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_chart_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_chart_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_checkbox_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_checkbox_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_checkbox_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_dropdown_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_dropdown_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_dropdown_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_image_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_image_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_image_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_keyboard_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_keyboard_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_keyboard_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_label_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_label_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_label_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_obj_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_obj_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_obj_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_qrcode_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_qrcode_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_qrcode_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_roller_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_roller_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_roller_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_scale_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_scale_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_scale_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_slider_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_slider_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_slider_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_spangroup_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spangroup_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spangroup_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_spinbox_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spinbox_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_spinbox_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_switch_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_switch_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_switch_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_table_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_table_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_table_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_tabview_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_textarea_parser.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_textarea_parser.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/others/xml/parsers/lv_xml_textarea_parser.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_mem_core_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_mem_core_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_mem_core_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_sprintf_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_sprintf_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_sprintf_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_string_builtin.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_string_builtin.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_string_builtin.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_tlsf.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_tlsf.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/builtin/lv_tlsf.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/clib/lv_mem_core_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_mem_core_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_mem_core_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/clib/lv_sprintf_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_sprintf_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_sprintf_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/clib/lv_string_clib.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_string_clib.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/clib/lv_string_clib.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/lv_mem.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/lv_mem.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/lv_mem.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/micropython/lv_mem_core_micropython.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/micropython/lv_mem_core_micropython.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/micropython/lv_mem_core_micropython.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_mem_core_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_sprintf_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_string_rtthread.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_string_rtthread.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/rtthread/lv_string_rtthread.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/stdlib/uefi/lv_mem_core_uefi.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/uefi/lv_mem_core_uefi.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/stdlib/uefi/lv_mem_core_uefi.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/themes/default/lv_theme_default.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/default/lv_theme_default.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/default/lv_theme_default.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/themes/lv_theme.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/lv_theme.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/lv_theme.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/themes/mono/lv_theme_mono.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/mono/lv_theme_mono.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/mono/lv_theme_mono.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/themes/simple/lv_theme_simple.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/simple/lv_theme_simple.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/themes/simple/lv_theme_simple.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/tick/lv_tick.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/tick/lv_tick.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/tick/lv_tick.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/3dtexture/lv_3dtexture.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/3dtexture/lv_3dtexture.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/3dtexture/lv_3dtexture.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/animimage/lv_animimage.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/animimage/lv_animimage.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/animimage/lv_animimage.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/arc/lv_arc.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arc/lv_arc.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arc/lv_arc.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/arclabel/lv_arclabel.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arclabel/lv_arclabel.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/arclabel/lv_arclabel.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/bar/lv_bar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/bar/lv_bar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/bar/lv_bar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/button/lv_button.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/button/lv_button.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/button/lv_button.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/buttonmatrix/lv_buttonmatrix.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_chinese.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_chinese.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_chinese.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_header_arrow.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_arrow.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_arrow.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_header_dropdown.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/canvas/lv_canvas.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/canvas/lv_canvas.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/canvas/lv_canvas.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/chart/lv_chart.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/chart/lv_chart.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/chart/lv_chart.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/checkbox/lv_checkbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/checkbox/lv_checkbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/checkbox/lv_checkbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/dropdown/lv_dropdown.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/dropdown/lv_dropdown.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/dropdown/lv_dropdown.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/image/lv_image.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/image/lv_image.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/image/lv_image.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/imagebutton/lv_imagebutton.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/imagebutton/lv_imagebutton.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/imagebutton/lv_imagebutton.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/keyboard/lv_keyboard.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/keyboard/lv_keyboard.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/keyboard/lv_keyboard.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/label/lv_label.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/label/lv_label.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/label/lv_label.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/led/lv_led.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/led/lv_led.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/led/lv_led.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/line/lv_line.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/line/lv_line.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/line/lv_line.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/list/lv_list.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/list/lv_list.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/list/lv_list.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/lottie/lv_lottie.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/lottie/lv_lottie.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/lottie/lv_lottie.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/menu/lv_menu.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/menu/lv_menu.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/menu/lv_menu.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/msgbox/lv_msgbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/msgbox/lv_msgbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/msgbox/lv_msgbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/objx_templ/lv_objx_templ.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/objx_templ/lv_objx_templ.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/objx_templ/lv_objx_templ.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_animimage_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_animimage_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_animimage_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_dropdown_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_dropdown_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_dropdown_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_image_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_image_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_image_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_keyboard_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_keyboard_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_keyboard_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_label_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_label_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_label_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_obj_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_obj_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_obj_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_roller_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_roller_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_roller_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_slider_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_slider_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_slider_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_style_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_style_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_style_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/property/lv_textarea_properties.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_textarea_properties.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/property/lv_textarea_properties.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/roller/lv_roller.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/roller/lv_roller.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/roller/lv_roller.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/scale/lv_scale.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/scale/lv_scale.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/scale/lv_scale.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/slider/lv_slider.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/slider/lv_slider.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/slider/lv_slider.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/span/lv_span.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/span/lv_span.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/span/lv_span.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/spinbox/lv_spinbox.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinbox/lv_spinbox.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinbox/lv_spinbox.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/spinner/lv_spinner.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinner/lv_spinner.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/spinner/lv_spinner.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/switch/lv_switch.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/switch/lv_switch.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/switch/lv_switch.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/table/lv_table.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/table/lv_table.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/table/lv_table.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/tabview/lv_tabview.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tabview/lv_tabview.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tabview/lv_tabview.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/textarea/lv_textarea.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/textarea/lv_textarea.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/textarea/lv_textarea.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/tileview/lv_tileview.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tileview/lv_tileview.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/tileview/lv_tileview.c" +}, +{ + "directory": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl", + "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_KCONFIG_IGNORE -DLV_LVGL_H_INCLUDE_SIMPLE -DPROJECT_PLATFORM_LINUX -isystem /home/marc/rgb_lcd -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/examples -isystem /home/marc/rgb_lcd/managed_components/lvgl__lvgl/demos -o CMakeFiles/lvgl.dir/src/widgets/win/lv_win.c.o -c /home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/win/lv_win.c", + "file": "/home/marc/rgb_lcd/managed_components/lvgl__lvgl/src/widgets/win/lv_win.c" +} +] \ No newline at end of file diff --git a/components/domotic_display/CMakeLists.txt b/components/domotic_display/CMakeLists.txt index 7a3c427..4b45e4c 100644 --- a/components/domotic_display/CMakeLists.txt +++ b/components/domotic_display/CMakeLists.txt @@ -8,7 +8,7 @@ make_font(24) idf_component_register(SRC_DIRS . fonts INCLUDE_DIRS "include" - REQUIRES bsp_extra esp32_p4_function_ev_board meteofrance eventsManager) + REQUIRES meteofrance eventsManager lvgl) if(${IDF_TARGET} STREQUAL "esp32p4") diff --git a/components/domotic_display/ihm.c b/components/domotic_display/ihm.c index 13381bf..c7ba195 100644 --- a/components/domotic_display/ihm.c +++ b/components/domotic_display/ihm.c @@ -1,13 +1,9 @@ -#include "bsp/display.h" -#include "bsp_board_extra.h" #include "lv_theme_domotic.h" -#include "esp_lvgl_port.h" #include "ihm.h" #include "misc/lv_types.h" #include "esp_log.h" #include "string.h" #include "meteofrance.h" -#include "bsp/esp-bsp.h" #include "cJSON.h" #include "eventsManager.h" @@ -45,6 +41,12 @@ static lv_subject_t wifiStatus; LV_IMAGE_DECLARE(wifi_ok); LV_IMAGE_DECLARE(wifi_ko); +int bsp_display_lock(int arg){ + return 1; +} +void bsp_display_unlock(){ + +} static void wifiStatus_obs_cb(lv_observer_t * observer, lv_subject_t * subject) { @@ -136,7 +138,7 @@ void drawIhm(void *xIHMEventQueueParam) { break; case IHM_EVT_OTA_PROGRESS: - setOTAProgress((int)xReceivedEvent->pvData); + //setOTAProgress((int)xReceivedEvent->pvData); break; case IHM_EVT_HUMID_TEMP: @@ -234,9 +236,10 @@ static void event_handler(lv_event_t *e) void init_display(){ - lvgl_port_cfg_t lvgl_cfg = ESP_LVGL_PORT_INIT_CONFIG(); - lvgl_cfg.task_priority=15; - bsp_display_cfg_t cfg = { + /* + lvgl_port_cfg_t lvgl_cfg = ESP_LVGL_PORT_INIT_CONFIG(); + lvgl_cfg.task_priority=15; + bsp_display_cfg_t cfg = { .lvgl_port_cfg = lvgl_cfg, .buffer_size = 1024*600,//BSP_LCD_DRAW_BUFF_SIZE, .double_buffer = 1, @@ -252,7 +255,8 @@ void init_display(){ bsp_display_backlight_on(); bsp_display_brightness_set(50); - mainState.display_init=true; + */ + mainState.display_init=true; } lv_obj_t * otaStatus; @@ -422,7 +426,7 @@ void meteo_obs_cb(lv_observer_t *observer, lv_subject_t *subject) ESP_LOGI(TAG, "On passe dans le callback de chgt de statut meteo; %li", lv_subject_get_int(subject)); if (display_lock("meteo_obs_cb")) { - lv_obj_t *meteoSt = observer->target; + lv_obj_t *meteoSt = lv_observer_get_target(observer); switch (lv_subject_get_int(subject)) { case 0: @@ -455,7 +459,7 @@ static void weatherdata_obs_cb(lv_observer_t *observer, lv_subject_t *subject) // char buff[40] = {}; // sprintf(buff,"%s %.1f %.1f", data->previsions.desc, data->previsions.min, data->previsions.max); if(data->isValid){ - lv_obj_t *parent = (lv_obj_t *)(observer->target); + lv_obj_t *parent = (lv_obj_t *)(lv_observer_get_target(observer)); lv_obj_t *datefld = lv_obj_get_child(parent, 0); lv_obj_t *desc_icon = lv_obj_get_child(parent, 1); lv_obj_t *temps = lv_obj_get_child(parent, 2); @@ -484,7 +488,7 @@ static void weatherdataH_obs_cb(lv_observer_t *observer, lv_subject_t *subject) sprintf(buff,"%.1f", data->previsions.value); ESP_LOGV(TAG, "On a recu [%s]", buff); - lv_obj_t *parent = (lv_obj_t *)(observer->target); + lv_obj_t *parent = (lv_obj_t *)(lv_observer_get_target(observer)); lv_obj_t *datefld = lv_obj_get_child(parent, 0); lv_obj_t *temp_desc_icon = lv_obj_get_child(parent, 1); showMeteoIcon(data->previsions.icon, temp_desc_icon, 1); @@ -690,7 +694,7 @@ void btnRestart_cb(lv_event_t * e){ lv_event_code_t code = lv_event_get_code(e); if(code == LV_EVENT_CLICKED) { - esp_restart(); + //esp_restart(); } } @@ -713,7 +717,7 @@ static void log_event_handler(lv_event_t * e) static lv_style_t style_lbvValue; static lv_style_t style_btn; - +#define MIN(a,b) ((a) < (b) ? (a) : (b)) static void draw_event_cb(lv_event_t * e) { lv_draw_task_t * draw_task = lv_event_get_draw_task(e); @@ -1023,6 +1027,7 @@ void draw_tabVolets(lv_obj_t* parent) /* ------------------------------------------------------------ */ /* Dessin IHM */ /* ------------------------------------------------------------ */ + void draw_ihm() { lv_subject_init_string(&tempExtSubj, tempExtStr, NULL, 6, "--"); diff --git a/components/domotic_display/include/ihm.h b/components/domotic_display/include/ihm.h index a7ae952..49552af 100644 --- a/components/domotic_display/include/ihm.h +++ b/components/domotic_display/include/ihm.h @@ -1,7 +1,6 @@ #pragma once #include "meteofrance.h" -#include "esp_lvgl_port.h" -#include "bsp/esp-bsp.h" +#include "lvgl.h" void app_main_display(); void app_ota_display(); diff --git a/components/domotic_display/include/lv_theme_domotic.h b/components/domotic_display/include/lv_theme_domotic.h index cc2d387..f9f6794 100644 --- a/components/domotic_display/include/lv_theme_domotic.h +++ b/components/domotic_display/include/lv_theme_domotic.h @@ -13,7 +13,7 @@ extern "C" { /********************* * INCLUDES *********************/ -#include "esp_lvgl_port.h" +#include "lvgl.h" /********************* * DEFINES diff --git a/components/domotic_display/lv_theme_domotic.c b/components/domotic_display/lv_theme_domotic.c index 8e6367f..5e5292b 100644 --- a/components/domotic_display/lv_theme_domotic.c +++ b/components/domotic_display/lv_theme_domotic.c @@ -9,7 +9,6 @@ *********************/ #if LV_USE_THEME_SIMPLE_DOMOTIC #include "lv_theme_domotic.h" -#include "esp_lvgl_port.h" /********************* * DEFINES *********************/ diff --git a/components/domotic_display/test_host/CMakeLists.txt b/components/domotic_display/test_host/CMakeLists.txt new file mode 100644 index 0000000..8b72618 --- /dev/null +++ b/components/domotic_display/test_host/CMakeLists.txt @@ -0,0 +1,29 @@ +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +set(COMPONENTS main) +# This test app doesn't require FreeRTOS, using mock instead +list(APPEND EXTRA_COMPONENT_DIRS + "$ENV{IDF_PATH}/tools/mocks/freertos/" + "$ENV{IDF_PATH}/tools/mocks/esp_timer" + ../../meteofrance + ../../stateManagement + ../../eventsManager + ) + +idf_build_set_property(COMPILE_DEFINITIONS "NO_DEBUG_STORAGE" APPEND) +project(nvs_host_test) + +add_custom_command( + OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/coverage_report/index.html" + WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" + COMMAND gcovr --root $ENV{IDF_PATH}/components/nvs_flash --html-details + --exclude ${CMAKE_CURRENT_SOURCE_DIR}/managed_components/* + -o ${CMAKE_CURRENT_BINARY_DIR}/coverage_report/index.html ${CMAKE_CURRENT_BINARY_DIR} + COMMENT "Generate coverage report" + ) + +add_custom_target(coverage + WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" + DEPENDS "coverage_report/index.html" + ) \ No newline at end of file diff --git a/components/domotic_display/test_host/dependencies.lock b/components/domotic_display/test_host/dependencies.lock new file mode 100644 index 0000000..11b68ff --- /dev/null +++ b/components/domotic_display/test_host/dependencies.lock @@ -0,0 +1,17 @@ +dependencies: + idf: + source: + type: idf + version: 5.5.1 + lvgl/lvgl: + component_hash: 17e68bfd21f0edf4c3ee838e2273da840bf3930e5dbc3bfa6c1190c3aed41f9f + dependencies: [] + source: + registry_url: https://components.espressif.com/ + type: service + version: 9.4.0 +direct_dependencies: +- lvgl/lvgl +manifest_hash: b69f67d8253596e504fba179d3e69969cb4958216d37d471849a023add797535 +target: linux +version: 2.0.0 diff --git a/components/domotic_display/test_host/idf_component.yml b/components/domotic_display/test_host/idf_component.yml new file mode 100644 index 0000000..572695f --- /dev/null +++ b/components/domotic_display/test_host/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + lvgl/lvgl: + version: 9.4.0 + #espressif/esp32_p4_function_ev_board: + # version: "4.1.*" \ No newline at end of file diff --git a/components/domotic_display/test_host/main/CMakeLists.txt b/components/domotic_display/test_host/main/CMakeLists.txt new file mode 100644 index 0000000..ef0fe21 --- /dev/null +++ b/components/domotic_display/test_host/main/CMakeLists.txt @@ -0,0 +1,27 @@ +set(LV_BUILD_USE_KCONFIG ON) +idf_component_register(SRCS "test_ihm.c" "../../ihm.c" "driver_backends.c" "sdl.c" "../../lv_theme_domotic.c" + INCLUDE_DIRS + "../../include" + WHOLE_ARCHIVE + REQUIRES lvgl meteofrance) + + message("Including SDL2 support") + find_package(PkgConfig REQUIRED) + pkg_check_modules(SDL2 REQUIRED sdl2) + pkg_check_modules(SDL2_IMAGE REQUIRED SDL2_image) + + list(APPEND PKG_CONFIG_LIB ${SDL2_LIBRARIES} ${SDL2_IMAGE_LIBRARIES}) + list(APPEND PKG_CONFIG_INC ${SDL2_INCLUDE_DIRS} ${SDL2_IMAGE_INCLUDE_DIRS}) + +target_compile_options(${COMPONENT_LIB} PUBLIC --coverage) +target_link_libraries(${COMPONENT_LIB} PUBLIC ${PKG_CONFIG_LIB} --coverage) +target_include_directories(${COMPONENT_LIB} PRIVATE ${CMAKE_SOURCE_DIR}/mock ${PKG_CONFIG_INC}) + + +if(CMAKE_C_COMPILER_ID MATCHES "Clang") + target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu++20) +endif() + +# Currently 'main' for IDF_TARGET=linux is defined in freertos component. +# Since we are using a freertos mock here, need to let Catch2 provide 'main'. +#target_link_libraries(${COMPONENT_LIB} PRIVATE Catch2WithMain) \ No newline at end of file diff --git a/components/domotic_display/test_host/main/backends.h b/components/domotic_display/test_host/main/backends.h new file mode 100644 index 0000000..4121d50 --- /dev/null +++ b/components/domotic_display/test_host/main/backends.h @@ -0,0 +1,97 @@ +/** + * @file backends.h + * + * Interface for abstration layer of a device backend + * + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + * + */ +#ifndef BACKENDS_H +#define BACKENDS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ +/* Prototype of the display initialization functions */ +typedef lv_display_t *(*display_init_t)(void); + +/* Prototype of the run loop */ +typedef void (*run_loop_t)(void); + +/* Represents a display driver handle */ +typedef struct { + display_init_t init_display; /* The display creation/initialization function */ + run_loop_t run_loop; /* The run loop of the driver handle */ + lv_display_t *display; /* The LVGL display that was created */ +} display_backend_t; + +/* Prototype for the initialization of an indev driver backend */ +typedef lv_indev_t *(*indev_init_t)(lv_display_t *display); + +/* Represents an indev driver backend */ +typedef struct { + indev_init_t init_indev; +} indev_backend_t; + +/* Regroup all different types of driver backend */ +typedef union { + display_backend_t *display; + indev_backend_t *indev; +} backend_handle_t; + +/* Define each type of driver backend */ +typedef enum { + BACKEND_DISPLAY, + BACKEND_INDEV +} backend_type_t; + +/* Driver backend descriptor */ +typedef struct { + backend_handle_t *handle; + char *name; + backend_type_t type; +} backend_t; + +/* Prototype used to register a backend */ +typedef int (*backend_init_t)(backend_t *); + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/* Graphics backends */ +int backend_init_fbdev(backend_t *backend); +int backend_init_drm(backend_t *backend); +int backend_init_sdl(backend_t *backend); +int backend_init_glfw3(backend_t *backend); +int backend_init_wayland(backend_t *backend); +int backend_init_x11(backend_t *backend); + +/* Input device driver backends */ +int backend_init_evdev(backend_t *backend); + +/********************** + * MACROS + **********************/ + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*BACKEND_H*/ + + diff --git a/components/domotic_display/test_host/main/driver_backends.c b/components/domotic_display/test_host/main/driver_backends.c new file mode 100644 index 0000000..4c835b7 --- /dev/null +++ b/components/domotic_display/test_host/main/driver_backends.c @@ -0,0 +1,281 @@ +/** + * @file driver_backends.c + * + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + */ + +/********************* + * INCLUDES + *********************/ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "lvgl.h" + +#include "simulator_util.h" +#include "simulator_settings.h" +#include "driver_backends.h" + +#include "backends.h" + +/********************* + * DEFINES + *********************/ + +/* Catch configuration errors at compile time - checks if no backend was selected */ +#if LV_USE_SDL == 0 && \ + LV_USE_WAYLAND == 0 && \ + LV_USE_LINUX_DRM == 0 && \ + LV_USE_GLFW == 0 && \ + LV_USE_X11 == 0 && \ + LV_USE_LINUX_FBDEV == 0 + +#endif + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/* The default backend is the one that will end up at index 0 + * To add support for a new driver backend add the declaration + * and append an entry to the available_backends array + */ +backend_init_t available_backends[] = { + +#if LV_USE_LINUX_FBDEV + backend_init_fbdev, +#endif + +#if LV_USE_LINUX_DRM + backend_init_drm, +#endif + + backend_init_sdl, + +#if LV_USE_WAYLAND + backend_init_wayland, +#endif + +#if LV_USE_X11 + backend_init_x11, +#endif + +#if LV_USE_GLFW + backend_init_glfw3, +#endif + +#if LV_USE_EVDEV + backend_init_evdev, +#endif + NULL /* Sentinel */ +}; + +/* Contains the backend descriptors */ +static backend_t *backends[sizeof(available_backends) / sizeof(available_backends[0])]; + +/* Set once the user selects a backend - or it is set to the default backend */ +static backend_t *sel_display_backend = NULL; + +/********************** + * GLOBAL VARIABLES + **********************/ +/* Contains global simulator settings common to each backend */ +simulator_settings_t settings; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +void driver_backends_register(void) +{ + int i; + backend_init_t init_backend; + backend_t *b; + + i = 0; + if (backends[i] != NULL) { + /* backends are already registered - leave */ + return; + } + + while ((init_backend = available_backends[i]) != NULL) { + + b = malloc(sizeof(backend_t)); + LV_ASSERT_NULL(b); + + b->handle = malloc(sizeof(backend_handle_t)); + + init_backend = available_backends[i]; + LV_ASSERT_NULL(init_backend); + + init_backend(b); + backends[i] = b; + i++; + } +} + +int driver_backends_init_backend(char *backend_name) +{ + backend_t *b; + int i; + display_backend_t *dispb; + indev_backend_t *indevb; + + if (backends[0] == NULL) { + LV_LOG_ERROR("Please call driver_backends_register first"); + return -1; + } + + if (backend_name == NULL) { + + /* + * Set default display backend - which is the first defined + * item in available_backends array + */ + LV_ASSERT_NULL(backends[0]); + b = backends[0]; + + if (b->type != BACKEND_DISPLAY) { + LV_LOG_ERROR("The default backend: %s is not a display driver backend", b->name); + return -1; + } + + backend_name = backends[0]->name; + } + + i = 0; + while ((b = backends[i]) != NULL) { + + /* Check if such a backend exists */ + if (strcmp(b->name, backend_name) == 0) { + + if (b->type == BACKEND_DISPLAY) { + /* Initialize the display */ + + dispb = b->handle->display; + LV_ASSERT_NULL(dispb->init_display); + dispb->display = dispb->init_display(); + + if (dispb->display == NULL) { + LV_LOG_ERROR("Failed to init display with %s backend", b->name); + return -1; + } + + sel_display_backend = b; + LV_LOG_INFO("Initialized %s display backend", b->name); + break; + + } else if (b->type == BACKEND_INDEV) { + /* Initialize input device */ + + indevb = b->handle->indev; + LV_ASSERT_NULL(indevb->init_indev); + + /* The display driver backend - has to be initialized first */ + if (sel_display_backend == NULL) { + LV_LOG_ERROR( + "Failed to init indev backend: %s - display needs to be initialized", + b->name); + return -1; + } + + LV_LOG_INFO("Initialized %s indev backend", b->name); + + dispb = sel_display_backend->handle->display; + + LV_ASSERT_NULL(dispb->display); + indevb->init_indev(dispb->display); + break; + } + } + i++; + } + + return 0; +} + +int driver_backends_print_supported(void) +{ + int i; + backend_t *b; + + i = 0; + if (backends[i] == NULL) { + LV_LOG_ERROR("Please call driver_backends_register first"); + return -1; + } + + b = backends[i]; + + fprintf(stdout, "Default backend: %s\n", b->name); + fprintf(stdout, "Supported backends: "); + + while ((b = backends[i++]) != NULL) { + fprintf(stdout, "%s ", b->name); + } + + fprintf(stdout, "\n"); + return 0; + +} + +int driver_backends_is_supported(char *backend_name) +{ + char c; + backend_t *b; + char *name = backend_name; + int i = 0; + + while ((c = *backend_name) != '\0') { + *backend_name = toupper(c); + backend_name++; + } + + while ((b = backends[i++]) != NULL) { + if (strcmp(b->name, name) == 0) { + return 1; + } + } + + return 0; +} + +void driver_backends_run_loop(void) +{ + display_backend_t *dispb; + + if (sel_display_backend != NULL && sel_display_backend->handle->display != NULL) { + + dispb = sel_display_backend->handle->display; + dispb->run_loop(); + + } else { + LV_LOG_ERROR("No backend has been selected - initialize the backend first"); + } +} + +/********************** + * STATIC FUNCTIONS + **********************/ + diff --git a/components/domotic_display/test_host/main/driver_backends.h b/components/domotic_display/test_host/main/driver_backends.h new file mode 100644 index 0000000..dde1cd9 --- /dev/null +++ b/components/domotic_display/test_host/main/driver_backends.h @@ -0,0 +1,93 @@ +/** + * @file driver_backends.h + * + * provides an abstration to support multiple graphical + * driver backends at the same time whitout recompiling everything + * each time + * + * E.g: this means LVGL can be compiled with both SDL or X11 + * + * - see backend.h for the details on the interface. + * - see the files in display_backends directory for examples + * on how to use each driver + * + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + */ + +#ifndef DRIVER_BACKENDS_H +#define DRIVER_BACKENDS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/* + * Register all available backends + * This function must be called first before any other + * function + */ +void driver_backends_register(void); + +/** + * Initialize the specified backend + * @description in case of a display driver backend + * - create the lv_display, in case of a indev driver backend + * create an input device + * + * @param backend_name the name of the backend to initialize FBDEV,DRM etc + * @return 0 on success, -1 on error + */ +int driver_backends_init_backend(char *backend_name); + +/** + * @brief Checks if a backend exists and is supported + * @param backend_name the backend name to check + * @return 1 is supported, 0 not supported or invalid name + */ +int driver_backends_is_supported(char *backend_name); + +/** + * @brief Print supported backends + * @description Prints a list of supported backends + * + * @return -1 if an error occurred, 0 on success + */ +int driver_backends_print_supported(void); + +/** + * @brief Enter the run loop + * @description enter the run loop of the selected backend + */ +void driver_backends_run_loop(void); + +/********************** + * MACROS + **********************/ + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*DRIVER_BACKENDS_H*/ + + + + diff --git a/components/domotic_display/test_host/main/idf_component.yml b/components/domotic_display/test_host/main/idf_component.yml new file mode 100644 index 0000000..572695f --- /dev/null +++ b/components/domotic_display/test_host/main/idf_component.yml @@ -0,0 +1,5 @@ +dependencies: + lvgl/lvgl: + version: 9.4.0 + #espressif/esp32_p4_function_ev_board: + # version: "4.1.*" \ No newline at end of file diff --git a/components/domotic_display/test_host/main/sdl.c b/components/domotic_display/test_host/main/sdl.c new file mode 100644 index 0000000..6738682 --- /dev/null +++ b/components/domotic_display/test_host/main/sdl.c @@ -0,0 +1,115 @@ +/** + * @file sdl.c + * + * The backend for the SDL simulator + * + * Based on the original file from the repository + * + * - Move to a separate file + * 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + * + */ + +/********************* + * INCLUDES + *********************/ +#include +#include +#include + +#include "lvgl.h" +#include "simulator_util.h" +#include "simulator_settings.h" +#include "backends.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * EXTERNAL VARIABLES + **********************/ +extern simulator_settings_t settings; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void run_loop_sdl(void); +static lv_display_t *init_sdl(void); + +/********************** + * STATIC VARIABLES + **********************/ + +static char *backend_name = "SDL"; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Register the backend + * @param backend the backend descriptor + * @description configures the descriptor + */ +int backend_init_sdl(backend_t *backend) +{ + LV_ASSERT_NULL(backend); + + backend->handle->display = malloc(sizeof(display_backend_t)); + LV_ASSERT_NULL(backend->handle->display); + + backend->handle->display->init_display = init_sdl; + backend->handle->display->run_loop = run_loop_sdl; + backend->name = backend_name; + backend->type = BACKEND_DISPLAY; + + return 0; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Initialize the SDL display driver + * + * @return the LVGL display + */ +static lv_display_t *init_sdl(void) +{ + lv_display_t *disp; + + disp = lv_sdl_window_create(settings.window_width, settings.window_height); + + if (disp == NULL) { + return NULL; + } + + return disp; +} + +/** + * The run loop of the SDL driver + */ +static void run_loop_sdl(void) +{ + uint32_t idle_time; + + /* Handle LVGL tasks */ + while (true) { + /* Returns the time to the next timer execution */ + idle_time = lv_timer_handler(); + usleep(idle_time * 1000); + } +} \ No newline at end of file diff --git a/components/domotic_display/test_host/main/simulator_settings.h b/components/domotic_display/test_host/main/simulator_settings.h new file mode 100644 index 0000000..07c0597 --- /dev/null +++ b/components/domotic_display/test_host/main/simulator_settings.h @@ -0,0 +1,53 @@ +/** + * @file simulator_settings.h + * + * global simulator settings + * + * The simulator settings is a global variable defined in + * simulator_settings.c + * + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + * + */ + +#ifndef SIMULATOR_SETTINGS_H +#define SIMULATOR_SETTINGS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +typedef struct { + uint32_t window_width; + uint32_t window_height; + bool maximize; + bool fullscreen; +} simulator_settings_t; + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*SIMULATOR_SETTINGS_H*/ diff --git a/components/domotic_display/test_host/main/simulator_util.c b/components/domotic_display/test_host/main/simulator_util.c new file mode 100644 index 0000000..68bf75c --- /dev/null +++ b/components/domotic_display/test_host/main/simulator_util.c @@ -0,0 +1,66 @@ +/** + * @file simulator_util.c + * + * Utility functions + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Based on the original file from the repo + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + * + */ + +/********************* + * INCLUDES + *********************/ + +#include +#include +#include + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +const char *getenv_default(const char *name, const char *default_val) +{ + const char* value = getenv(name); + return value ? value : default_val; +} + + +void die(const char *msg, ...) +{ + va_list args; + + va_start(args, msg); + vfprintf(stderr, msg, args); + va_end(args); + + exit(EXIT_FAILURE); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ diff --git a/components/domotic_display/test_host/main/simulator_util.h b/components/domotic_display/test_host/main/simulator_util.h new file mode 100644 index 0000000..1430f21 --- /dev/null +++ b/components/domotic_display/test_host/main/simulator_util.h @@ -0,0 +1,62 @@ +/** + * @file simulator_util.h + * + * simulator_util.h - Header file for the utility functions + * used by the simulator + * + * Copyright (c) 2025 EDGEMTech Ltd. + * + * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) + */ + +#ifndef SIMULATOR_UTIL_H +#define SIMULATOR_UTIL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include + + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * @description Wrapper around getenv(3), allowing to set a default value + * @param name The name of the environment variable + * @param dflt The default value to set if the variable is not present. + * @return default value or value of environment variable. + */ +const char *getenv_default(const char *name, const char *default_val); + + +/** + * @description Centralized exit point, called due to an error + * @param msg The message to display on stderr before killing the program + * @param ... Values for the format string. + */ +void die(const char *msg, ...); + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*SIMULATOR_UTIL_H*/ diff --git a/components/domotic_display/test_host/main/test_ihm.c b/components/domotic_display/test_host/main/test_ihm.c new file mode 100644 index 0000000..6d7837f --- /dev/null +++ b/components/domotic_display/test_host/main/test_ihm.c @@ -0,0 +1,137 @@ + +#define LV_USE_SDL 1 + +#include +#include "esp_wifi.h" +#include "ihm.h" +#include "mqtt_client.h" +#include "backends.h" +#include +#include "driver_backends.h" +#include "simulator_util.h" +#include "simulator_settings.h" + +esp_mqtt_client_handle_t client; + +/* contains the name of the selected backend if user + * has specified one on the command line */ +static char *selected_backend; + +/* Global simulator settings, defined in lv_linux_backend.c */ +extern simulator_settings_t settings; + +void die(const char *msg, ...) +{ + va_list args; + + va_start(args, msg); + vfprintf(stderr, msg, args); + va_end(args); + + exit(EXIT_FAILURE); + +} + +/** + * @brief Print LVGL version + */ +static void print_lvgl_version(void) +{ + fprintf(stdout, "%d.%d.%d-%s\n", + LVGL_VERSION_MAJOR, + LVGL_VERSION_MINOR, + LVGL_VERSION_PATCH, + LVGL_VERSION_INFO); +} + +/** + * @brief Print usage information + */ +static void print_usage(void) +{ + fprintf(stdout, "\nlvglsim [-V] [-B] [-b backend_name] [-W window_width] [-H window_height]\n\n"); + fprintf(stdout, "-V print LVGL version\n"); + fprintf(stdout, "-B list supported backends\n"); +} + +/** + * @brief Configure simulator + * @description process arguments recieved by the program to select + * appropriate options + * @param argc the count of arguments in argv + * @param argv The arguments + */ +static void configure_simulator(int argc, char **argv) +{ + int opt = 0; + + selected_backend = NULL; + driver_backends_register(); + + const char *env_w = getenv("LV_SIM_WINDOW_WIDTH"); + const char *env_h = getenv("LV_SIM_WINDOW_HEIGHT"); + /* Default values */ + settings.window_width = atoi(env_w ? env_w : "1024"); + settings.window_height = atoi(env_h ? env_h : "600"); + + /* Parse the command-line options. */ + while ((opt = getopt (argc, argv, "b:fmW:H:BVh")) != -1) { + switch (opt) { + case 'h': + print_usage(); + exit(EXIT_SUCCESS); + break; + case 'V': + print_lvgl_version(); + exit(EXIT_SUCCESS); + break; + case 'B': + driver_backends_print_supported(); + exit(EXIT_SUCCESS); + break; + case 'b': + if (driver_backends_is_supported(optarg) == 0) { + die("error no such backend: %s\n", optarg); + } + selected_backend = strdup(optarg); + break; + case 'W': + settings.window_width = atoi(optarg); + break; + case 'H': + settings.window_height = atoi(optarg); + break; + case ':': + print_usage(); + die("Option -%c requires an argument.\n", optopt); + break; + case '?': + print_usage(); + die("Unknown option -%c.\n", optopt); + } + } +} +int main(int argc, char const *argv[]) +{ + /* code */ + printf("hello\n"); + init_display(); + + /* Initialize LVGL. */ + lv_init(); + configure_simulator(argc, argv); + /* Initialize the configured backend */ + if (driver_backends_init_backend(selected_backend) == -1) { + die("Failed to initialize display backend"); + } + lv_sdl_mouse_create(); + lv_sdl_keyboard_create(); + lv_sdl_mousewheel_create(); + lv_sdl_mousewheel_create(); + draw_ihm(); + /* Enter the run loop of the selected backend */ + driver_backends_run_loop(); + + return 0; +} + diff --git a/components/domotic_display/test_host/mock/esp_wifi.h b/components/domotic_display/test_host/mock/esp_wifi.h new file mode 100644 index 0000000..177e7b3 --- /dev/null +++ b/components/domotic_display/test_host/mock/esp_wifi.h @@ -0,0 +1,29 @@ +#define BIT0 0x00000001 +#define WIFI_CONNECTED_BIT BIT0 + +typedef enum { + WIFI_EVENT_WIFI_READY = 0, /**< WiFi ready */ + WIFI_EVENT_SCAN_DONE, /**< finish scanning AP */ + WIFI_EVENT_STA_START, /**< station start */ + WIFI_EVENT_STA_STOP, /**< station stop */ + WIFI_EVENT_STA_CONNECTED, /**< station connected to AP */ + WIFI_EVENT_STA_DISCONNECTED, /**< station disconnected from AP */ + WIFI_EVENT_STA_AUTHMODE_CHANGE, /**< the auth mode of AP connected by station changed */ + WIFI_EVENT_STA_GOT_IP, /**< station got IP from connected AP */ + WIFI_EVENT_STA_WPS_ER_SUCCESS, /**< station wps succeeds in enrollee mode */ + WIFI_EVENT_STA_WPS_ER_FAILED, /**< station wps fails in enrollee mode */ + WIFI_EVENT_STA_WPS_ER_TIMEOUT, /**< station wps timeout in enrollee mode */ + WIFI_EVENT_STA_WPS_ER_PIN, /**< station wps pin code in enrollee mode */ + WIFI_EVENT_AP_START, /**< soft-AP start */ + WIFI_EVENT_AP_STOP, /**< soft-AP stop */ + WIFI_EVENT_AP_STACONNECTED, /**< a station connected to soft-AP */ + WIFI_EVENT_AP_STADISCONNECTED, /**< a station disconnected from soft-AP */ + WIFI_EVENT_AP_PROBEREQRECVED, /**< Receive probe request packet in soft-AP interface */ + WIFI_EVENT_AP_STA_GOT_IP6, /**< station or ap interface v6IP addr is preferred */ + WIFI_EVENT_ETH_START, /**< ethernet start */ + WIFI_EVENT_ETH_STOP, /**< ethernet stop */ + WIFI_EVENT_ETH_CONNECTED, /**< ethernet phy link up */ + WIFI_EVENT_ETH_DISCONNECTED, /**< ethernet phy link down */ + WIFI_EVENT_ETH_GOT_IP, /**< ethernet got IP from connected AP */ + WIFI_EVENT_MAX +} wifi_event_id_t; diff --git a/components/domotic_display/test_host/sdkconfig b/components/domotic_display/test_host/sdkconfig new file mode 100644 index 0000000..f517b62 --- /dev/null +++ b/components/domotic_display/test_host/sdkconfig @@ -0,0 +1,1047 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration +# +CONFIG_SOC_EFUSE_SUPPORTED=y +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_CPU_CORES_NUM=1 +CONFIG_SOC_GPIO_IN_RANGE_MAX=65535 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=65535 +CONFIG_SOC_I2C_SUPPORT_SLAVE=y +CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y +CONFIG_SOC_EFUSE_HARD_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_USB_JTAG=y +CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y +CONFIG_SOC_SECURE_BOOT_V2_RSA=y +CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 +CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y +CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y +CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TOOLCHAIN="gcc" +CONFIG_IDF_TOOLCHAIN_GCC=y +CONFIG_IDF_TARGET="linux" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_LINUX=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0xFFFF + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_RAM=y +CONFIG_APP_BUILD_GENERATE_BINARIES=y +# CONFIG_APP_BUILD_TYPE_PURE_RAM_APP is not set +# CONFIG_APP_REPRODUCIBLE_BUILD is not set +# CONFIG_APP_NO_BLOBS is not set +# end of Build type + +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y +CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y + +# +# Boot ROM Behavior +# +CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y +# CONFIG_BOOT_ROM_LOG_ALWAYS_OFF is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_HIGH is not set +# CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set +# end of Boot ROM Behavior + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y +CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set +CONFIG_COMPILER_HIDE_PATHS_MACROS=y +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y +# CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set +# CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set +# CONFIG_COMPILER_DUMP_RTL_FILES is not set +CONFIG_COMPILER_RT_LIB_HOST=y +CONFIG_COMPILER_RT_LIB_NAME="" +# CONFIG_COMPILER_STATIC_ANALYZER is not set +# end of Compiler options + +# +# Component config +# + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set +# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set +# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# CONFIG_ESP_TLS_INSECURE is not set +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y +# end of ESP-TLS + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +# end of Common ESP-related + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set +# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set +CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 +# end of ESP HTTP client + +# +# Hardware Settings +# + +# +# Chip revision +# +CONFIG_ESP_REV_MIN_FULL=0 +CONFIG_ESP_REV_MAX_FULL=999 +CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=999 +# end of Chip revision + +# +# MAC Config +# +# CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set +# end of MAC Config + +# +# Sleep Config +# +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set +CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y +# CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set +# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set +CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=0 +# CONFIG_ESP_SLEEP_CACHE_SAFE_ASSERTION is not set +# CONFIG_ESP_SLEEP_DEBUG is not set +CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y +# end of Sleep Config + +# +# RTC Clock Config +# + +# +# Peripheral Control +# +# CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM is not set +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y +# end of Peripheral Control + +# +# Main XTAL Config +# +CONFIG_ESP_BRINGUP_BYPASS_CPU_CLK_SETTING=y +CONFIG_ESP_BRINGUP_BYPASS_RANDOM_SETTING=y +CONFIG_ESP_INTR_IN_IRAM=y +# end of Hardware Settings + +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + +# +# ESP System Settings +# +CONFIG_ESP_SYSTEM_IN_IRAM=y +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS=0 + +# +# Memory protection +# +# end of Memory protection + +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y +# CONFIG_ESP_MAIN_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_NONE is not set +CONFIG_ESP_CONSOLE_UART=y +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_TASK_WDT_EN=y +CONFIG_ESP_TASK_WDT_INIT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +# CONFIG_ESP_DEBUG_STUBS_ENABLE is not set +CONFIG_ESP_DEBUG_OCDAWARE=y +CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y +# end of ESP System Settings + +# +# IPC (Inter-Processor Call) +# +CONFIG_ESP_IPC_ENABLE=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_IPC_ISR_ENABLE=y +# end of IPC (Inter-Processor Call) + +# +# FreeRTOS +# + +# +# Kernel +# +CONFIG_FREERTOS_HZ=1000 +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 +# end of Kernel + +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_UNICORE=y +CONFIG_FREERTOS_NUMBER_OF_CORES=1 +# end of FreeRTOS + +# +# Hardware Abstraction Layer (HAL) and Low Level (LL) +# +CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y +# CONFIG_HAL_ASSERTION_DISABLE is not set +# CONFIG_HAL_ASSERTION_SILENT is not set +# CONFIG_HAL_ASSERTION_ENABLE is not set +CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 +# end of Hardware Abstraction Layer (HAL) and Low Level (LL) + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_USE_HOOKS is not set +# CONFIG_HEAP_TASK_TRACKING is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# CONFIG_HEAP_PLACE_FUNCTION_INTO_FLASH is not set +# end of Heap memory debugging + +# +# Log +# +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 + +# +# Log Level +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y +# CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 + +# +# Level Settings +# +# CONFIG_LOG_MASTER_LEVEL is not set +CONFIG_LOG_DYNAMIC_LEVEL_CONTROL=y +# CONFIG_LOG_TAG_LEVEL_IMPL_NONE is not set +# CONFIG_LOG_TAG_LEVEL_IMPL_LINKED_LIST is not set +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST=y +# CONFIG_LOG_TAG_LEVEL_CACHE_ARRAY is not set +CONFIG_LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP=y +CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 +# end of Level Settings +# end of Log Level + +# +# Format +# +# CONFIG_LOG_COLORS is not set +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y +# end of Log + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DEBUG is not set + +# +# mbedTLS v3.x related +# +# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set +# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set +# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set +# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set +CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set +CONFIG_MBEDTLS_PKCS7_C=y +# end of mbedTLS v3.x related + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_ROM_MD5=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y +CONFIG_MBEDTLS_SHA512_C=y +# CONFIG_MBEDTLS_SHA3_C is not set +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# CONFIG_MBEDTLS_NIST_KW_C is not set +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y +CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y +# CONFIG_MBEDTLS_DHM_C is not set +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +CONFIG_MBEDTLS_ERROR_STRINGS=y +CONFIG_MBEDTLS_FS_IO=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set +# end of mbedTLS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +# CONFIG_MQTT_PROTOCOL_5 is not set +CONFIG_MQTT_TRANSPORT_SSL=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y +# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set +# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set +# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set +# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +# end of ESP-MQTT Configurations + +# +# MMU Config +# +CONFIG_MMU_PAGE_SIZE_64KB=y +CONFIG_MMU_PAGE_MODE="64KB" +CONFIG_MMU_PAGE_SIZE=0x10000 +# end of MMU Config + +# +# Main Flash configuration +# + +# +# SPI Flash behavior when brownout +# +CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC=y +CONFIG_SPI_FLASH_BROWNOUT_RESET=y +# end of SPI Flash behavior when brownout + +# +# Optional and Experimental Features (READ DOCS FIRST) +# + +# +# Features here require specific hardware (READ DOCS FIRST!) +# +CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 +# CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y +# end of Optional and Experimental Features (READ DOCS FIRST) +# end of Main Flash configuration + +# +# SPI Flash driver +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED=y +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 +CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 +# CONFIG_SPI_FLASH_SIZE_OVERRIDE is not set +# CONFIG_SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED is not set +# CONFIG_SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST is not set + +# +# Auto-detect flash chips +# +# CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_GD_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP is not set +# CONFIG_SPI_FLASH_SUPPORT_TH_CHIP is not set +# end of Auto-detect flash chips + +CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y +# end of SPI Flash driver + +# +# TCP Transport +# + +# +# Websocket +# +CONFIG_WS_TRANSPORT=y +CONFIG_WS_BUFFER_SIZE=1024 +# CONFIG_WS_DYNAMIC_BUFFER is not set +# end of Websocket +# end of TCP Transport + +# +# Unity unit testing library +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_64BIT is not set +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# CONFIG_UNITY_TEST_ORDER_BY_FILE_PATH_AND_LINE is not set +# end of Unity unit testing library + +# +# LVGL configuration +# +# CONFIG_LV_CONF_SKIP is not set +# CONFIG_LV_CONF_MINIMAL is not set + +# +# Color Settings +# +# CONFIG_LV_COLOR_DEPTH_32 is not set +# CONFIG_LV_COLOR_DEPTH_24 is not set +CONFIG_LV_COLOR_DEPTH_16=y +# CONFIG_LV_COLOR_DEPTH_8 is not set +# CONFIG_LV_COLOR_DEPTH_1 is not set +CONFIG_LV_COLOR_DEPTH=16 +# end of Color Settings + +# +# Memory Settings +# +CONFIG_LV_USE_BUILTIN_MALLOC=y +# CONFIG_LV_USE_CLIB_MALLOC is not set +# CONFIG_LV_USE_MICROPYTHON_MALLOC is not set +# CONFIG_LV_USE_RTTHREAD_MALLOC is not set +# CONFIG_LV_USE_CUSTOM_MALLOC is not set +CONFIG_LV_USE_BUILTIN_STRING=y +# CONFIG_LV_USE_CLIB_STRING is not set +# CONFIG_LV_USE_CUSTOM_STRING is not set +CONFIG_LV_USE_BUILTIN_SPRINTF=y +# CONFIG_LV_USE_CLIB_SPRINTF is not set +# CONFIG_LV_USE_CUSTOM_SPRINTF is not set +CONFIG_LV_MEM_SIZE_KILOBYTES=64 +CONFIG_LV_MEM_POOL_EXPAND_SIZE_KILOBYTES=0 +CONFIG_LV_MEM_ADR=0x0 +# end of Memory Settings + +# +# HAL Settings +# +CONFIG_LV_DEF_REFR_PERIOD=33 +CONFIG_LV_DPI_DEF=130 +# end of HAL Settings + +# +# Operating System (OS) +# +CONFIG_LV_OS_NONE=y +# CONFIG_LV_OS_PTHREAD is not set +# CONFIG_LV_OS_FREERTOS is not set +# CONFIG_LV_OS_CMSIS_RTOS2 is not set +# CONFIG_LV_OS_RTTHREAD is not set +# CONFIG_LV_OS_WINDOWS is not set +# CONFIG_LV_OS_MQX is not set +# CONFIG_LV_OS_SDL2 is not set +# CONFIG_LV_OS_CUSTOM is not set +# end of Operating System (OS) + +# +# Rendering Configuration +# +CONFIG_LV_DRAW_BUF_STRIDE_ALIGN=1 +CONFIG_LV_DRAW_BUF_ALIGN=4 +CONFIG_LV_DRAW_LAYER_SIMPLE_BUF_SIZE=24576 +CONFIG_LV_DRAW_LAYER_MAX_MEMORY=0 +CONFIG_LV_USE_DRAW_SW=y +CONFIG_LV_DRAW_SW_SUPPORT_RGB565=y +CONFIG_LV_DRAW_SW_SUPPORT_RGB565A8=y +CONFIG_LV_DRAW_SW_SUPPORT_RGB888=y +CONFIG_LV_DRAW_SW_SUPPORT_XRGB8888=y +CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888=y +CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888_PREMULTIPLIED=y +CONFIG_LV_DRAW_SW_SUPPORT_L8=y +CONFIG_LV_DRAW_SW_SUPPORT_AL88=y +CONFIG_LV_DRAW_SW_SUPPORT_A8=y +CONFIG_LV_DRAW_SW_SUPPORT_I1=y +CONFIG_LV_DRAW_SW_I1_LUM_THRESHOLD=127 +CONFIG_LV_DRAW_SW_DRAW_UNIT_CNT=1 +# CONFIG_LV_USE_DRAW_ARM2D_SYNC is not set +# CONFIG_LV_USE_NATIVE_HELIUM_ASM is not set +CONFIG_LV_DRAW_SW_COMPLEX=y +# CONFIG_LV_USE_DRAW_SW_COMPLEX_GRADIENTS is not set +CONFIG_LV_DRAW_SW_SHADOW_CACHE_SIZE=0 +CONFIG_LV_DRAW_SW_CIRCLE_CACHE_SIZE=4 +CONFIG_LV_DRAW_SW_ASM_NONE=y +# CONFIG_LV_DRAW_SW_ASM_NEON is not set +# CONFIG_LV_DRAW_SW_ASM_HELIUM is not set +# CONFIG_LV_DRAW_SW_ASM_CUSTOM is not set +CONFIG_LV_USE_DRAW_SW_ASM=0 +# CONFIG_LV_USE_PXP is not set +# CONFIG_LV_USE_G2D is not set +# CONFIG_LV_USE_DRAW_DAVE2D is not set +# CONFIG_LV_USE_DRAW_SDL is not set +# CONFIG_LV_USE_DRAW_VG_LITE is not set +# CONFIG_LV_USE_VECTOR_GRAPHIC is not set +# CONFIG_LV_USE_DRAW_DMA2D is not set +# CONFIG_LV_USE_PPA is not set +# CONFIG_LV_USE_DRAW_EVE is not set +# end of Rendering Configuration + +# +# Feature Configuration +# + +# +# Logging +# +# CONFIG_LV_USE_LOG is not set +# end of Logging + +# +# Asserts +# +CONFIG_LV_USE_ASSERT_NULL=y +CONFIG_LV_USE_ASSERT_MALLOC=y +# CONFIG_LV_USE_ASSERT_STYLE is not set +# CONFIG_LV_USE_ASSERT_MEM_INTEGRITY is not set +# CONFIG_LV_USE_ASSERT_OBJ is not set +CONFIG_LV_ASSERT_HANDLER_INCLUDE="assert.h" +# end of Asserts + +# +# Debug +# +# CONFIG_LV_USE_REFR_DEBUG is not set +# CONFIG_LV_USE_LAYER_DEBUG is not set +# CONFIG_LV_USE_PARALLEL_DRAW_DEBUG is not set +# end of Debug + +# +# Others +# +# CONFIG_LV_ENABLE_GLOBAL_CUSTOM is not set +CONFIG_LV_CACHE_DEF_SIZE=0 +CONFIG_LV_IMAGE_HEADER_CACHE_DEF_CNT=0 +CONFIG_LV_GRADIENT_MAX_STOPS=2 +CONFIG_LV_COLOR_MIX_ROUND_OFS=128 +# CONFIG_LV_OBJ_STYLE_CACHE is not set +# CONFIG_LV_USE_OBJ_ID is not set +# CONFIG_LV_USE_OBJ_NAME is not set +# CONFIG_LV_USE_OBJ_PROPERTY is not set +# end of Others +# end of Feature Configuration + +# +# Compiler Settings +# +# CONFIG_LV_BIG_ENDIAN_SYSTEM is not set +CONFIG_LV_ATTRIBUTE_MEM_ALIGN_SIZE=1 +# CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM is not set +# CONFIG_LV_USE_FLOAT is not set +# CONFIG_LV_USE_MATRIX is not set +# CONFIG_LV_USE_PRIVATE_API is not set +# end of Compiler Settings + +# +# Font Usage +# + +# +# Enable built-in fonts +# +# CONFIG_LV_FONT_MONTSERRAT_8 is not set +# CONFIG_LV_FONT_MONTSERRAT_10 is not set +# CONFIG_LV_FONT_MONTSERRAT_12 is not set +CONFIG_LV_FONT_MONTSERRAT_14=y +# CONFIG_LV_FONT_MONTSERRAT_16 is not set +# CONFIG_LV_FONT_MONTSERRAT_18 is not set +# CONFIG_LV_FONT_MONTSERRAT_20 is not set +# CONFIG_LV_FONT_MONTSERRAT_22 is not set +# CONFIG_LV_FONT_MONTSERRAT_24 is not set +# CONFIG_LV_FONT_MONTSERRAT_26 is not set +# CONFIG_LV_FONT_MONTSERRAT_28 is not set +# CONFIG_LV_FONT_MONTSERRAT_30 is not set +# CONFIG_LV_FONT_MONTSERRAT_32 is not set +# CONFIG_LV_FONT_MONTSERRAT_34 is not set +# CONFIG_LV_FONT_MONTSERRAT_36 is not set +# CONFIG_LV_FONT_MONTSERRAT_38 is not set +CONFIG_LV_FONT_MONTSERRAT_40=y +# CONFIG_LV_FONT_MONTSERRAT_42 is not set +# CONFIG_LV_FONT_MONTSERRAT_44 is not set +# CONFIG_LV_FONT_MONTSERRAT_46 is not set +# CONFIG_LV_FONT_MONTSERRAT_48 is not set +# CONFIG_LV_FONT_MONTSERRAT_28_COMPRESSED is not set +# CONFIG_LV_FONT_DEJAVU_16_PERSIAN_HEBREW is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_16_CJK is not set +# CONFIG_LV_FONT_UNSCII_8 is not set +# CONFIG_LV_FONT_UNSCII_16 is not set +# end of Enable built-in fonts + +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_8 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_10 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_12 is not set +CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_16 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_18 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_20 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_22 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_24 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_26 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_30 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_32 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_34 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_36 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_38 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_40 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_42 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_44 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_46 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_48 is not set +# CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28_COMPRESSED is not set +# CONFIG_LV_FONT_DEFAULT_DEJAVU_16_PERSIAN_HEBREW is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_16_CJK is not set +# CONFIG_LV_FONT_DEFAULT_UNSCII_8 is not set +# CONFIG_LV_FONT_DEFAULT_UNSCII_16 is not set +# CONFIG_LV_FONT_FMT_TXT_LARGE is not set +# CONFIG_LV_USE_FONT_COMPRESSED is not set +CONFIG_LV_USE_FONT_PLACEHOLDER=y + +# +# Enable static fonts +# +# end of Enable static fonts +# end of Font Usage + +# +# Text Settings +# +CONFIG_LV_TXT_ENC_UTF8=y +# CONFIG_LV_TXT_ENC_ASCII is not set +CONFIG_LV_TXT_BREAK_CHARS=" ,.;:-_)}" +CONFIG_LV_TXT_LINE_BREAK_LONG_LEN=0 +CONFIG_LV_TXT_COLOR_CMD="#" +# CONFIG_LV_USE_BIDI is not set +# CONFIG_LV_USE_ARABIC_PERSIAN_CHARS is not set +# end of Text Settings + +# +# Widget Usage +# +CONFIG_LV_WIDGETS_HAS_DEFAULT_VALUE=y +CONFIG_LV_USE_ANIMIMG=y +CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_ARCLABEL=y +CONFIG_LV_USE_BAR=y +CONFIG_LV_USE_BUTTON=y +CONFIG_LV_USE_BUTTONMATRIX=y +CONFIG_LV_USE_CALENDAR=y +# CONFIG_LV_CALENDAR_WEEK_STARTS_MONDAY is not set + +# +# Days name configuration +# +CONFIG_LV_MONDAY_STR="Mo" +CONFIG_LV_TUESDAY_STR="Tu" +CONFIG_LV_WEDNESDAY_STR="We" +CONFIG_LV_THURSDAY_STR="Th" +CONFIG_LV_FRIDAY_STR="Fr" +CONFIG_LV_SATURDAY_STR="Sa" +CONFIG_LV_SUNDAY_STR="Su" +# end of Days name configuration + +CONFIG_LV_USE_CALENDAR_HEADER_ARROW=y +CONFIG_LV_USE_CALENDAR_HEADER_DROPDOWN=y +# CONFIG_LV_USE_CALENDAR_CHINESE is not set +CONFIG_LV_USE_CANVAS=y +CONFIG_LV_USE_CHART=y +CONFIG_LV_USE_CHECKBOX=y +CONFIG_LV_USE_DROPDOWN=y +CONFIG_LV_USE_IMAGE=y +CONFIG_LV_USE_IMAGEBUTTON=y +CONFIG_LV_USE_KEYBOARD=y +CONFIG_LV_USE_LABEL=y +CONFIG_LV_LABEL_TEXT_SELECTION=y +CONFIG_LV_LABEL_LONG_TXT_HINT=y +CONFIG_LV_LABEL_WAIT_CHAR_COUNT=3 +CONFIG_LV_USE_LED=y +CONFIG_LV_USE_LINE=y +CONFIG_LV_USE_LIST=y +CONFIG_LV_USE_MENU=y +CONFIG_LV_USE_MSGBOX=y +CONFIG_LV_USE_ROLLER=y +CONFIG_LV_USE_SCALE=y +CONFIG_LV_USE_SLIDER=y +CONFIG_LV_USE_SPAN=y +CONFIG_LV_SPAN_SNIPPET_STACK_SIZE=64 +CONFIG_LV_USE_SPINBOX=y +CONFIG_LV_USE_SPINNER=y +CONFIG_LV_USE_SWITCH=y +CONFIG_LV_USE_TEXTAREA=y +CONFIG_LV_TEXTAREA_DEF_PWD_SHOW_TIME=1500 +CONFIG_LV_USE_TABLE=y +CONFIG_LV_USE_TABVIEW=y +CONFIG_LV_USE_TILEVIEW=y +CONFIG_LV_USE_WIN=y +# end of Widget Usage + +# +# Themes +# +CONFIG_LV_USE_THEME_DEFAULT=y +# CONFIG_LV_THEME_DEFAULT_DARK is not set +CONFIG_LV_THEME_DEFAULT_GROW=y +CONFIG_LV_THEME_DEFAULT_TRANSITION_TIME=80 +CONFIG_LV_USE_THEME_SIMPLE=y +# CONFIG_LV_USE_THEME_MONO is not set +# end of Themes + +# +# Layouts +# +CONFIG_LV_USE_FLEX=y +CONFIG_LV_USE_GRID=y +# end of Layouts + +# +# 3rd Party Libraries +# +CONFIG_LV_FS_DEFAULT_DRIVER_LETTER=0 +# CONFIG_LV_USE_FS_STDIO is not set +# CONFIG_LV_USE_FS_POSIX is not set +# CONFIG_LV_USE_FS_WIN32 is not set +# CONFIG_LV_USE_FS_FATFS is not set +# CONFIG_LV_USE_FS_MEMFS is not set +# CONFIG_LV_USE_FS_LITTLEFS is not set +# CONFIG_LV_USE_FS_ARDUINO_ESP_LITTLEFS is not set +# CONFIG_LV_USE_FS_ARDUINO_SD is not set +# CONFIG_LV_USE_FS_UEFI is not set +# CONFIG_LV_USE_FS_FROGFS is not set +# CONFIG_LV_USE_LODEPNG is not set +# CONFIG_LV_USE_LIBPNG is not set +# CONFIG_LV_USE_BMP is not set +# CONFIG_LV_USE_TJPGD is not set +# CONFIG_LV_USE_LIBJPEG_TURBO is not set +# CONFIG_LV_USE_GIF is not set +# CONFIG_LV_BIN_DECODER_RAM_LOAD is not set +# CONFIG_LV_USE_RLE is not set +# CONFIG_LV_USE_QRCODE is not set +# CONFIG_LV_USE_BARCODE is not set +# CONFIG_LV_USE_FREETYPE is not set +# CONFIG_LV_USE_TINY_TTF is not set +# CONFIG_LV_USE_RLOTTIE is not set +# CONFIG_LV_USE_THORVG is not set +# CONFIG_LV_USE_LZ4 is not set +# CONFIG_LV_USE_FFMPEG is not set +# end of 3rd Party Libraries + +# +# Others +# +# CONFIG_LV_USE_SNAPSHOT is not set +# CONFIG_LV_USE_SYSMON is not set +# CONFIG_LV_USE_PROFILER is not set +# CONFIG_LV_USE_MONKEY is not set +# CONFIG_LV_USE_GRIDNAV is not set +# CONFIG_LV_USE_FRAGMENT is not set +# CONFIG_LV_USE_IMGFONT is not set +CONFIG_LV_USE_OBSERVER=y +# CONFIG_LV_USE_IME_PINYIN is not set +# CONFIG_LV_USE_FILE_EXPLORER is not set +# CONFIG_LV_USE_FONT_MANAGER is not set +# CONFIG_LV_USE_TEST is not set +# CONFIG_LV_USE_TRANSLATION is not set +# CONFIG_LV_USE_XML is not set +# CONFIG_LV_USE_COLOR_FILTER is not set +CONFIG_LVGL_VERSION_MAJOR=9 +CONFIG_LVGL_VERSION_MINOR=4 +CONFIG_LVGL_VERSION_PATCH=0 +# end of Others + +# +# Devices +# +CONFIG_LV_USE_SDL=y +CONFIG_LV_SDL_INCLUDE_PATH="SDL2/SDL.h" +# CONFIG_LV_SDL_RENDER_MODE_PARTIAL is not set +CONFIG_LV_SDL_RENDER_MODE_DIRECT=y +# CONFIG_LV_SDL_RENDER_MODE_FULL is not set +CONFIG_LV_SDL_SINGLE_BUFFER=y +# CONFIG_LV_SDL_DOUBLE_BUFFER is not set +CONFIG_LV_SDL_BUFFER_COUNT=1 +CONFIG_LV_SDL_ACCELERATED=y +# CONFIG_LV_SDL_FULLSCREEN is not set +CONFIG_LV_SDL_DIRECT_EXIT=y +CONFIG_LV_SDL_MOUSEWHEEL_MODE_ENCODER=y +# CONFIG_LV_SDL_MOUSEWHEEL_MODE_CROWN is not set +CONFIG_LV_SDL_MOUSEWHEEL_MODE=0 +# CONFIG_LV_USE_X11 is not set +# CONFIG_LV_USE_WAYLAND is not set +# CONFIG_LV_USE_LINUX_FBDEV is not set +# CONFIG_LV_USE_NUTTX is not set +# CONFIG_LV_USE_LINUX_DRM is not set +# CONFIG_LV_USE_TFT_ESPI is not set +# CONFIG_LV_USE_LOVYAN_GFX is not set +# CONFIG_LV_USE_EVDEV is not set +# CONFIG_LV_USE_LIBINPUT is not set +# CONFIG_LV_USE_ST7735 is not set +# CONFIG_LV_USE_ST7789 is not set +# CONFIG_LV_USE_ST7796 is not set +# CONFIG_LV_USE_ILI9341 is not set +# CONFIG_LV_USE_GENERIC_MIPI is not set +# CONFIG_LV_USE_NXP_ELCDIF is not set +# CONFIG_LV_USE_RENESAS_GLCDC is not set +# CONFIG_LV_USE_ST_LTDC is not set +# CONFIG_LV_USE_FT81X is not set +# CONFIG_LV_USE_UEFI is not set +# CONFIG_LV_USE_OPENGLES is not set +# CONFIG_LV_USE_QNX is not set +# end of Devices + +# +# Examples +# +# CONFIG_LV_BUILD_EXAMPLES is not set +# end of Examples + +# +# Demos +# +# CONFIG_LV_BUILD_DEMOS is not set +# end of Demos +# end of LVGL configuration +# end of Component config + +# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set + +# Deprecated options for backward compatibility +CONFIG_APP_BUILD_TYPE_ELF_RAM=y +# CONFIG_NO_BLOBS is not set +CONFIG_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y +# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set +CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y +# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set +CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2 +# CONFIG_CXX_EXCEPTIONS is not set +CONFIG_STACK_CHECK_NONE=y +# CONFIG_STACK_CHECK_NORM is not set +# CONFIG_STACK_CHECK_STRONG is not set +# CONFIG_STACK_CHECK_ALL is not set +# CONFIG_WARN_WRITE_STRINGS is not set +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +# CONFIG_PERIPH_CTRL_FUNC_IN_IRAM is not set +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +CONFIG_CONSOLE_UART_DEFAULT=y +# CONFIG_CONSOLE_UART_CUSTOM is not set +# CONFIG_CONSOLE_UART_NONE is not set +# CONFIG_ESP_CONSOLE_UART_NONE is not set +CONFIG_CONSOLE_UART=y +CONFIG_CONSOLE_UART_NUM=0 +CONFIG_CONSOLE_UART_BAUDRATE=115200 +CONFIG_INT_WDT=y +CONFIG_INT_WDT_TIMEOUT_MS=300 +CONFIG_TASK_WDT=y +CONFIG_ESP_TASK_WDT=y +# CONFIG_TASK_WDT_PANIC is not set +CONFIG_TASK_WDT_TIMEOUT_S=5 +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set +CONFIG_IPC_TASK_STACK_SIZE=1024 +# CONFIG_HAL_ASSERTION_SILIENT is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED=y +# End of deprecated options diff --git a/components/eventsManager/include/eventsManager.h b/components/eventsManager/include/eventsManager.h index 38ef2dc..db7f12d 100644 --- a/components/eventsManager/include/eventsManager.h +++ b/components/eventsManager/include/eventsManager.h @@ -1,6 +1,9 @@ #include #include "freertos/FreeRTOS.h" +#define BIT0 0x00000001 +#define WIFI_CONNECTED_BIT BIT0 + typedef enum eIHMEvent_t{ IHM_EVT_WIFI_STATUS, IHM_EVT_TIME_SETTED, @@ -19,7 +22,6 @@ typedef struct IHM_EVENT bool bNeedToFreeData; // ← Important ! } xIHMEvent_t; -#define WIFI_CONNECTED_BIT BIT0 typedef enum domo_events{ EVT_WIFI_CONNECTED, EVT_TIME_SETTED, diff --git a/components/meteofrance/CMakeLists.txt b/components/meteofrance/CMakeLists.txt index 2463fdc..c6bb15f 100644 --- a/components/meteofrance/CMakeLists.txt +++ b/components/meteofrance/CMakeLists.txt @@ -1,3 +1,11 @@ +IF(ESP_PLATFORM) idf_component_register(SRCS "meteofrance.c" INCLUDE_DIRS "include" - REQUIRES json esp_http_client esp-tls stateManagement) + REQUIRES json esp_http_client esp-tls stateManagement eventsManager) +else() + add_library(meteofrance SHARED + meteofrance.c) + target_include_directories(meteofrance PUBLIC ./include) + target_link_libraries(meteofrance PRIVATE stateManagement FreeRTOS freertos_kernel) + +endif() \ No newline at end of file diff --git a/components/meteofrance/meteofrance.c b/components/meteofrance/meteofrance.c index 4321578..3727103 100644 --- a/components/meteofrance/meteofrance.c +++ b/components/meteofrance/meteofrance.c @@ -11,8 +11,8 @@ #include "meteofrance.h" -#include "freertos/FreeRTOS.h" -#include "freertos/task.h" +#include "FreeRTOS.h" +#include "task.h" #include "esp_system.h" #include "esp_log.h" diff --git a/components/stateManagement/CMakeLists.txt b/components/stateManagement/CMakeLists.txt index dde2ced..4c335e7 100644 --- a/components/stateManagement/CMakeLists.txt +++ b/components/stateManagement/CMakeLists.txt @@ -1,2 +1,9 @@ +IF(ESP_PLATFORM) idf_component_register(SRCS "stateManagement.c" INCLUDE_DIRS "include") +else() + add_library(stateManagement STATIC + stateManagement.c + ) + target_include_directories(stateManagement PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include) +endif() \ No newline at end of file diff --git a/components/stateManagement/stateManagement.c b/components/stateManagement/stateManagement.c index 7cd4f0e..66fb83c 100644 --- a/components/stateManagement/stateManagement.c +++ b/components/stateManagement/stateManagement.c @@ -1,6 +1,11 @@ #include #include "stateManagement.h" +struct state mainState={ + .wifi_init=false, + .display_init=false +}; + void func(void) { diff --git a/dependencies.lock b/dependencies.lock index 27db54d..0328bc2 100644 --- a/dependencies.lock +++ b/dependencies.lock @@ -7,7 +7,6 @@ dependencies: require: private version: '>=1.0.0,<2.0.0' - name: idf - registry_url: https://components.espressif.com require: private version: '>=5.0' source: @@ -18,7 +17,6 @@ dependencies: component_hash: 327091394b9ef5c2cd395a960ab70ae64479e0a8831cbd9925e38895fad93719 dependencies: - name: idf - registry_url: https://components.espressif.com require: private version: '>=4.1.0' source: @@ -29,7 +27,6 @@ dependencies: component_hash: cbb76089dc2c5749f7b470e2e70aedc44c9da519e04eb9a67d4c7ec275229e53 dependencies: - name: idf - registry_url: https://components.espressif.com require: private version: '>=4.1.0' source: @@ -46,7 +43,6 @@ dependencies: component_hash: 351350613ceafba240b761b4ea991e0f231ac7a9f59a9ee901f751bddc0bb18f dependencies: - name: idf - registry_url: https://components.espressif.com require: private version: '>=4.1' source: @@ -54,7 +50,7 @@ dependencies: type: service version: 0.5.3 espressif/eppp_link: - component_hash: 3b1c8f79fa1261a87b9fa8ea6012cb8bf058a949d120c8ad59e1eeffdc0c154f + component_hash: 41f6519edda527ec6a0553c872ebaf8fc6d3812523c9d4c8d1660ad21c720abe dependencies: - name: espressif/esp_serial_slave_link registry_url: https://components.espressif.com @@ -66,7 +62,7 @@ dependencies: source: registry_url: https://components.espressif.com type: service - version: 1.0.0 + version: 1.1.3 espressif/esp32_p4_function_ev_board: component_hash: 1e0436b3d220275d6b7930330b1a9b828fedf0dbc81006531e592b059842641e dependencies: @@ -107,7 +103,6 @@ dependencies: component_hash: 014948481bda426cd46714f297fe1891711246c62bea288863a8cc8cf13ef1f0 dependencies: - name: idf - registry_url: https://components.espressif.com require: private version: '>=4.0' source: @@ -115,7 +110,7 @@ dependencies: type: service version: 1.2.0 espressif/esp_hosted: - component_hash: efa17a89f19ced0c814d79ab373d3000a10e5fa410e9a8a0c5b805f1dac9945a + component_hash: a19249042b9987097f89e682ec05d7fad1bd2186e7b758363a2ddb5787ef7d98 dependencies: - name: idf require: private @@ -123,9 +118,9 @@ dependencies: source: registry_url: https://components.espressif.com type: service - version: 2.1.10 + version: 2.6.5 espressif/esp_lcd_ek79007: - component_hash: 07c1afab7e9fd4dd2fd06ff9245e65327c5bbd5485efec199496e19a9304d47b + component_hash: 8005700b7f10c7136b6e2a3f19a48f972aa1d13ed107ed298574e8d24d17ea83 dependencies: - name: espressif/cmake_utilities registry_url: https://components.espressif.com @@ -139,9 +134,9 @@ dependencies: type: service targets: - esp32p4 - version: 1.0.2 + version: 1.0.4 espressif/esp_lcd_ili9881c: - component_hash: f4f374226b62baf13f735864e8fae58e17c537df34d598e059f6caad4761ef65 + component_hash: eb9ba0484d1d14171b69e5d192716fb1cdd6ef068aa4014dc3202486e124498e dependencies: - name: idf require: private @@ -151,12 +146,11 @@ dependencies: type: service targets: - esp32p4 - version: 1.0.1 + version: 1.0.2 espressif/esp_lcd_touch: component_hash: 779b4ba2464a3ae85681e4b860caa5fdc35801458c23f3039ee761bae7f442a4 dependencies: - name: idf - registry_url: https://components.espressif.com require: private version: '>=4.4.2' source: @@ -192,7 +186,7 @@ dependencies: type: service version: 2.6.0 espressif/esp_serial_slave_link: - component_hash: d8c13c033a7604e9333b5d8ea45e0d6fec908fd552df7db20d33dd8d6916528d + component_hash: ac1776806de0a6e371c84e87898bb983e19ce62aa7f1e2e5c4a3b0234a575d2c dependencies: - name: idf require: private @@ -200,7 +194,7 @@ dependencies: source: registry_url: https://components.espressif.com type: service - version: 1.1.0~1 + version: 1.1.2 espressif/esp_wifi_remote: component_hash: 20393ed850b2cb40cadcf369b4c852ef5af49e2d89e58774d968c57b0c436fd3 dependencies: @@ -224,9 +218,9 @@ dependencies: idf: source: type: idf - version: 5.5.0 + version: 5.5.1 joltwallet/littlefs: - component_hash: 8e12955f47e27e6070b76715a96d6c75fc2b44f069e8c33679332d9bdd3120c4 + component_hash: 1808d73e99168f6f3c26dd31799a248484762b3a320ec4962dec11a145f4277f dependencies: - name: idf require: private @@ -234,14 +228,14 @@ dependencies: source: registry_url: https://components.espressif.com/ type: service - version: 1.20.1 + version: 1.20.3 lvgl/lvgl: - component_hash: 2409fdc84e9766d2a18afd84b051aef3f838348136cdb1c10ac2e8bcdb012bf6 + component_hash: 17e68bfd21f0edf4c3ee838e2273da840bf3930e5dbc3bfa6c1190c3aed41f9f dependencies: [] source: registry_url: https://components.espressif.com/ type: service - version: 9.2.0 + version: 9.4.0 suda-morris/am2302_rmt: component_hash: 890df8ebfec652eb9f8e1d612959f00a951dbe9241335e5e335fc7fb1468ea32 dependencies: @@ -264,6 +258,6 @@ direct_dependencies: - joltwallet/littlefs - lvgl/lvgl - suda-morris/am2302_rmt -manifest_hash: e0a1d41681ba77f4193216a341afed81bde27e78352abb31edd321ef98b29b55 +manifest_hash: a1d40fbf2c7b6d18c1c8ac8ab02b99dfc7ea773070a94959bcd6999824f94553 target: esp32p4 version: 2.0.0 diff --git a/gdbinit b/gdbinit deleted file mode 100644 index 3973b3d..0000000 --- a/gdbinit +++ /dev/null @@ -1,6 +0,0 @@ -target remote :3333 -set remote hardware-watchpoint-limit 2 -mon reset halt -maintenance flush register-cache -thb app_main -c \ No newline at end of file diff --git a/kconfigs_projbuild.in b/kconfigs_projbuild.in new file mode 100644 index 0000000..3837cfa --- /dev/null +++ b/kconfigs_projbuild.in @@ -0,0 +1,4 @@ +source "/home/marc/esp/v5.5.1/esp-idf/components/esp_app_format/Kconfig.projbuild" +source "/home/marc/esp/v5.5.1/esp-idf/components/esp_rom/Kconfig.projbuild" +source "/home/marc/esp/v5.5.1/esp-idf/components/partition_table/Kconfig.projbuild" +source "/home/marc/rgb_lcd/components/protocol_examples_common/Kconfig.projbuild" \ No newline at end of file diff --git a/main/communication.c b/main/communication.c index c7c077a..fd1a84d 100644 --- a/main/communication.c +++ b/main/communication.c @@ -26,19 +26,19 @@ void splitIt(char *payload, unsigned int length, float *datas) char *saveptr1; token = strtok_r(payload, sep, &saveptr1); - datas[0] = atoff(token); + datas[0] = atof(token); ESP_LOGE(TAG,"%f",datas[0]); token = strtok_r(NULL, sep, &saveptr1); - datas[1] = atoff(token); + datas[1] = atof(token); ESP_LOGE(TAG,"%f",datas[1]); token = strtok_r(NULL, sep, &saveptr1); - datas[2] = atoff(token); + datas[2] = atof(token); ESP_LOGE(TAG,"%f",datas[2]); token = strtok_r(NULL, sep, &saveptr1); - datas[3] = atoff(token); + datas[3] = atof(token); ESP_LOGE(TAG,"%f",datas[3]); } diff --git a/main/idf_component.yml b/main/idf_component.yml index 80f1758..13754ee 100644 --- a/main/idf_component.yml +++ b/main/idf_component.yml @@ -23,6 +23,6 @@ dependencies: idf: version: '5.5.*' lvgl/lvgl: - version: 9.2.0 + version: 9.4.0 #espressif/esp32_p4_function_ev_board: # version: "4.1.*" \ No newline at end of file diff --git a/main/images/mqtt_ko.c b/main/images/mqtt_ko.c new file mode 100644 index 0000000..5be5ac8 --- /dev/null +++ b/main/images/mqtt_ko.c @@ -0,0 +1,51 @@ + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) +#include "lvgl.h" +#elif defined(LV_BUILD_TEST) +#include "../lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_MQTT_KO +#define LV_ATTRIBUTE_MQTT_KO +#endif + +static const +LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_MQTT_KO +uint8_t mqtt_ko_map[] = { + + 0x00,0x00,0x00,0xe0,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x39,0x39,0x39,0xff,0xaa,0xa9,0xaa,0xff,0xed,0xed,0xed,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf1,0xf1,0xf1,0xff,0x83,0x83,0x83,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xe8, + 0xb5,0xb3,0xb5,0xfd,0xaa,0xaa,0xaa,0xff,0x8d,0x8d,0x8d,0xff,0x3f,0x3d,0x3f,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x27,0x21,0x27,0xff,0xb6,0xb6,0xb6,0xff,0xfa,0xfa,0xfa,0xff,0xf9,0xf9,0xf9,0xff,0xc3,0xc3,0xc3,0xff,0x4d,0x4d,0x4d,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdd,0xdd,0xdd,0xff,0x9d,0x9c,0x9d,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x6d,0x6d,0x6d,0xff,0xbd,0xbd,0xbd,0xff,0xb5,0xb5,0xb5,0xff,0x5f,0x5f,0x5f,0xff,0x01,0x01,0x01,0xff,0x00,0x00,0x00,0xff, + 0xe7,0xe7,0xe7,0xff,0xee,0xee,0xee,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xec,0xec,0xec,0xff,0x81,0x7f,0x81,0xfe,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x23,0x22,0x23,0xff,0x16,0x16,0x16,0xff,0x01,0x01,0x01,0xff,0x17,0x17,0x17,0xff,0x6a,0x68,0x6a,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x3e,0x3c,0x3e,0xff,0x98,0x97,0x98,0xff,0xd9,0xd8,0xd9,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff,0xad,0xac,0xad,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0xd2,0xd2,0xd2,0xff,0xf5,0xf4,0xf5,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x72,0x71,0x72,0xff,0xe2,0xe2,0xe2,0xff,0xc4,0xc4,0xc4,0xff,0x7f,0x7f,0x7f,0xff,0x09,0x09,0x09,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x3b,0x3b,0x3b,0xff,0xf7,0xf7,0xf7,0xff,0xff,0xff,0xff,0xff, + 0xe7,0xe7,0xe7,0xff,0xcf,0xce,0xcf,0xfe,0xa9,0xa9,0xa9,0xff,0x4f,0x4f,0x4f,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x10,0x09,0x10,0xff,0x6a,0x6a,0x6a,0xff,0x38,0x38,0x38,0xff,0x00,0x00,0x00,0xff,0x04,0x04,0x04,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xa7,0xa6,0xa7,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xf5,0xf5,0xff,0x94,0x94,0x94,0xff,0x1e,0x1e,0x1e,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x12,0x12,0x12,0xff,0xc2,0xc2,0xc2,0xff,0x8d,0x8c,0x8d,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xe4,0xe3,0xe4,0xfe, + 0xc5,0xc3,0xc5,0xfe,0xd5,0xd5,0xd5,0xff,0xf0,0xef,0xf0,0xff,0xc7,0xc7,0xc7,0xff,0xb6,0xb6,0xb6,0xff,0x5a,0x5a,0x5a,0xff,0x01,0x01,0x01,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xaf,0xae,0xaf,0xff,0xfd,0xfd,0xfd,0xff,0xed,0xec,0xed,0xff,0x20,0x17,0x20,0xfe,0x00,0x00,0x00,0xff,0x92,0x90,0x92,0xfe, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x19,0x19,0x19,0xff,0x66,0x65,0x66,0xff,0x30,0x30,0x30,0xff,0x03,0x03,0x03,0xff,0x02,0x02,0x02,0xff,0x05,0x05,0x05,0xff,0x00,0x00,0x00,0xff,0x69,0x67,0x69,0xff,0xfb,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff,0xa5,0xa4,0xa5,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xff,0x04,0x04,0x04,0xff,0x4a,0x4a,0x4a,0xff,0xa3,0xa2,0xa3,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xcb,0xcb,0xcb,0xff,0xff,0xff,0xff,0xff,0xe7,0xe6,0xe7,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x63,0x63,0x63,0xff,0xe6,0xe6,0xe6,0xff,0xfb,0xfa,0xfb,0xff,0x51,0x50,0x51,0xff,0x00,0x00,0x00,0xff,0x7c,0x7c,0x7c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x5d,0x5b,0x5d,0xff,0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x16,0x09,0x16,0xfe,0xf3,0xf2,0xf3,0xff,0xff,0xff,0xff,0xff,0xb7,0xb6,0xb7,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xf6,0xf6,0xf6,0xff,0xff,0xff,0xff,0xff,0xa0,0x9f,0xa0,0xff,0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xc6,0xc5,0xc6,0xff,0xff,0xff,0xff,0xff,0xda,0xd9,0xda,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xe1,0xe1,0xe1,0xff,0xff,0xff,0xff,0xff,0xbc,0xbb,0xbc,0xfe,0x00,0x00,0x00,0xff, + 0x00,0x00,0x00,0xec,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xaa,0xaa,0xaa,0xff,0xff,0xff,0xff,0xff,0xe7,0xe7,0xe7,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xcb,0xcb,0xcb,0xff,0xff,0xff,0xff,0xff,0xcb,0xcb,0xcb,0xff,0x00,0x00,0x00,0xe0, + +}; + +const lv_image_dsc_t mqtt_ko = { + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.cf = LV_COLOR_FORMAT_ARGB8888, + .header.flags = 0, + .header.w = 15, + .header.h = 15, + .header.stride = 60, + .data_size = sizeof(mqtt_ko_map), + .data = mqtt_ko_map, +}; + diff --git a/main/images/mqtt_ok.c b/main/images/mqtt_ok.c new file mode 100644 index 0000000..d122976 --- /dev/null +++ b/main/images/mqtt_ok.c @@ -0,0 +1,116 @@ + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) +#include "lvgl.h" +#elif defined(LV_BUILD_TEST) +#include "../lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_MQTT_OK +#define LV_ATTRIBUTE_MQTT_OK +#endif + +static const +LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_MQTT_OK +uint8_t mqtt_ok_map[] = { + + 0x66,0x00,0x66,0xe0,0xc1,0xb3,0xc1,0xfd,0x99,0x7f,0x99,0xfe,0xe7,0xe3,0xe7,0xfe, + 0x6a,0x17,0x6a,0xfe,0x68,0x0a,0x68,0xfe,0xd6,0xce,0xd6,0xfe,0xe8,0xe3,0xe8,0xfe, + 0xa5,0x90,0xa5,0xfe,0xce,0xc3,0xce,0xfe,0xcf,0xc5,0xcf,0xfe,0xf5,0xf3,0xf5,0xfe, + 0x66,0x00,0x66,0xe1,0xc6,0xbb,0xc6,0xfe,0xff,0xff,0xff,0xff,0x66,0x00,0x66,0xff, + 0xd3,0xcb,0xd3,0xff,0xb8,0xaa,0xb8,0xff,0xfb,0xfa,0xfb,0xff,0x72,0x38,0x72,0xff, + 0xc2,0xb6,0xc2,0xff,0xb8,0xa9,0xb8,0xff,0x72,0x39,0x72,0xff,0x74,0x3c,0x74,0xff, + 0xeb,0xe7,0xeb,0xff,0xfc,0xfb,0xfc,0xff,0xea,0xe7,0xea,0xff,0x9f,0x87,0x9f,0xff, + 0xf7,0xf5,0xf7,0xff,0x9d,0x85,0x9d,0xff,0xfe,0xfe,0xfe,0xff,0xfc,0xfc,0xfc,0xff, + 0xf3,0xf1,0xf3,0xff,0xb5,0xa6,0xb5,0xff,0xef,0xed,0xef,0xff,0xe6,0xe2,0xe6,0xff, + 0xee,0xeb,0xee,0xff,0xf2,0xf0,0xf2,0xff,0xdc,0xd6,0xdc,0xff,0xc5,0xb9,0xc5,0xff, + 0xfa,0xf8,0xfa,0xff,0x74,0x3d,0x74,0xff,0x9e,0x86,0x9e,0xff,0x86,0x61,0x86,0xff, + 0xe2,0xdd,0xe2,0xff,0x8e,0x6f,0x8e,0xff,0xa3,0x8d,0xa3,0xff,0x6c,0x21,0x6c,0xff, + 0xae,0x9c,0xae,0xff,0xb4,0xa4,0xb4,0xff,0xfe,0xfd,0xfe,0xff,0xde,0xd8,0xde,0xff, + 0x83,0x5b,0x83,0xff,0x7c,0x4f,0x7c,0xff,0xee,0xec,0xee,0xff,0xaa,0x97,0xaa,0xff, + 0xf0,0xee,0xf0,0xff,0xc9,0xbe,0xc9,0xff,0xa4,0x8f,0xa4,0xff,0xea,0xe6,0xea,0xff, + 0xc5,0xba,0xc5,0xff,0x90,0x71,0x90,0xff,0xfb,0xfb,0xfb,0xff,0xc9,0xbf,0xc9,0xff, + 0x68,0x10,0x68,0xff,0x7f,0x53,0x7f,0xff,0xef,0xec,0xef,0xff,0xe8,0xe4,0xe8,0xff, + 0xcb,0xc1,0xcb,0xff,0xe3,0xde,0xe3,0xff,0xb0,0x9f,0xb0,0xff,0x7d,0x50,0x7d,0xff, + 0x8a,0x68,0x8a,0xff,0xdf,0xd9,0xdf,0xff,0xe5,0xe1,0xe5,0xff,0xf7,0xf6,0xf7,0xff, + 0x96,0x7c,0x96,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x00, + + 0x00,0x0f,0x0f,0x0f,0x0f,0x16,0x11,0x22,0x0e,0x0e,0x20,0x1d,0x0f,0x0f,0x00, + 0x01,0x11,0x2e,0x29,0x0f,0x0f,0x0f,0x2f,0x14,0x12,0x0e,0x1f,0x15,0x0f,0x0f, + 0x0e,0x0e,0x0e,0x0e,0x2c,0x30,0x0f,0x0f,0x0f,0x2d,0x25,0x0e,0x0e,0x11,0x0f, + 0x1a,0x38,0x0e,0x0e,0x0e,0x0e,0x36,0x02,0x0f,0x0f,0x17,0x23,0x0e,0x1e,0x1b, + 0x0f,0x0f,0x17,0x37,0x33,0x0e,0x0e,0x0e,0x3c,0x0f,0x0f,0x13,0x24,0x0e,0x1c, + 0x0f,0x0f,0x0f,0x0f,0x0f,0x3d,0x18,0x0e,0x0e,0x10,0x0f,0x0f,0x2b,0x12,0x0e, + 0x18,0x06,0x15,0x35,0x0f,0x0f,0x40,0x10,0x0e,0x0e,0x39,0x0f,0x0f,0x21,0x0e, + 0x0e,0x0e,0x0e,0x12,0x3f,0x16,0x0f,0x0f,0x10,0x0e,0x0e,0x3a,0x0f,0x0f,0x07, + 0x09,0x26,0x28,0x0e,0x0e,0x03,0x41,0x0f,0x0f,0x45,0x0e,0x42,0x04,0x0f,0x08, + 0x0f,0x0f,0x13,0x27,0x32,0x0e,0x43,0x13,0x0f,0x48,0x19,0x0e,0x31,0x0f,0x0f, + 0x0f,0x0f,0x0f,0x0f,0x2a,0x3e,0x0e,0x44,0x0f,0x0f,0x10,0x0e,0x3b,0x0f,0x0f, + 0x0f,0x0f,0x0f,0x0f,0x0f,0x14,0x0e,0x19,0x47,0x0f,0x4c,0x0e,0x0e,0x34,0x0f, + 0x0f,0x0f,0x0f,0x0f,0x0f,0x05,0x0b,0x0e,0x14,0x0f,0x0f,0x4b,0x0e,0x46,0x0f, + 0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0a,0x0e,0x49,0x0f,0x0f,0x4a,0x0e,0x0d,0x0f, + 0x00,0x0f,0x0f,0x0f,0x0f,0x0f,0x11,0x0e,0x1a,0x0f,0x0f,0x10,0x0e,0x10,0x0c, + +}; + +const lv_image_dsc_t mqtt_ok = { + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.cf = LV_COLOR_FORMAT_I8, + .header.flags = 0, + .header.w = 15, + .header.h = 15, + .header.stride = 15, + .data_size = sizeof(mqtt_ok_map), + .data = mqtt_ok_map, +}; + diff --git a/main/images/wifi_ko.c b/main/images/wifi_ko.c new file mode 100644 index 0000000..41929a3 --- /dev/null +++ b/main/images/wifi_ko.c @@ -0,0 +1,49 @@ + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) +#include "lvgl.h" +#elif defined(LV_BUILD_TEST) +#include "../lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_WIFI_KO +#define LV_ATTRIBUTE_WIFI_KO +#endif + +static const +LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_WIFI_KO +uint8_t wifi_ko_map[] = { + + 0xfe,0xfe,0xfe,0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xf5,0xf5,0xf5,0xff,0xa5,0xa5,0xa5,0xff,0x4d,0x4d,0x4d,0xff,0x1a,0x1a,0x1a,0xff,0x00,0x00,0x00,0xff,0x79,0x79,0x79,0xff,0xff,0xff,0xff,0xff,0x5a,0x5a,0x5a,0xff,0x30,0x30,0x30,0xff,0xff,0xff,0xff,0xff,0x78,0x78,0x78,0xff,0x10,0x10,0x10,0xff, + 0xfd,0xfd,0xfd,0xff,0xff,0xff,0xff,0xff,0xa0,0xa0,0xa0,0xff,0x18,0x18,0x18,0xff,0x00,0x00,0x00,0xff,0x06,0x06,0x06,0xff,0x2e,0x2e,0x2e,0xff,0x3d,0x3d,0x3d,0xff,0xa5,0xa5,0xa5,0xff,0xff,0xff,0xff,0xff,0x89,0x89,0x89,0xff,0x00,0x00,0x00,0xff,0x2b,0x2b,0x2b,0xff,0x03,0x03,0x03,0xff,0x3c,0x3c,0x3c,0xff, + 0xf6,0xf6,0xf6,0xff,0x57,0x57,0x57,0xff,0x00,0x00,0x00,0xff,0x23,0x23,0x23,0xff,0xa5,0xa5,0xa5,0xff,0xfa,0xfa,0xfa,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0x4b,0x4b,0x4b,0xff,0x00,0x00,0x00,0xff,0x1a,0x1a,0x1a,0xff,0xe0,0xe0,0xe0,0xff, + 0x3a,0x3a,0x3a,0xff,0x00,0x00,0x00,0xff,0x77,0x77,0x77,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xbb,0xbb,0xbb,0xff,0x68,0x68,0x68,0xff,0x36,0x36,0x36,0xff,0x9e,0x9e,0x9e,0xff,0xff,0xff,0xff,0xff,0x80,0x80,0x80,0xff,0x00,0x00,0x00,0xff,0x2d,0x2d,0x2d,0xff,0x03,0x03,0x03,0xff,0x32,0x32,0x32,0xff, + 0x60,0x60,0x60,0xff,0x8f,0x8f,0x8f,0xff,0xff,0xff,0xff,0xff,0xc4,0xc4,0xc4,0xff,0x23,0x23,0x23,0xff,0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0x00,0x00,0x00,0xff,0x84,0x84,0x84,0xff,0xff,0xff,0xff,0xff,0x6a,0x6a,0x6a,0xff,0x46,0x46,0x46,0xff,0xff,0xff,0xff,0xff,0x88,0x88,0x88,0xff,0x27,0x27,0x27,0xff, + 0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xab,0xab,0xab,0xff,0x00,0x00,0x00,0xff,0x10,0x10,0x10,0xff,0x96,0x96,0x96,0xff,0xf7,0xf7,0xf7,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xf8,0xf8,0xf8,0xff,0xff,0xff,0xff,0xff,0x8d,0x8d,0x8d,0xff,0x29,0x29,0x29,0xff,0xe6,0xe6,0xe6,0xff,0xff,0xff,0xff,0xff,0xba,0xba,0xba,0xff,0x7d,0x7d,0x7d,0xff,0x83,0x83,0x83,0xff,0xc7,0xc7,0xc7,0xff,0xff,0xff,0xff,0xff,0xfd,0xfd,0xfd,0xff,0xfd,0xfd,0xfd,0xff,0xfd,0xfd,0xfd,0xff,0xfe,0xfe,0xfe,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xfd,0xfd,0xff,0xff,0xff,0xff,0xff,0xd4,0xd4,0xd4,0xff,0x24,0x24,0x24,0xff,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xff,0x01,0x01,0x01,0xff,0x00,0x00,0x00,0xff,0x4d,0x4d,0x4d,0xff,0xef,0xef,0xef,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0x3c,0x3c,0x3c,0xff,0x01,0x01,0x01,0xff,0x9a,0x9a,0x9a,0xff,0xf0,0xf0,0xf0,0xff,0xe5,0xe5,0xe5,0xff,0x74,0x74,0x74,0xff,0x00,0x00,0x00,0xff,0x83,0x83,0x83,0xff,0xff,0xff,0xff,0xff,0xfb,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0xd2,0xd2,0xd2,0xff,0xff,0xff,0xff,0xff,0xc2,0xc2,0xc2,0xff,0xd4,0xd4,0xd4,0xff,0xff,0xff,0xff,0xff,0xc3,0xc3,0xc3,0xff,0xe3,0xe3,0xe3,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0x83,0x83,0x83,0xff,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xff,0xbc,0xbc,0xbc,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xf9,0xf9,0xff,0xff,0xff,0xff,0xff,0x54,0x54,0x54,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x94,0x94,0x94,0xff,0xff,0xff,0xff,0xff,0xfa,0xfa,0xfa,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xfd,0xfd,0xff,0xff,0xff,0xff,0xff,0xca,0xca,0xca,0xff,0x1e,0x1e,0x1e,0xff,0x40,0x40,0x40,0xff,0xee,0xee,0xee,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + +}; + +const lv_image_dsc_t wifi_ko = { + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.cf = LV_COLOR_FORMAT_ARGB8888, + .header.flags = 0, + .header.w = 15, + .header.h = 13, + .header.stride = 60, + .data_size = sizeof(wifi_ko_map), + .data = wifi_ko_map, +}; + diff --git a/main/images/wifi_ok.c b/main/images/wifi_ok.c new file mode 100644 index 0000000..feb8269 --- /dev/null +++ b/main/images/wifi_ok.c @@ -0,0 +1,48 @@ + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) +#include "lvgl.h" +#elif defined(LV_BUILD_TEST) +#include "../lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_WIFI_OK +#define LV_ATTRIBUTE_WIFI_OK +#endif + +static const +LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_WIFI_OK +uint8_t wifi_ok_map[] = { + + 0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00,0x6c,0x00,0x00,0x00,0xb9,0x00,0x00,0x00,0xe5,0x00,0x00,0x00,0xf2,0x00,0x00,0x00,0xe6,0x00,0x00,0x00,0xbb,0x00,0x00,0x00,0x6f,0x00,0x00,0x00,0x1a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x86,0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xe6,0x00,0x00,0x00,0xba,0x00,0x00,0x00,0xa9,0x00,0x00,0x00,0xb9,0x00,0x00,0x00,0xe4,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0x8c,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x29,0x00,0x00,0x00,0xd5,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xa2,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x9d,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x2f, + 0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0xf3,0x00,0x00,0x00,0x3d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2f,0x00,0x00,0x00,0x9b,0x00,0x00,0x00,0xdb,0x00,0x00,0x00,0xed,0x00,0x00,0x00,0xdc,0x00,0x00,0x00,0x9e,0x00,0x00,0x00,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0xee,0x00,0x00,0x00,0xfb, + 0x00,0x00,0x00,0x62,0x00,0x00,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xa1,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xfc,0x00,0x00,0x00,0xbc,0x00,0x00,0x00,0xa1,0x00,0x00,0x00,0xba,0x00,0x00,0x00,0xf9,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xa7,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x57, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xab,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x7b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x74,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xaf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x4a,0x00,0x00,0x00,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x73,0x00,0x00,0x00,0xd9,0x00,0x00,0x00,0xf4,0x00,0x00,0x00,0xdb,0x00,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x00,0x00,0x00,0x45,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x05, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xd3,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xc5,0x00,0x00,0x00,0x96,0x00,0x00,0x00,0xc2,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xda,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0xa8,0x00,0x00,0x00,0x53,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x4d,0x00,0x00,0x00,0xa4,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x83,0x00,0x00,0x00,0xe6,0x00,0x00,0x00,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0xfb,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x8e,0x00,0x00,0x00,0xf5,0x00,0x00,0x00,0x96,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + +}; + +const lv_image_dsc_t wifi_ok = { + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.cf = LV_COLOR_FORMAT_ARGB8888, + .header.flags = 0, + .header.w = 15, + .header.h = 12, + .header.stride = 60, + .data_size = sizeof(wifi_ok_map), + .data = wifi_ok_map, +}; + diff --git a/sdkconfig b/sdkconfig index bbbcf03..517afc1 100644 --- a/sdkconfig +++ b/sdkconfig @@ -1,12 +1,13 @@ # # Automatically generated file. DO NOT EDIT. -# Espressif IoT Development Framework (ESP-IDF) 5.5.0 Project Configuration +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration # CONFIG_SOC_ADC_SUPPORTED=y CONFIG_SOC_ANA_CMPR_SUPPORTED=y CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y CONFIG_SOC_UART_SUPPORTED=y CONFIG_SOC_GDMA_SUPPORTED=y +CONFIG_SOC_UHCI_SUPPORTED=y CONFIG_SOC_AHB_GDMA_SUPPORTED=y CONFIG_SOC_AXI_GDMA_SUPPORTED=y CONFIG_SOC_DW_GDMA_SUPPORTED=y @@ -54,8 +55,10 @@ CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED=y CONFIG_SOC_FLASH_ENC_SUPPORTED=y CONFIG_SOC_SECURE_BOOT_SUPPORTED=y CONFIG_SOC_BOD_SUPPORTED=y +CONFIG_SOC_VBAT_SUPPORTED=y CONFIG_SOC_APM_SUPPORTED=y CONFIG_SOC_PMU_SUPPORTED=y +CONFIG_SOC_PMU_PVT_SUPPORTED=y CONFIG_SOC_DCDC_SUPPORTED=y CONFIG_SOC_PAU_SUPPORTED=y CONFIG_SOC_LP_TIMER_SUPPORTED=y @@ -82,6 +85,9 @@ CONFIG_SOC_PPA_SUPPORTED=y CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y CONFIG_SOC_PM_SUPPORTED=y +CONFIG_SOC_BITSCRAMBLER_SUPPORTED=y +CONFIG_SOC_SIMD_INSTRUCTION_SUPPORTED=y +CONFIG_SOC_I3C_MASTER_SUPPORTED=y CONFIG_SOC_XTAL_SUPPORT_40M=y CONFIG_SOC_AES_SUPPORT_DMA=y CONFIG_SOC_AES_SUPPORT_GCM=y @@ -106,6 +112,9 @@ CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 +CONFIG_SOC_ADC_CALIBRATION_V1_SUPPORTED=y +CONFIG_SOC_ADC_SELF_HW_CALI_SUPPORTED=y +CONFIG_SOC_ADC_CALIB_CHAN_COMPENS_SUPPORTED=y CONFIG_SOC_ADC_SHARED_POWER=y CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y @@ -122,6 +131,7 @@ CONFIG_SOC_CPU_COPROC_NUM=3 CONFIG_SOC_CPU_HAS_FPU=y CONFIG_SOC_CPU_HAS_FPU_EXT_ILL_BUG=y CONFIG_SOC_CPU_HAS_HWLOOP=y +CONFIG_SOC_CPU_HAS_HWLOOP_STATE_BUG=y CONFIG_SOC_CPU_HAS_PIE=y CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y CONFIG_SOC_CPU_BREAKPOINTS_NUM=3 @@ -131,6 +141,7 @@ CONFIG_SOC_CPU_HAS_PMA=y CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP=y CONFIG_SOC_CPU_PMP_REGION_GRANULARITY=128 CONFIG_SOC_CPU_HAS_LOCKUP_RESET=y +CONFIG_SOC_SIMD_PREFERRED_DATA_ALIGNMENT=16 CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096 CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 @@ -175,6 +186,7 @@ CONFIG_SOC_RTCIO_PIN_COUNT=16 CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y +CONFIG_SOC_RTCIO_EDGE_WAKE_SUPPORTED=y CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE=y @@ -206,7 +218,9 @@ CONFIG_SOC_I2S_SUPPORTS_APLL=y CONFIG_SOC_I2S_SUPPORTS_PCM=y CONFIG_SOC_I2S_SUPPORTS_PDM=y CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y +CONFIG_SOC_I2S_SUPPORTS_PCM2PDM=y CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y +CONFIG_SOC_I2S_SUPPORTS_PDM2PCM=y CONFIG_SOC_I2S_SUPPORTS_PDM_RX_HP_FILTER=y CONFIG_SOC_I2S_SUPPORTS_TX_SYNC_CNT=y CONFIG_SOC_I2S_SUPPORTS_TDM=y @@ -275,6 +289,7 @@ CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE=y CONFIG_SOC_PCNT_SUPPORT_CLEAR_SIGNAL=y +CONFIG_SOC_PCNT_SUPPORT_SLEEP_RETENTION=y CONFIG_SOC_RMT_GROUPS=1 CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4 CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4 @@ -313,8 +328,10 @@ CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y CONFIG_SOC_MCPWM_SUPPORT_ETM=y CONFIG_SOC_MCPWM_SUPPORT_EVENT_COMPARATOR=y CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP=y +CONFIG_SOC_MCPWM_SUPPORT_SLEEP_RETENTION=y CONFIG_SOC_USB_OTG_PERIPH_NUM=2 CONFIG_SOC_USB_UTMI_PHY_NUM=1 +CONFIG_SOC_USB_UTMI_PHY_NO_POWER_OFF_ISO=y CONFIG_SOC_PARLIO_GROUPS=1 CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP=1 CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP=1 @@ -324,8 +341,10 @@ CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING=y CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING=y CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT=y CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN=y -CONFIG_SOC_PARLIO_TX_SIZE_BY_DMA=y +CONFIG_SOC_PARLIO_TX_SUPPORT_LOOP_TRANSMISSION=y CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION=y +CONFIG_SOC_PARLIO_SUPPORT_SPI_LCD=y +CONFIG_SOC_PARLIO_SUPPORT_I80_LCD=y CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 CONFIG_SOC_MPI_OPERATIONS_NUM=3 CONFIG_SOC_RSA_MAX_BIT_LEN=4096 @@ -367,6 +386,7 @@ CONFIG_SOC_SPI_SUPPORT_OCT=y CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST=y CONFIG_SOC_SPI_SUPPORT_CLK_SPLL=y +CONFIG_SOC_MSPI_HAS_INDEPENT_IOMUX=y CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 CONFIG_SOC_LP_SPI_PERIPH_NUM=y @@ -380,11 +400,13 @@ CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS=y CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_DQS=y +CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_FLASH_DELAY=y CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP=y CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y +CONFIG_SOC_MEMSPI_SRC_FREQ_120M_SUPPORTED=y CONFIG_SOC_MEMSPI_FLASH_PSRAM_INDEPENDENT=y CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 CONFIG_SOC_SYSTIMER_ALARM_NUM=3 @@ -409,7 +431,10 @@ CONFIG_SOC_MWDT_SUPPORT_XTAL=y CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION=y CONFIG_SOC_TOUCH_SENSOR_VERSION=3 CONFIG_SOC_TOUCH_SENSOR_NUM=14 +CONFIG_SOC_TOUCH_MIN_CHAN_ID=1 +CONFIG_SOC_TOUCH_MAX_CHAN_ID=14 CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y +CONFIG_SOC_TOUCH_SUPPORT_BENCHMARK=y CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF=y CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING=y CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 @@ -417,6 +442,7 @@ CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y CONFIG_SOC_TOUCH_SUPPORT_FREQ_HOP=y CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=3 CONFIG_SOC_TWAI_CONTROLLER_NUM=3 +CONFIG_SOC_TWAI_MASK_FILTER_NUM=1 CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL=y CONFIG_SOC_TWAI_BRP_MIN=2 CONFIG_SOC_TWAI_BRP_MAX=32768 @@ -428,8 +454,11 @@ CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y CONFIG_SOC_EFUSE_DIS_DOWNLOAD_MSPI=y CONFIG_SOC_EFUSE_ECDSA_KEY=y +CONFIG_SOC_KEY_MANAGER_SUPPORT_KEY_DEPLOYMENT=y CONFIG_SOC_KEY_MANAGER_ECDSA_KEY_DEPLOY=y CONFIG_SOC_KEY_MANAGER_FE_KEY_DEPLOY=y +CONFIG_SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_128=y +CONFIG_SOC_KEY_MANAGER_FE_KEY_DEPLOY_XTS_AES_256=y CONFIG_SOC_SECURE_BOOT_V2_RSA=y CONFIG_SOC_SECURE_BOOT_V2_ECC=y CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 @@ -453,7 +482,13 @@ CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y CONFIG_SOC_UART_HAS_LP_UART=y CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION=y CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y +CONFIG_SOC_UART_WAKEUP_CHARS_SEQ_MAX_LEN=5 +CONFIG_SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_FIFO_THRESH_MODE=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_START_BIT_MODE=y +CONFIG_SOC_UART_WAKEUP_SUPPORT_CHAR_SEQ_MODE=y CONFIG_SOC_LP_I2S_SUPPORT_VAD=y +CONFIG_SOC_UHCI_NUM=1 CONFIG_SOC_COEX_HW_PTI=y CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 @@ -471,6 +506,7 @@ CONFIG_SOC_PM_SUPPORT_CNNT_PD=y CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y CONFIG_SOC_PM_CPU_RETENTION_BY_SW=y +CONFIG_SOC_PM_CACHE_RETENTION_BY_PAU=y CONFIG_SOC_PM_PAU_LINK_NUM=4 CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR=y CONFIG_SOC_PAU_IN_TOP_DOMAIN=y @@ -478,6 +514,7 @@ CONFIG_SOC_CPU_IN_TOP_DOMAIN=y CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE=y CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND=y CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND=y +CONFIG_SOC_PM_RETENTION_MODULE_NUM=64 CONFIG_SOC_PSRAM_VDD_POWER_MPLL=y CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y CONFIG_SOC_CLK_APLL_SUPPORTED=y @@ -506,16 +543,20 @@ CONFIG_SOC_JPEG_ENCODE_SUPPORTED=y CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM=1 CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX=16 +CONFIG_SOC_I3C_MASTER_PERIPH_NUM=y +CONFIG_SOC_I3C_MASTER_ADDRESS_TABLE_NUM=12 +CONFIG_SOC_I3C_MASTER_COMMAND_TABLE_NUM=12 CONFIG_SOC_LP_CORE_SUPPORT_ETM=y CONFIG_SOC_LP_CORE_SUPPORT_LP_ADC=y CONFIG_SOC_LP_CORE_SUPPORT_LP_VAD=y +CONFIG_SOC_LP_CORE_SUPPORT_STORE_LOAD_EXCEPTIONS=y CONFIG_IDF_CMAKE=y CONFIG_IDF_TOOLCHAIN="gcc" CONFIG_IDF_TOOLCHAIN_GCC=y CONFIG_IDF_TARGET_ARCH_RISCV=y CONFIG_IDF_TARGET_ARCH="riscv" CONFIG_IDF_TARGET="esp32p4" -CONFIG_IDF_INIT_VERSION="5.5.0" +CONFIG_IDF_INIT_VERSION="5.5.1" CONFIG_IDF_TARGET_ESP32P4=y CONFIG_IDF_FIRMWARE_CHIP_ID=0x0012 @@ -549,9 +590,9 @@ CONFIG_BOOTLOADER_PROJECT_VER=1 # end of Application Rollback # -# Bootloader Rollback +# Recovery Bootloader and Rollback # -# end of Bootloader Rollback +# end of Recovery Bootloader and Rollback CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x2000 CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y @@ -561,6 +602,8 @@ CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y # # Log # +CONFIG_BOOTLOADER_LOG_VERSION_1=y +CONFIG_BOOTLOADER_LOG_VERSION=1 # CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set # CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set # CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set @@ -575,6 +618,13 @@ CONFIG_BOOTLOADER_LOG_LEVEL=3 # CONFIG_BOOTLOADER_LOG_COLORS is not set CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y # end of Format + +# +# Settings +# +CONFIG_BOOTLOADER_LOG_MODE_TEXT_EN=y +CONFIG_BOOTLOADER_LOG_MODE_TEXT=y +# end of Settings # end of Log # @@ -629,6 +679,7 @@ CONFIG_ESP_ROM_GET_CLK_FREQ=y CONFIG_ESP_ROM_HAS_RVFPLIB=y CONFIG_ESP_ROM_HAS_HAL_WDT=y CONFIG_ESP_ROM_HAS_HAL_SYSTIMER=y +CONFIG_ESP_ROM_SYSTIMER_INIT_PATCH=y CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y CONFIG_ESP_ROM_WDT_INIT_PATCH=y CONFIG_ESP_ROM_HAS_LP_ROM=y @@ -639,6 +690,7 @@ CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG=y CONFIG_ESP_ROM_HAS_VERSION=y CONFIG_ESP_ROM_CLIC_INT_TYPE_PATCH=y CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y +CONFIG_ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY=y # # Boot ROM Behavior @@ -659,9 +711,11 @@ CONFIG_ESPTOOLPY_FLASHMODE_QIO=y # CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_120M is not set CONFIG_ESPTOOLPY_FLASHFREQ_80M=y # CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set # CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_VAL=80 CONFIG_ESPTOOLPY_FLASHFREQ="80m" # CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set # CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set @@ -708,9 +762,9 @@ CONFIG_GPIO_INPUT_CAPTEUR_PIR=4 # Example Connection Configuration # CONFIG_ENV_GPIO_RANGE_MIN=0 -CONFIG_ENV_GPIO_RANGE_MAX=56 -CONFIG_ENV_GPIO_IN_RANGE_MAX=56 -CONFIG_ENV_GPIO_OUT_RANGE_MAX=56 +CONFIG_ENV_GPIO_RANGE_MAX=54 +CONFIG_ENV_GPIO_IN_RANGE_MAX=54 +CONFIG_ENV_GPIO_OUT_RANGE_MAX=54 # CONFIG_EXAMPLE_CONNECT_WIFI is not set CONFIG_EXAMPLE_CONNECT_ETHERNET=y CONFIG_EXAMPLE_ETHERNET_EMAC_TASK_STACK_SIZE=2048 @@ -781,7 +835,13 @@ CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE=y # Bluetooth # # CONFIG_BT_ENABLED is not set -CONFIG_BT_ALARM_MAX_NUM=50 + +# +# Common Options +# +# CONFIG_BT_BLE_LOG_SPI_OUT_ENABLED is not set +# CONFIG_BT_BLE_LOG_UHCI_OUT_ENABLED is not set +# end of Common Options # end of Bluetooth # @@ -795,15 +855,16 @@ CONFIG_BT_ALARM_MAX_NUM=50 # # -# TWAI Configuration +# Legacy TWAI Driver Configurations # -# CONFIG_TWAI_ISR_IN_IRAM is not set -# end of TWAI Configuration +# CONFIG_TWAI_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy TWAI Driver Configurations # # Legacy ADC Driver Configuration # # CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_ADC_SKIP_LEGACY_CONFLICT_CHECK is not set # # Legacy ADC Calibration Configuration @@ -816,48 +877,62 @@ CONFIG_BT_ALARM_MAX_NUM=50 # Legacy MCPWM Driver Configurations # # CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_MCPWM_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy MCPWM Driver Configurations # # Legacy Timer Group Driver Configurations # # CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_GPTIMER_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy Timer Group Driver Configurations # # Legacy RMT Driver Configurations # # CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_RMT_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy RMT Driver Configurations # # Legacy I2S Driver Configurations # # CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_I2S_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy I2S Driver Configurations +# +# Legacy I2C Driver Configurations +# +# CONFIG_I2C_SKIP_LEGACY_CONFLICT_CHECK is not set +# end of Legacy I2C Driver Configurations + # # Legacy PCNT Driver Configurations # # CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_PCNT_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy PCNT Driver Configurations # # Legacy SDM Driver Configurations # # CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_SDM_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy SDM Driver Configurations # # Legacy Temperature Sensor Driver Configurations # # CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy Temperature Sensor Driver Configurations # # Legacy Touch Sensor Driver Configurations # # CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set +# CONFIG_TOUCH_SKIP_LEGACY_CONFLICT_CHECK is not set # end of Legacy Touch Sensor Driver Configurations # end of Driver Configurations @@ -873,6 +948,7 @@ CONFIG_EFUSE_MAX_BLK_LEN=256 # ESP-TLS # CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y # CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set # CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set @@ -880,6 +956,7 @@ CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y # CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set # CONFIG_ESP_TLS_PSK_VERIFICATION is not set # CONFIG_ESP_TLS_INSECURE is not set +CONFIG_ESP_TLS_DYN_BUF_STRATEGY_SUPPORTED=y # end of ESP-TLS # @@ -897,11 +974,19 @@ CONFIG_ESP_ERR_TO_NAME_LOOKUP=y # # ESP-Driver:Analog Comparator Configurations # -# CONFIG_ANA_CMPR_ISR_IRAM_SAFE is not set +CONFIG_ANA_CMPR_ISR_HANDLER_IN_IRAM=y # CONFIG_ANA_CMPR_CTRL_FUNC_IN_IRAM is not set +# CONFIG_ANA_CMPR_ISR_CACHE_SAFE is not set +CONFIG_ANA_CMPR_OBJ_CACHE_SAFE=y # CONFIG_ANA_CMPR_ENABLE_DEBUG_LOG is not set # end of ESP-Driver:Analog Comparator Configurations +# +# BitScrambler Configurations +# +# CONFIG_BITSCRAMBLER_CTRL_FUNC_IN_IRAM is not set +# end of BitScrambler Configurations + # # ESP-Driver:GPIO Configurations # @@ -913,7 +998,8 @@ CONFIG_ESP_ERR_TO_NAME_LOOKUP=y # CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y # CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set -# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_ISR_CACHE_SAFE is not set +CONFIG_GPTIMER_OBJ_CACHE_SAFE=y # CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set # end of ESP-Driver:GPTimer Configurations @@ -923,6 +1009,7 @@ CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y # CONFIG_I2C_ISR_IRAM_SAFE is not set # CONFIG_I2C_ENABLE_DEBUG_LOG is not set # CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set +CONFIG_I2C_MASTER_ISR_HANDLER_IN_IRAM=y # end of ESP-Driver:I2C Configurations # @@ -941,14 +1028,21 @@ CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y # # ESP-Driver:MCPWM Configurations # -# CONFIG_MCPWM_ISR_IRAM_SAFE is not set +CONFIG_MCPWM_ISR_HANDLER_IN_IRAM=y +# CONFIG_MCPWM_ISR_CACHE_SAFE is not set # CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set +CONFIG_MCPWM_OBJ_CACHE_SAFE=y # CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set # end of ESP-Driver:MCPWM Configurations # # ESP-Driver:Parallel IO Configurations # +CONFIG_PARLIO_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_PARLIO_RX_ISR_HANDLER_IN_IRAM=y +# CONFIG_PARLIO_TX_ISR_CACHE_SAFE is not set +# CONFIG_PARLIO_RX_ISR_CACHE_SAFE is not set +CONFIG_PARLIO_OBJ_CACHE_SAFE=y # CONFIG_PARLIO_ENABLE_DEBUG_LOG is not set # CONFIG_PARLIO_ISR_IRAM_SAFE is not set # end of ESP-Driver:Parallel IO Configurations @@ -964,9 +1058,15 @@ CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y # # ESP-Driver:RMT Configurations # -# CONFIG_RMT_ISR_IRAM_SAFE is not set +CONFIG_RMT_ENCODER_FUNC_IN_IRAM=y +CONFIG_RMT_TX_ISR_HANDLER_IN_IRAM=y +CONFIG_RMT_RX_ISR_HANDLER_IN_IRAM=y # CONFIG_RMT_RECV_FUNC_IN_IRAM is not set +# CONFIG_RMT_TX_ISR_CACHE_SAFE is not set +# CONFIG_RMT_RX_ISR_CACHE_SAFE is not set +CONFIG_RMT_OBJ_CACHE_SAFE=y # CONFIG_RMT_ENABLE_DEBUG_LOG is not set +# CONFIG_RMT_ISR_IRAM_SAFE is not set # end of ESP-Driver:RMT Configurations # @@ -992,12 +1092,28 @@ CONFIG_SPI_SLAVE_ISR_IN_IRAM=y # CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE is not set # end of ESP-Driver:Temperature Sensor Configurations +# +# ESP-Driver:TWAI Configurations +# +# CONFIG_TWAI_ISR_IN_IRAM is not set +# CONFIG_TWAI_ISR_CACHE_SAFE is not set +# CONFIG_TWAI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:TWAI Configurations + # # ESP-Driver:UART Configurations # # CONFIG_UART_ISR_IN_IRAM is not set # end of ESP-Driver:UART Configurations +# +# ESP-Driver:UHCI Configurations +# +# CONFIG_UHCI_ISR_HANDLER_IN_IRAM is not set +# CONFIG_UHCI_ISR_CACHE_SAFE is not set +# CONFIG_UHCI_ENABLE_DEBUG_LOG is not set +# end of ESP-Driver:UHCI Configurations + # # ESP-Driver:USB Serial/JTAG Configuration # @@ -1031,6 +1147,15 @@ CONFIG_ESP_EVENT_POST_FROM_ISR=y CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y # end of Event Loop Library +# +# GDB Stub +# +CONFIG_ESP_GDBSTUB_ENABLED=y +# CONFIG_ESP_SYSTEM_GDBSTUB_RUNTIME is not set +CONFIG_ESP_GDBSTUB_SUPPORT_TASKS=y +CONFIG_ESP_GDBSTUB_MAX_TASKS=32 +# end of GDB Stub + # # ESP HTTP client # @@ -1044,7 +1169,7 @@ CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 # # HTTP Server # -CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024 CONFIG_HTTPD_MAX_URI_LEN=512 CONFIG_HTTPD_ERR_RESP_NO_DELAY=y CONFIG_HTTPD_PURGE_BUF_LEN=32 @@ -1117,7 +1242,6 @@ CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y # CONFIG_RTC_CLK_SRC_INT_RC=y # CONFIG_RTC_CLK_SRC_EXT_CRYS is not set -# CONFIG_RTC_CLK_SRC_INT_RC32K is not set CONFIG_RTC_CLK_CAL_CYCLES=1024 CONFIG_RTC_FAST_CLK_SRC_RC_FAST=y # CONFIG_RTC_FAST_CLK_SRC_XTAL is not set @@ -1126,7 +1250,8 @@ CONFIG_RTC_FAST_CLK_SRC_RC_FAST=y # # Peripheral Control # -CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y # end of Peripheral Control # @@ -1139,8 +1264,10 @@ CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y # GDMA Configurations # CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y -# CONFIG_GDMA_ISR_IRAM_SAFE is not set +CONFIG_GDMA_ISR_HANDLER_IN_IRAM=y +CONFIG_GDMA_OBJ_DRAM_SAFE=y # CONFIG_GDMA_ENABLE_DEBUG_LOG is not set +# CONFIG_GDMA_ISR_IRAM_SAFE is not set # end of GDMA Configurations # @@ -1183,7 +1310,32 @@ CONFIG_ESP_LDO_VOLTAGE_PSRAM_1900_MV=y CONFIG_ESP_LDO_VOLTAGE_PSRAM_DOMAIN=1900 # end of LDO Regulator Configurations +# +# Power Supplier +# + +# +# Brownout Detector +# +CONFIG_ESP_BROWNOUT_DET=y +CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set +CONFIG_ESP_BROWNOUT_DET_LVL=7 +CONFIG_ESP_BROWNOUT_USE_INTR=y +# end of Brownout Detector + +# +# RTC Backup Battery +# +# CONFIG_ESP_VBAT_INIT_AUTO is not set +# CONFIG_ESP_VBAT_WAKEUP_CHIP_ON_VBAT_BROWNOUT is not set +# end of RTC Backup Battery +# end of Power Supplier + CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_ENABLE_PVT=y +CONFIG_ESP_INTR_IN_IRAM=y # end of Hardware Settings # @@ -1229,8 +1381,9 @@ CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y # # Power Management # +CONFIG_PM_SLEEP_FUNC_IN_IRAM=y # CONFIG_PM_ENABLE is not set -# CONFIG_PM_SLP_IRAM_OPT is not set +CONFIG_PM_SLP_IRAM_OPT=y CONFIG_PM_SLP_DEFAULT_PARAMS_OPT=y # CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP is not set # end of Power Management @@ -1245,13 +1398,18 @@ CONFIG_SPIRAM=y # CONFIG_SPIRAM_MODE_HEX=y CONFIG_SPIRAM_SPEED_200M=y +# CONFIG_SPIRAM_SPEED_80M is not set # CONFIG_SPIRAM_SPEED_20M is not set CONFIG_SPIRAM_SPEED=200 -# CONFIG_SPIRAM_XIP_FROM_PSRAM is not set +CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y +CONFIG_SPIRAM_RODATA=y +CONFIG_SPIRAM_XIP_FROM_PSRAM=y +CONFIG_SPIRAM_FLASH_LOAD_TO_PSRAM=y # CONFIG_SPIRAM_ECC_ENABLE is not set +CONFIG_SPIRAM_BOOT_HW_INIT=y CONFIG_SPIRAM_BOOT_INIT=y +CONFIG_SPIRAM_PRE_CONFIGURE_MEMORY_PROTECTION=y # CONFIG_SPIRAM_IGNORE_NOTFOUND is not set -# CONFIG_SPIRAM_USE_MEMMAP is not set # CONFIG_SPIRAM_USE_CAPS_ALLOC is not set CONFIG_SPIRAM_USE_MALLOC=y CONFIG_SPIRAM_MEMTEST=y @@ -1269,6 +1427,12 @@ CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=32768 # CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set # end of ESP Ringbuf +# +# ESP-ROM +# +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM + # # ESP Security Specific # @@ -1293,12 +1457,16 @@ CONFIG_CACHE_L2_CACHE_LINE_SIZE=128 CONFIG_CACHE_L1_CACHE_LINE_SIZE=64 # end of Cache config +CONFIG_ESP_SYSTEM_IN_IRAM=y CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y # CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT is not set # CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y +CONFIG_ESP_SYSTEM_NO_BACKTRACE=y # CONFIG_ESP_SYSTEM_USE_EH_FRAME is not set +# CONFIG_ESP_SYSTEM_USE_FRAME_POINTER is not set # # Memory protection @@ -1339,18 +1507,6 @@ CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP_DEBUG_STUBS_ENABLE is not set CONFIG_ESP_DEBUG_OCDAWARE=y CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y - -# -# Brownout Detector -# -CONFIG_ESP_BROWNOUT_DET=y -CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y -# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set -# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set -CONFIG_ESP_BROWNOUT_DET_LVL=7 -# end of Brownout Detector - -CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y CONFIG_ESP_SYSTEM_HW_STACK_GUARD=y CONFIG_ESP_SYSTEM_HW_PC_RECORD=y # end of ESP System Settings @@ -1358,6 +1514,7 @@ CONFIG_ESP_SYSTEM_HW_PC_RECORD=y # # IPC (Inter-Processor Call) # +CONFIG_ESP_IPC_ENABLE=y CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y CONFIG_ESP_IPC_ISR_ENABLE=y @@ -1366,6 +1523,7 @@ CONFIG_ESP_IPC_ISR_ENABLE=y # # ESP Timer (High Resolution Timer) # +CONFIG_ESP_TIMER_IN_IRAM=y # CONFIG_ESP_TIMER_PROFILING is not set CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y @@ -1401,10 +1559,12 @@ CONFIG_ESP_WIFI_EXTRA_IRAM_OPT=y CONFIG_ESP_WIFI_RX_IRAM_OPT=y CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y CONFIG_ESP_WIFI_ENABLE_SAE_PK=y +CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y CONFIG_ESP_WIFI_SLP_IRAM_OPT=y CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 +CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT=y CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y @@ -1421,21 +1581,8 @@ CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y # Core dump # # CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set -CONFIG_ESP_COREDUMP_ENABLE_TO_UART=y -# CONFIG_ESP_COREDUMP_ENABLE_TO_NONE is not set -# CONFIG_ESP_COREDUMP_DATA_FORMAT_BIN is not set -CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y -CONFIG_ESP_COREDUMP_CHECKSUM_CRC32=y -# CONFIG_ESP_COREDUMP_CHECKSUM_SHA256 is not set -# CONFIG_ESP_COREDUMP_CAPTURE_DRAM is not set -CONFIG_ESP_COREDUMP_ENABLE=y -CONFIG_ESP_COREDUMP_LOGS=y -CONFIG_ESP_COREDUMP_MAX_TASKS_NUM=64 -CONFIG_ESP_COREDUMP_UART_DELAY=0 -CONFIG_ESP_COREDUMP_STACK_SIZE=0 -CONFIG_ESP_COREDUMP_DECODE_INFO=y -# CONFIG_ESP_COREDUMP_DECODE_DISABLE is not set -CONFIG_ESP_COREDUMP_DECODE="info" +# CONFIG_ESP_COREDUMP_ENABLE_TO_UART is not set +CONFIG_ESP_COREDUMP_ENABLE_TO_NONE=y # end of Core dump # @@ -1485,6 +1632,14 @@ CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 # CONFIG_FATFS_IMMEDIATE_FSYNC is not set # CONFIG_FATFS_USE_LABEL is not set CONFIG_FATFS_LINK_LOCK=y +# CONFIG_FATFS_USE_DYN_BUFFERS is not set + +# +# File system free space calculation behavior +# +CONFIG_FATFS_DONT_TRUST_FREE_CLUSTER_CNT=0 +CONFIG_FATFS_DONT_TRUST_LAST_ALLOC=0 +# end of File system free space calculation behavior # end of FAT Filesystem support # @@ -1529,13 +1684,12 @@ CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32=y # # Port # -CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y # CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y # CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set # CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y -CONFIG_FREERTOS_ISR_STACKSIZE=2096 +CONFIG_FREERTOS_ISR_STACKSIZE=1536 CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y @@ -1559,6 +1713,7 @@ CONFIG_FREERTOS_DEBUG_OCDAWARE=y CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y CONFIG_FREERTOS_NUMBER_OF_CORES=2 +CONFIG_FREERTOS_IN_IRAM=y # end of FreeRTOS # @@ -1571,9 +1726,6 @@ CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 CONFIG_HAL_SYSTIMER_USE_ROM_IMPL=y CONFIG_HAL_WDT_USE_ROM_IMPL=y -CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=y -CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=y -# CONFIG_HAL_ECDSA_GEN_SIG_CM is not set # end of Hardware Abstraction Layer (HAL) and Low Level (LL) # @@ -1594,6 +1746,9 @@ CONFIG_HEAP_TRACING_OFF=y # # Log # +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 # # Log Level @@ -1605,10 +1760,10 @@ CONFIG_LOG_DEFAULT_LEVEL_INFO=y # CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set # CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set CONFIG_LOG_DEFAULT_LEVEL=3 -# CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT is not set +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y # CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set -CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE=y -CONFIG_LOG_MAXIMUM_LEVEL=5 +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 # # Level Settings @@ -1631,6 +1786,15 @@ CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y # CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set # end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y # end of Log # @@ -1638,7 +1802,6 @@ CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y # CONFIG_LWIP_ENABLE=y CONFIG_LWIP_LOCAL_HOSTNAME="espressif" -# CONFIG_LWIP_NETIF_API is not set CONFIG_LWIP_TCPIP_TASK_PRIO=18 # CONFIG_LWIP_TCPIP_CORE_LOCKING is not set # CONFIG_LWIP_CHECK_THREAD_SAFETY is not set @@ -1675,7 +1838,7 @@ CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y # CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y # CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set -CONFIG_LWIP_DHCP_OPTIONS_LEN=68 +CONFIG_LWIP_DHCP_OPTIONS_LEN=69 CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 @@ -1750,19 +1913,7 @@ CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 -CONFIG_LWIP_PPP_SUPPORT=y -CONFIG_LWIP_PPP_ENABLE_IPV4=y -CONFIG_LWIP_PPP_ENABLE_IPV6=y -# CONFIG_LWIP_PPP_NOTIFY_PHASE_SUPPORT is not set -# CONFIG_LWIP_PPP_PAP_SUPPORT is not set -# CONFIG_LWIP_PPP_CHAP_SUPPORT is not set -# CONFIG_LWIP_PPP_MSCHAP_SUPPORT is not set -# CONFIG_LWIP_PPP_MPPE_SUPPORT is not set -CONFIG_LWIP_PPP_SERVER_SUPPORT=y -CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=y -# CONFIG_LWIP_ENABLE_LCP_ECHO is not set -# CONFIG_LWIP_PPP_DEBUG_ON is not set -# CONFIG_LWIP_USE_EXTERNAL_MBEDTLS is not set +# CONFIG_LWIP_PPP_SUPPORT is not set # CONFIG_LWIP_SLIP_SUPPORT is not set # @@ -1796,6 +1947,7 @@ CONFIG_LWIP_DNS_MAX_HOST_IP=1 CONFIG_LWIP_DNS_MAX_SERVERS=3 # CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set # CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set +# CONFIG_LWIP_USE_ESP_GETADDRINFO is not set # end of DNS CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 @@ -1816,6 +1968,9 @@ CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y # CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set # CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set +CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_NONE=y +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_DEFAULT is not set +# CONFIG_LWIP_HOOK_DHCP_EXTRA_OPTION_CUSTOM is not set CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y # CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set # CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set @@ -1850,6 +2005,7 @@ CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 # CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set # CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y +# CONFIG_MBEDTLS_SSL_KEYING_MATERIAL_EXPORT is not set CONFIG_MBEDTLS_PKCS7_C=y # end of mbedTLS v3.x related @@ -1886,6 +2042,7 @@ CONFIG_MBEDTLS_HAVE_TIME=y # CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set # CONFIG_MBEDTLS_HAVE_TIME_DATE is not set CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA1_C=y CONFIG_MBEDTLS_SHA512_C=y # CONFIG_MBEDTLS_SHA3_C is not set CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y @@ -1967,6 +2124,7 @@ CONFIG_MBEDTLS_ECP_NIST_OPTIM=y # CONFIG_MBEDTLS_THREADING_C is not set CONFIG_MBEDTLS_ERROR_STRINGS=y CONFIG_MBEDTLS_FS_IO=y +# CONFIG_MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION is not set # end of mbedTLS # @@ -1986,20 +2144,25 @@ CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y # end of ESP-MQTT Configurations # -# Newlib +# LibC # -CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y -# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set -# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set -# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set -# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set -CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y -# CONFIG_NEWLIB_NANO_FORMAT is not set -CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y -# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set -# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set -# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set -# end of Newlib +CONFIG_LIBC_NEWLIB=y +# CONFIG_LIBC_PICOLIBC is not set +CONFIG_LIBC_MISC_IN_IRAM=y +CONFIG_LIBC_LOCKS_PLACE_IN_IRAM=y +CONFIG_LIBC_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_LIBC_STDOUT_LINE_ENDING_LF is not set +# CONFIG_LIBC_STDOUT_LINE_ENDING_CR is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_LIBC_STDIN_LINE_ENDING_LF is not set +CONFIG_LIBC_STDIN_LINE_ENDING_CR=y +# CONFIG_LIBC_NEWLIB_NANO_FORMAT is not set +CONFIG_LIBC_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_LIBC_TIME_SYSCALL_USE_RTC is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_HRT is not set +# CONFIG_LIBC_TIME_SYSCALL_USE_NONE is not set +# CONFIG_LIBC_OPTIMIZED_MISALIGNED_ACCESS is not set +# end of LibC # # NVS @@ -2049,9 +2212,17 @@ CONFIG_SPI_FLASH_BROWNOUT_RESET=y # # Features here require specific hardware (READ DOCS FIRST!) # +# CONFIG_SPI_FLASH_HPM_ENA is not set +CONFIG_SPI_FLASH_HPM_AUTO=y +# CONFIG_SPI_FLASH_HPM_DIS is not set +CONFIG_SPI_FLASH_HPM_ON=y +CONFIG_SPI_FLASH_HPM_DC_AUTO=y +# CONFIG_SPI_FLASH_HPM_DC_DISABLE is not set # CONFIG_SPI_FLASH_AUTO_SUSPEND is not set CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 # CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y # end of Optional and Experimental Features (READ DOCS FIRST) # end of Main Flash configuration @@ -2076,10 +2247,11 @@ CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 # # Auto-detect flash chips # -CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y +CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED=y +CONFIG_SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED=y # CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP is not set # CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP is not set -# CONFIG_SPI_FLASH_SUPPORT_GD_CHIP is not set +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y # CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP is not set # CONFIG_SPI_FLASH_SUPPORT_BOYA_CHIP is not set # CONFIG_SPI_FLASH_SUPPORT_TH_CHIP is not set @@ -2162,6 +2334,7 @@ CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10 # end of Hub Driver Configuration # CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK is not set +# CONFIG_USB_HOST_DWC_DMA_CAP_MEMORY_IN_PSRAM is not set CONFIG_USB_OTG_SUPPORTED=y # end of USB-OTG @@ -2193,12 +2366,6 @@ CONFIG_WL_SECTOR_SIZE_4096=y CONFIG_WL_SECTOR_SIZE=4096 # end of Wear Levelling -# -# Board Support Package -# -CONFIG_BSP_I2S_NUM=1 -# end of Board Support Package - # # WiFi Logger configuration # @@ -2259,6 +2426,7 @@ CONFIG_BSP_I2C_CLK_SPEED_HZ=400000 # # I2S # +CONFIG_BSP_I2S_NUM=1 # end of I2S # @@ -2285,8 +2453,8 @@ CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR=y # CONFIG_BSP_DISPLAY_LVGL_FULL_REFRESH is not set CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE=y CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH=1 -CONFIG_BSP_LCD_COLOR_FORMAT_RGB565=y -# CONFIG_BSP_LCD_COLOR_FORMAT_RGB888 is not set +# CONFIG_BSP_LCD_COLOR_FORMAT_RGB565 is not set +CONFIG_BSP_LCD_COLOR_FORMAT_RGB888=y CONFIG_BSP_LCD_TYPE_1024_600=y # CONFIG_BSP_LCD_TYPE_1280_800 is not set # end of Display @@ -2372,6 +2540,7 @@ CONFIG_ESP_HOSTED_SDIO_PIN_D3=17 CONFIG_ESP_HOSTED_SDIO_PIN_D1=15 CONFIG_ESP_HOSTED_SDIO_TX_Q_SIZE=20 CONFIG_ESP_HOSTED_SDIO_RX_Q_SIZE=20 +CONFIG_ESP_HOSTED_SDIO_RESET_DELAY_MS=1500 # CONFIG_ESP_HOSTED_SDIO_CHECKSUM is not set # end of Hosted SDIO Configuration @@ -2404,6 +2573,8 @@ CONFIG_ESP_HOSTED_RPC_TASK_STACK=4096 CONFIG_ESP_HOSTED_DFLT_TASK_STACK=3072 # end of Task defaults +CONFIG_ESP_HOSTED_ENABLE_ITWT=y +# CONFIG_ESP_HOSTED_ENABLE_DPP is not set CONFIG_ESP_HOSTED_USE_MEMPOOL=y CONFIG_ESP_HOSTED_MAX_SIMULTANEOUS_SYNC_RPC_REQUESTS=5 CONFIG_ESP_HOSTED_MAX_SIMULTANEOUS_ASYNC_RPC_REQUESTS=5 @@ -2441,7 +2612,7 @@ CONFIG_ESP_LCD_TOUCH_MAX_BUTTONS=1 # # ESP LVGL PORT # -CONFIG_LVGL_PORT_ENABLE_PPA=y +# CONFIG_LVGL_PORT_ENABLE_PPA is not set # end of ESP LVGL PORT # @@ -2540,8 +2711,6 @@ CONFIG_WIFI_RMT_TX_HETB_QUEUE_NUM=3 # CONFIG_WIFI_RMT_TESTING_OPTIONS is not set CONFIG_WIFI_RMT_ENTERPRISE_SUPPORT=y # CONFIG_WIFI_RMT_ENT_FREE_DYNAMIC_BUFFER is not set -CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y -CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT=y # end of Wi-Fi configuration # end of Wi-Fi Remote @@ -2572,6 +2741,7 @@ CONFIG_LITTLEFS_MALLOC_STRATEGY_DEFAULT=y # CONFIG_LITTLEFS_MALLOC_STRATEGY_SPIRAM is not set CONFIG_LITTLEFS_ASSERTS=y # CONFIG_LITTLEFS_MMAP_PARTITION is not set +# CONFIG_LITTLEFS_WDT_RESET is not set # end of LittleFS # @@ -2583,12 +2753,12 @@ CONFIG_LV_CONF_SKIP=y # # Color Settings # -CONFIG_LV_COLOR_DEPTH_32=y +# CONFIG_LV_COLOR_DEPTH_32 is not set # CONFIG_LV_COLOR_DEPTH_24 is not set -# CONFIG_LV_COLOR_DEPTH_16 is not set +CONFIG_LV_COLOR_DEPTH_16=y # CONFIG_LV_COLOR_DEPTH_8 is not set # CONFIG_LV_COLOR_DEPTH_1 is not set -CONFIG_LV_COLOR_DEPTH=32 +CONFIG_LV_COLOR_DEPTH=16 # end of Color Settings # @@ -2617,15 +2787,15 @@ CONFIG_LV_DPI_DEF=130 # # Operating System (OS) # -# CONFIG_LV_OS_NONE is not set +CONFIG_LV_OS_NONE=y # CONFIG_LV_OS_PTHREAD is not set -CONFIG_LV_OS_FREERTOS=y +# CONFIG_LV_OS_FREERTOS is not set # CONFIG_LV_OS_CMSIS_RTOS2 is not set # CONFIG_LV_OS_RTTHREAD is not set # CONFIG_LV_OS_WINDOWS is not set # CONFIG_LV_OS_MQX is not set +# CONFIG_LV_OS_SDL2 is not set # CONFIG_LV_OS_CUSTOM is not set -CONFIG_LV_USE_OS=2 # end of Operating System (OS) # @@ -2634,17 +2804,19 @@ CONFIG_LV_USE_OS=2 CONFIG_LV_DRAW_BUF_STRIDE_ALIGN=1 CONFIG_LV_DRAW_BUF_ALIGN=4 CONFIG_LV_DRAW_LAYER_SIMPLE_BUF_SIZE=24576 -CONFIG_LV_DRAW_THREAD_STACK_SIZE=8192 +CONFIG_LV_DRAW_LAYER_MAX_MEMORY=0 CONFIG_LV_USE_DRAW_SW=y CONFIG_LV_DRAW_SW_SUPPORT_RGB565=y CONFIG_LV_DRAW_SW_SUPPORT_RGB565A8=y CONFIG_LV_DRAW_SW_SUPPORT_RGB888=y CONFIG_LV_DRAW_SW_SUPPORT_XRGB8888=y CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888=y +CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888_PREMULTIPLIED=y CONFIG_LV_DRAW_SW_SUPPORT_L8=y CONFIG_LV_DRAW_SW_SUPPORT_AL88=y CONFIG_LV_DRAW_SW_SUPPORT_A8=y CONFIG_LV_DRAW_SW_SUPPORT_I1=y +CONFIG_LV_DRAW_SW_I1_LUM_THRESHOLD=127 CONFIG_LV_DRAW_SW_DRAW_UNIT_CNT=1 # CONFIG_LV_USE_DRAW_ARM2D_SYNC is not set # CONFIG_LV_USE_NATIVE_HELIUM_ASM is not set @@ -2657,12 +2829,15 @@ CONFIG_LV_DRAW_SW_ASM_NONE=y # CONFIG_LV_DRAW_SW_ASM_HELIUM is not set # CONFIG_LV_DRAW_SW_ASM_CUSTOM is not set CONFIG_LV_USE_DRAW_SW_ASM=0 -# CONFIG_LV_USE_DRAW_VGLITE is not set -# CONFIG_LV_USE_DRAW_PXP is not set +# CONFIG_LV_USE_PXP is not set +# CONFIG_LV_USE_G2D is not set # CONFIG_LV_USE_DRAW_DAVE2D is not set # CONFIG_LV_USE_DRAW_SDL is not set # CONFIG_LV_USE_DRAW_VG_LITE is not set # CONFIG_LV_USE_VECTOR_GRAPHIC is not set +# CONFIG_LV_USE_DRAW_DMA2D is not set +# CONFIG_LV_USE_PPA is not set +# CONFIG_LV_USE_DRAW_EVE is not set # end of Rendering Configuration # @@ -2672,7 +2847,26 @@ CONFIG_LV_USE_DRAW_SW_ASM=0 # # Logging # -# CONFIG_LV_USE_LOG is not set +CONFIG_LV_USE_LOG=y +# CONFIG_LV_LOG_LEVEL_TRACE is not set +# CONFIG_LV_LOG_LEVEL_INFO is not set +CONFIG_LV_LOG_LEVEL_WARN=y +# CONFIG_LV_LOG_LEVEL_ERROR is not set +# CONFIG_LV_LOG_LEVEL_USER is not set +# CONFIG_LV_LOG_LEVEL_NONE is not set +CONFIG_LV_LOG_LEVEL=2 +CONFIG_LV_LOG_PRINTF=y +CONFIG_LV_LOG_USE_TIMESTAMP=y +CONFIG_LV_LOG_USE_FILE_LINE=y +CONFIG_LV_LOG_TRACE_MEM=y +CONFIG_LV_LOG_TRACE_TIMER=y +CONFIG_LV_LOG_TRACE_INDEV=y +CONFIG_LV_LOG_TRACE_DISP_REFR=y +CONFIG_LV_LOG_TRACE_EVENT=y +CONFIG_LV_LOG_TRACE_OBJ_CREATE=y +CONFIG_LV_LOG_TRACE_LAYOUT=y +CONFIG_LV_LOG_TRACE_ANIM=y +CONFIG_LV_LOG_TRACE_CACHE=y # end of Logging # @@ -2700,10 +2894,11 @@ CONFIG_LV_ASSERT_HANDLER_INCLUDE="assert.h" # CONFIG_LV_ENABLE_GLOBAL_CUSTOM is not set CONFIG_LV_CACHE_DEF_SIZE=0 CONFIG_LV_IMAGE_HEADER_CACHE_DEF_CNT=0 -CONFIG_LV_GRADIENT_MAX_STOPS=100 +CONFIG_LV_GRADIENT_MAX_STOPS=2 CONFIG_LV_COLOR_MIX_ROUND_OFS=128 # CONFIG_LV_OBJ_STYLE_CACHE is not set # CONFIG_LV_USE_OBJ_ID is not set +# CONFIG_LV_USE_OBJ_NAME is not set # CONFIG_LV_USE_OBJ_PROPERTY is not set # end of Others # end of Feature Configuration @@ -2749,8 +2944,8 @@ CONFIG_LV_FONT_MONTSERRAT_40=y # CONFIG_LV_FONT_MONTSERRAT_48 is not set # CONFIG_LV_FONT_MONTSERRAT_28_COMPRESSED is not set # CONFIG_LV_FONT_DEJAVU_16_PERSIAN_HEBREW is not set -# CONFIG_LV_FONT_SIMSUN_14_CJK is not set -# CONFIG_LV_FONT_SIMSUN_16_CJK is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_16_CJK is not set # CONFIG_LV_FONT_UNSCII_8 is not set # CONFIG_LV_FONT_UNSCII_16 is not set # end of Enable built-in fonts @@ -2778,13 +2973,18 @@ CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y # CONFIG_LV_FONT_DEFAULT_MONTSERRAT_48 is not set # CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28_COMPRESSED is not set # CONFIG_LV_FONT_DEFAULT_DEJAVU_16_PERSIAN_HEBREW is not set -# CONFIG_LV_FONT_DEFAULT_SIMSUN_14_CJK is not set -# CONFIG_LV_FONT_DEFAULT_SIMSUN_16_CJK is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_16_CJK is not set # CONFIG_LV_FONT_DEFAULT_UNSCII_8 is not set # CONFIG_LV_FONT_DEFAULT_UNSCII_16 is not set # CONFIG_LV_FONT_FMT_TXT_LARGE is not set # CONFIG_LV_USE_FONT_COMPRESSED is not set CONFIG_LV_USE_FONT_PLACEHOLDER=y + +# +# Enable static fonts +# +# end of Enable static fonts # end of Font Usage # @@ -2794,6 +2994,7 @@ CONFIG_LV_TXT_ENC_UTF8=y # CONFIG_LV_TXT_ENC_ASCII is not set CONFIG_LV_TXT_BREAK_CHARS=" ,.;:-_)}" CONFIG_LV_TXT_LINE_BREAK_LONG_LEN=0 +CONFIG_LV_TXT_COLOR_CMD="#" # CONFIG_LV_USE_BIDI is not set # CONFIG_LV_USE_ARABIC_PERSIAN_CHARS is not set # end of Text Settings @@ -2804,11 +3005,25 @@ CONFIG_LV_TXT_LINE_BREAK_LONG_LEN=0 CONFIG_LV_WIDGETS_HAS_DEFAULT_VALUE=y CONFIG_LV_USE_ANIMIMG=y CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_ARCLABEL=y CONFIG_LV_USE_BAR=y CONFIG_LV_USE_BUTTON=y CONFIG_LV_USE_BUTTONMATRIX=y CONFIG_LV_USE_CALENDAR=y # CONFIG_LV_CALENDAR_WEEK_STARTS_MONDAY is not set + +# +# Days name configuration +# +CONFIG_LV_MONDAY_STR="Mo" +CONFIG_LV_TUESDAY_STR="Tu" +CONFIG_LV_WEDNESDAY_STR="We" +CONFIG_LV_THURSDAY_STR="Th" +CONFIG_LV_FRIDAY_STR="Fr" +CONFIG_LV_SATURDAY_STR="Sa" +CONFIG_LV_SUNDAY_STR="Su" +# end of Days name configuration + CONFIG_LV_USE_CALENDAR_HEADER_ARROW=y CONFIG_LV_USE_CALENDAR_HEADER_DROPDOWN=y # CONFIG_LV_USE_CALENDAR_CHINESE is not set @@ -2865,7 +3080,7 @@ CONFIG_LV_USE_GRID=y # # 3rd Party Libraries # -CONFIG_LV_FS_DEFAULT_DRIVE_LETTER=0 +CONFIG_LV_FS_DEFAULT_DRIVER_LETTER=0 CONFIG_LV_USE_FS_STDIO=y CONFIG_LV_FS_STDIO_LETTER=65 CONFIG_LV_FS_STDIO_PATH="" @@ -2877,6 +3092,8 @@ CONFIG_LV_FS_STDIO_CACHE_SIZE=0 # CONFIG_LV_USE_FS_LITTLEFS is not set # CONFIG_LV_USE_FS_ARDUINO_ESP_LITTLEFS is not set # CONFIG_LV_USE_FS_ARDUINO_SD is not set +# CONFIG_LV_USE_FS_UEFI is not set +# CONFIG_LV_USE_FS_FROGFS is not set CONFIG_LV_USE_LODEPNG=y # CONFIG_LV_USE_LIBPNG is not set # CONFIG_LV_USE_BMP is not set @@ -2899,18 +3116,7 @@ CONFIG_LV_USE_LODEPNG=y # Others # # CONFIG_LV_USE_SNAPSHOT is not set -CONFIG_LV_USE_SYSMON=y -CONFIG_LV_USE_PERF_MONITOR=y -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_LEFT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_RIGHT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_LEFT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_MID is not set -CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_RIGHT=y -# CONFIG_LV_PERF_MONITOR_ALIGN_LEFT_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_RIGHT_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_CENTER is not set -# CONFIG_LV_USE_PERF_MONITOR_LOG_MODE is not set +# CONFIG_LV_USE_SYSMON is not set # CONFIG_LV_USE_PROFILER is not set # CONFIG_LV_USE_MONKEY is not set # CONFIG_LV_USE_GRIDNAV is not set @@ -2919,6 +3125,14 @@ CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_RIGHT=y CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_IME_PINYIN is not set # CONFIG_LV_USE_FILE_EXPLORER is not set +# CONFIG_LV_USE_FONT_MANAGER is not set +# CONFIG_LV_USE_TEST is not set +# CONFIG_LV_USE_TRANSLATION is not set +# CONFIG_LV_USE_XML is not set +# CONFIG_LV_USE_COLOR_FILTER is not set +CONFIG_LVGL_VERSION_MAJOR=9 +CONFIG_LVGL_VERSION_MINOR=4 +CONFIG_LVGL_VERSION_PATCH=0 # end of Others # @@ -2931,6 +3145,7 @@ CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_NUTTX is not set # CONFIG_LV_USE_LINUX_DRM is not set # CONFIG_LV_USE_TFT_ESPI is not set +# CONFIG_LV_USE_LOVYAN_GFX is not set # CONFIG_LV_USE_EVDEV is not set # CONFIG_LV_USE_LIBINPUT is not set # CONFIG_LV_USE_ST7735 is not set @@ -2938,7 +3153,11 @@ CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_ST7796 is not set # CONFIG_LV_USE_ILI9341 is not set # CONFIG_LV_USE_GENERIC_MIPI is not set +# CONFIG_LV_USE_NXP_ELCDIF is not set # CONFIG_LV_USE_RENESAS_GLCDC is not set +# CONFIG_LV_USE_ST_LTDC is not set +# CONFIG_LV_USE_FT81X is not set +# CONFIG_LV_USE_UEFI is not set # CONFIG_LV_USE_OPENGLES is not set # CONFIG_LV_USE_QNX is not set # end of Devices @@ -2952,14 +3171,19 @@ CONFIG_LV_USE_OBSERVER=y # # Demos # +CONFIG_LV_BUILD_DEMOS=y # CONFIG_LV_USE_DEMO_WIDGETS is not set # CONFIG_LV_USE_DEMO_KEYPAD_AND_ENCODER is not set +# CONFIG_LV_USE_DEMO_BENCHMARK is not set # CONFIG_LV_USE_DEMO_RENDER is not set # CONFIG_LV_USE_DEMO_SCROLL is not set # CONFIG_LV_USE_DEMO_STRESS is not set # CONFIG_LV_USE_DEMO_MUSIC is not set # CONFIG_LV_USE_DEMO_FLEX_LAYOUT is not set # CONFIG_LV_USE_DEMO_MULTILANG is not set +# CONFIG_LV_USE_DEMO_SMARTWATCH is not set +# CONFIG_LV_USE_DEMO_EBIKE is not set +# CONFIG_LV_USE_DEMO_HIGH_RES is not set # end of Demos # end of LVGL configuration # end of Component config @@ -2998,11 +3222,22 @@ CONFIG_STACK_CHECK_NONE=y # CONFIG_STACK_CHECK_STRONG is not set # CONFIG_STACK_CHECK_ALL is not set # CONFIG_WARN_WRITE_STRINGS is not set -# CONFIG_MCPWM_ISR_IN_IRAM is not set +# CONFIG_ANA_CMPR_ISR_IRAM_SAFE is not set +# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set +# CONFIG_MCPWM_ISR_IRAM_SAFE is not set # CONFIG_EVENT_LOOP_PROFILING is not set CONFIG_POST_EVENTS_FROM_ISR=y CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +CONFIG_GDBSTUB_SUPPORT_TASKS=y +CONFIG_GDBSTUB_MAX_TASKS=32 # CONFIG_OTA_ALLOW_HTTP is not set +CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +CONFIG_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_7=y +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +CONFIG_BROWNOUT_DET_LVL=7 +CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 CONFIG_MAIN_TASK_STACK_SIZE=3584 @@ -3023,11 +3258,6 @@ CONFIG_TASK_WDT_TIMEOUT_S=5 CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set -CONFIG_BROWNOUT_DET=y -CONFIG_BROWNOUT_DET_LVL_SEL_7=y -# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set -# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set -CONFIG_BROWNOUT_DET_LVL=7 CONFIG_IPC_TASK_STACK_SIZE=1024 CONFIG_TIMER_TASK_STACK_SIZE=3584 CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 @@ -3037,8 +3267,6 @@ CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y CONFIG_ESP32_WIFI_TX_BA_WIN=6 CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_NVS_ENABLED=y CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 @@ -3050,19 +3278,8 @@ CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y CONFIG_WPA_MBEDTLS_CRYPTO=y CONFIG_WPA_MBEDTLS_TLS_CLIENT=y # CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set -CONFIG_ESP32_ENABLE_COREDUMP_TO_UART=y -# CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE is not set -# CONFIG_ESP32_COREDUMP_DATA_FORMAT_BIN is not set -CONFIG_ESP32_COREDUMP_DATA_FORMAT_ELF=y -CONFIG_ESP32_COREDUMP_CHECKSUM_CRC32=y -# CONFIG_ESP32_COREDUMP_CHECKSUM_SHA256 is not set -CONFIG_ESP32_ENABLE_COREDUMP=y -CONFIG_ESP32_CORE_DUMP_MAX_TASKS_NUM=64 -CONFIG_ESP32_CORE_DUMP_UART_DELAY=0 -CONFIG_ESP32_CORE_DUMP_STACK_SIZE=0 -CONFIG_ESP32_CORE_DUMP_DECODE_INFO=y -# CONFIG_ESP32_CORE_DUMP_DECODE_DISABLE is not set -CONFIG_ESP32_CORE_DUMP_DECODE="info" +# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set +CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y CONFIG_TIMER_TASK_PRIORITY=1 CONFIG_TIMER_TASK_STACK_DEPTH=2048 CONFIG_TIMER_QUEUE_LENGTH=10 @@ -3090,13 +3307,18 @@ CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y # CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set # CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF -CONFIG_PPP_SUPPORT=y -# CONFIG_PPP_NOTIFY_PHASE_SUPPORT is not set -# CONFIG_PPP_PAP_SUPPORT is not set -# CONFIG_PPP_CHAP_SUPPORT is not set -# CONFIG_PPP_MSCHAP_SUPPORT is not set -# CONFIG_PPP_MPPE_SUPPORT is not set -# CONFIG_PPP_DEBUG_ON is not set +# CONFIG_PPP_SUPPORT is not set +CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set +CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y +# CONFIG_NEWLIB_NANO_FORMAT is not set +CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y +# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set +# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 CONFIG_ESP32_PTHREAD_STACK_MIN=768 @@ -3153,8 +3375,6 @@ CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y CONFIG_ESP32_WIFI_TX_BA_WIN=6 CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_RX_BA_WIN=6 CONFIG_ESP32_WIFI_NVS_ENABLED=y CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 diff --git a/sdkconfig.defaults b/sdkconfig.defaults index 769b6cf..7074832 100644 --- a/sdkconfig.defaults +++ b/sdkconfig.defaults @@ -5,8 +5,6 @@ CONFIG_IDF_TARGET="esp32p4" CONFIG_ESPTOOLPY_FLASHMODE_QIO=y CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y CONFIG_PARTITION_TABLE_CUSTOM=y -CONFIG_EXAMPLE_ENABLE_CAM_SENSOR_PIC_VFLIP=n -CONFIG_EXAMPLE_ENABLE_CAM_SENSOR_PIC_HFLIP=n CONFIG_COMPILER_OPTIMIZATION_PERF=y CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE=y CONFIG_SPIRAM=y @@ -22,25 +20,9 @@ CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y CONFIG_FREERTOS_TASK_CREATE_ALLOW_EXT_MEM=n CONFIG_VFS_MAX_COUNT=15 -CONFIG_ESP_BROOKESIA_LOG_STYLE_STD=y -CONFIG_ESP_BROOKESIA_MEMORY_USE_CUSTOM=y CONFIG_BSP_LCD_DPI_BUFFER_NUMS=2 CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR=y CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE=y -CONFIG_CAMERA_SC2336=y -CONFIG_CAMERA_SC2336_MIPI_RAW10_1280x720_60FPS=y -CONFIG_CAMERA_SC2336_CUSTOMIZED_IPA_JSON_CONFIGURATION_FILE=y -CONFIG_CAMERA_SC2336_CUSTOMIZED_IPA_JSON_CONFIGURATION_FILE_PATH="components/apps/camera/sc2336_custom.json" -CONFIG_ESP_VIDEO_ENABLE_DVP_VIDEO_DEVICE=n -CONFIG_ESP_VIDEO_ENABLE_ISP_PIPELINE_CONTROLLER=y -CONFIG_LV_COLOR_SCREEN_TRANSP=y -CONFIG_LV_MEM_CUSTOM=y -CONFIG_LV_MEM_CUSTOM_INCLUDE="esp_heap_caps.h" -CONFIG_LV_MEMCPY_MEMSET_STD=y -CONFIG_LV_CIRCLE_CACHE_SIZE=10 -CONFIG_LV_LAYER_SIMPLE_BUF_SIZE=102400 -CONFIG_LV_IMG_CACHE_DEF_SIZE=20 -CONFIG_LV_GRAD_CACHE_DEF_SIZE=10240 CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y CONFIG_LV_USE_MONKEY=n CONFIG_LV_USE_DEMO_WIDGETS=n @@ -71,9 +53,6 @@ CONFIG_LV_USE_DRAW_SW_COMPLEX_GRADIENTS=y CONFIG_LV_USE_PRIVATE_API=y CONFIG_SPIRAM_USE_MALLOC=y - -#Specifique P4 -CONFIG_SLAVE_IDF_TARGET_ESP32C6=y - +CONFIG_LV_USE_OBSERVER=y diff --git a/sdkconfig.defaults.esp32p4 b/sdkconfig.defaults.esp32p4 index 480c4d3..62d56b4 100644 --- a/sdkconfig.defaults.esp32p4 +++ b/sdkconfig.defaults.esp32p4 @@ -27,5 +27,21 @@ CONFIG_LV_USE_OBSERVER=n CONFIG_LV_USE_SYSMON=n CONFIG_LV_USE_PERF_MONITOR=n +#Permet d'afficher des dégradés corrects +CONFIG_BSP_LCD_COLOR_FORMAT_RGB888=y + +#on active les logs +CONFIG_LV_USE_LOG=y +CONFIG_LV_LOG_LEVEL_WARN=y +CONFIG_LV_LOG_LEVEL=2 +CONFIG_LV_LOG_PRINTF=y +CONFIG_LV_LOG_USE_TIMESTAMP=y +CONFIG_LV_LOG_USE_FILE_LINE=y + +#Specifique P4 +CONFIG_SLAVE_IDF_TARGET_ESP32C6=y + +CONFIG_SPIRAM_USE_MALLOC=y +CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_BUILD_EXAMPLES is not set diff --git a/sdkconfig.old b/sdkconfig.old index bda75c1..eebaed9 100644 --- a/sdkconfig.old +++ b/sdkconfig.old @@ -1,643 +1,50 @@ # # Automatically generated file. DO NOT EDIT. -# Espressif IoT Development Framework (ESP-IDF) 5.5.0 Project Configuration +# Espressif IoT Development Framework (ESP-IDF) 5.5.1 Project Configuration # -CONFIG_SOC_ADC_SUPPORTED=y -CONFIG_SOC_ANA_CMPR_SUPPORTED=y -CONFIG_SOC_DEDICATED_GPIO_SUPPORTED=y -CONFIG_SOC_UART_SUPPORTED=y -CONFIG_SOC_GDMA_SUPPORTED=y -CONFIG_SOC_AHB_GDMA_SUPPORTED=y -CONFIG_SOC_AXI_GDMA_SUPPORTED=y -CONFIG_SOC_DW_GDMA_SUPPORTED=y -CONFIG_SOC_DMA2D_SUPPORTED=y -CONFIG_SOC_GPTIMER_SUPPORTED=y -CONFIG_SOC_PCNT_SUPPORTED=y -CONFIG_SOC_LCDCAM_SUPPORTED=y -CONFIG_SOC_LCDCAM_CAM_SUPPORTED=y -CONFIG_SOC_LCDCAM_I80_LCD_SUPPORTED=y -CONFIG_SOC_LCDCAM_RGB_LCD_SUPPORTED=y -CONFIG_SOC_MIPI_CSI_SUPPORTED=y -CONFIG_SOC_MIPI_DSI_SUPPORTED=y -CONFIG_SOC_MCPWM_SUPPORTED=y -CONFIG_SOC_TWAI_SUPPORTED=y -CONFIG_SOC_ETM_SUPPORTED=y -CONFIG_SOC_PARLIO_SUPPORTED=y -CONFIG_SOC_ASYNC_MEMCPY_SUPPORTED=y -CONFIG_SOC_EMAC_SUPPORTED=y -CONFIG_SOC_USB_OTG_SUPPORTED=y -CONFIG_SOC_WIRELESS_HOST_SUPPORTED=y -CONFIG_SOC_USB_SERIAL_JTAG_SUPPORTED=y -CONFIG_SOC_TEMP_SENSOR_SUPPORTED=y -CONFIG_SOC_SUPPORTS_SECURE_DL_MODE=y -CONFIG_SOC_ULP_SUPPORTED=y -CONFIG_SOC_LP_CORE_SUPPORTED=y -CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y CONFIG_SOC_EFUSE_SUPPORTED=y -CONFIG_SOC_RTC_FAST_MEM_SUPPORTED=y -CONFIG_SOC_RTC_MEM_SUPPORTED=y -CONFIG_SOC_RMT_SUPPORTED=y -CONFIG_SOC_I2S_SUPPORTED=y -CONFIG_SOC_SDM_SUPPORTED=y -CONFIG_SOC_GPSPI_SUPPORTED=y -CONFIG_SOC_LEDC_SUPPORTED=y -CONFIG_SOC_ISP_SUPPORTED=y -CONFIG_SOC_I2C_SUPPORTED=y -CONFIG_SOC_SYSTIMER_SUPPORTED=y -CONFIG_SOC_AES_SUPPORTED=y -CONFIG_SOC_MPI_SUPPORTED=y -CONFIG_SOC_SHA_SUPPORTED=y -CONFIG_SOC_HMAC_SUPPORTED=y -CONFIG_SOC_DIG_SIGN_SUPPORTED=y -CONFIG_SOC_ECC_SUPPORTED=y -CONFIG_SOC_ECC_EXTENDED_MODES_SUPPORTED=y -CONFIG_SOC_FLASH_ENC_SUPPORTED=y -CONFIG_SOC_SECURE_BOOT_SUPPORTED=y -CONFIG_SOC_BOD_SUPPORTED=y -CONFIG_SOC_APM_SUPPORTED=y -CONFIG_SOC_PMU_SUPPORTED=y -CONFIG_SOC_DCDC_SUPPORTED=y -CONFIG_SOC_PAU_SUPPORTED=y -CONFIG_SOC_LP_TIMER_SUPPORTED=y -CONFIG_SOC_ULP_LP_UART_SUPPORTED=y -CONFIG_SOC_LP_GPIO_MATRIX_SUPPORTED=y -CONFIG_SOC_LP_PERIPHERALS_SUPPORTED=y -CONFIG_SOC_LP_I2C_SUPPORTED=y -CONFIG_SOC_LP_I2S_SUPPORTED=y -CONFIG_SOC_LP_SPI_SUPPORTED=y -CONFIG_SOC_LP_ADC_SUPPORTED=y -CONFIG_SOC_LP_VAD_SUPPORTED=y -CONFIG_SOC_SPIRAM_SUPPORTED=y -CONFIG_SOC_PSRAM_DMA_CAPABLE=y -CONFIG_SOC_SDMMC_HOST_SUPPORTED=y -CONFIG_SOC_CLK_TREE_SUPPORTED=y -CONFIG_SOC_ASSIST_DEBUG_SUPPORTED=y -CONFIG_SOC_DEBUG_PROBE_SUPPORTED=y -CONFIG_SOC_WDT_SUPPORTED=y -CONFIG_SOC_SPI_FLASH_SUPPORTED=y -CONFIG_SOC_TOUCH_SENSOR_SUPPORTED=y -CONFIG_SOC_RNG_SUPPORTED=y -CONFIG_SOC_GP_LDO_SUPPORTED=y -CONFIG_SOC_PPA_SUPPORTED=y -CONFIG_SOC_LIGHT_SLEEP_SUPPORTED=y -CONFIG_SOC_DEEP_SLEEP_SUPPORTED=y -CONFIG_SOC_PM_SUPPORTED=y -CONFIG_SOC_XTAL_SUPPORT_40M=y -CONFIG_SOC_AES_SUPPORT_DMA=y -CONFIG_SOC_AES_SUPPORT_GCM=y -CONFIG_SOC_AES_GDMA=y -CONFIG_SOC_AES_SUPPORT_AES_128=y -CONFIG_SOC_AES_SUPPORT_AES_256=y -CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED=y -CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED=y -CONFIG_SOC_ADC_DMA_SUPPORTED=y -CONFIG_SOC_ADC_PERIPH_NUM=2 -CONFIG_SOC_ADC_MAX_CHANNEL_NUM=8 -CONFIG_SOC_ADC_ATTEN_NUM=4 -CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM=2 -CONFIG_SOC_ADC_PATT_LEN_MAX=16 -CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH=12 -CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH=12 -CONFIG_SOC_ADC_DIGI_IIR_FILTER_NUM=2 -CONFIG_SOC_ADC_DIGI_MONITOR_NUM=2 -CONFIG_SOC_ADC_DIGI_RESULT_BYTES=4 -CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV=4 -CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH=83333 -CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW=611 -CONFIG_SOC_ADC_RTC_MIN_BITWIDTH=12 -CONFIG_SOC_ADC_RTC_MAX_BITWIDTH=12 -CONFIG_SOC_ADC_SHARED_POWER=y -CONFIG_SOC_BROWNOUT_RESET_SUPPORTED=y -CONFIG_SOC_SHARED_IDCACHE_SUPPORTED=y -CONFIG_SOC_CACHE_WRITEBACK_SUPPORTED=y -CONFIG_SOC_CACHE_FREEZE_SUPPORTED=y -CONFIG_SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE=y -CONFIG_SOC_CPU_CORES_NUM=2 -CONFIG_SOC_CPU_INTR_NUM=32 -CONFIG_SOC_CPU_HAS_FLEXIBLE_INTC=y -CONFIG_SOC_INT_CLIC_SUPPORTED=y -CONFIG_SOC_INT_HW_NESTED_SUPPORTED=y -CONFIG_SOC_BRANCH_PREDICTOR_SUPPORTED=y -CONFIG_SOC_CPU_COPROC_NUM=3 -CONFIG_SOC_CPU_HAS_FPU=y -CONFIG_SOC_CPU_HAS_FPU_EXT_ILL_BUG=y -CONFIG_SOC_CPU_HAS_HWLOOP=y -CONFIG_SOC_CPU_HAS_PIE=y -CONFIG_SOC_HP_CPU_HAS_MULTIPLE_CORES=y -CONFIG_SOC_CPU_BREAKPOINTS_NUM=3 -CONFIG_SOC_CPU_WATCHPOINTS_NUM=3 -CONFIG_SOC_CPU_WATCHPOINT_MAX_REGION_SIZE=0x100 -CONFIG_SOC_CPU_HAS_PMA=y -CONFIG_SOC_CPU_IDRAM_SPLIT_USING_PMP=y -CONFIG_SOC_CPU_PMP_REGION_GRANULARITY=128 -CONFIG_SOC_CPU_HAS_LOCKUP_RESET=y -CONFIG_SOC_DS_SIGNATURE_MAX_BIT_LEN=4096 -CONFIG_SOC_DS_KEY_PARAM_MD_IV_LENGTH=16 -CONFIG_SOC_DS_KEY_CHECK_MAX_WAIT_US=1100 -CONFIG_SOC_DMA_CAN_ACCESS_FLASH=y -CONFIG_SOC_AHB_GDMA_VERSION=2 -CONFIG_SOC_GDMA_SUPPORT_CRC=y -CONFIG_SOC_GDMA_NUM_GROUPS_MAX=2 -CONFIG_SOC_GDMA_PAIRS_PER_GROUP_MAX=3 -CONFIG_SOC_AXI_GDMA_SUPPORT_PSRAM=y -CONFIG_SOC_GDMA_SUPPORT_ETM=y -CONFIG_SOC_GDMA_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_AXI_DMA_EXT_MEM_ENC_ALIGNMENT=16 -CONFIG_SOC_DMA2D_GROUPS=1 -CONFIG_SOC_DMA2D_TX_CHANNELS_PER_GROUP=3 -CONFIG_SOC_DMA2D_RX_CHANNELS_PER_GROUP=2 -CONFIG_SOC_ETM_GROUPS=1 -CONFIG_SOC_ETM_CHANNELS_PER_GROUP=50 -CONFIG_SOC_ETM_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_GPIO_PORT=1 -CONFIG_SOC_GPIO_PIN_COUNT=55 -CONFIG_SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER=y -CONFIG_SOC_GPIO_FLEX_GLITCH_FILTER_NUM=8 -CONFIG_SOC_GPIO_SUPPORT_PIN_HYS_FILTER=y -CONFIG_SOC_GPIO_SUPPORT_ETM=y -CONFIG_SOC_GPIO_SUPPORT_RTC_INDEPENDENT=y -CONFIG_SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP=y -CONFIG_SOC_LP_IO_HAS_INDEPENDENT_WAKEUP_SOURCE=y -CONFIG_SOC_LP_IO_CLOCK_IS_INDEPENDENT=y -CONFIG_SOC_GPIO_VALID_GPIO_MASK=0x007FFFFFFFFFFFFF -CONFIG_SOC_GPIO_IN_RANGE_MAX=54 -CONFIG_SOC_GPIO_OUT_RANGE_MAX=54 -CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK=0 -CONFIG_SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT=16 -CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK=0x007FFFFFFFFF0000 -CONFIG_SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX=y -CONFIG_SOC_GPIO_CLOCKOUT_CHANNEL_NUM=2 -CONFIG_SOC_CLOCKOUT_SUPPORT_CHANNEL_DIVIDER=y -CONFIG_SOC_DEBUG_PROBE_NUM_UNIT=1 -CONFIG_SOC_DEBUG_PROBE_MAX_OUTPUT_WIDTH=16 -CONFIG_SOC_GPIO_SUPPORT_FORCE_HOLD=y -CONFIG_SOC_RTCIO_PIN_COUNT=16 -CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED=y -CONFIG_SOC_RTCIO_HOLD_SUPPORTED=y -CONFIG_SOC_RTCIO_WAKE_SUPPORTED=y -CONFIG_SOC_DEDIC_GPIO_OUT_CHANNELS_NUM=8 -CONFIG_SOC_DEDIC_GPIO_IN_CHANNELS_NUM=8 -CONFIG_SOC_DEDIC_PERIPH_ALWAYS_ENABLE=y -CONFIG_SOC_ANA_CMPR_NUM=2 -CONFIG_SOC_ANA_CMPR_CAN_DISTINGUISH_EDGE=y -CONFIG_SOC_ANA_CMPR_SUPPORT_ETM=y -CONFIG_SOC_I2C_NUM=3 -CONFIG_SOC_HP_I2C_NUM=2 -CONFIG_SOC_I2C_FIFO_LEN=32 -CONFIG_SOC_I2C_CMD_REG_NUM=8 +CONFIG_SOC_EFUSE_KEY_PURPOSE_FIELD=y +CONFIG_SOC_CPU_CORES_NUM=1 +CONFIG_SOC_GPIO_IN_RANGE_MAX=65535 +CONFIG_SOC_GPIO_OUT_RANGE_MAX=65535 CONFIG_SOC_I2C_SUPPORT_SLAVE=y -CONFIG_SOC_I2C_SUPPORT_HW_FSM_RST=y -CONFIG_SOC_I2C_SUPPORT_HW_CLR_BUS=y -CONFIG_SOC_I2C_SUPPORT_XTAL=y -CONFIG_SOC_I2C_SUPPORT_RTC=y CONFIG_SOC_I2C_SUPPORT_10BIT_ADDR=y -CONFIG_SOC_I2C_SLAVE_SUPPORT_BROADCAST=y -CONFIG_SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE=y -CONFIG_SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS=y -CONFIG_SOC_I2C_SLAVE_SUPPORT_SLAVE_UNMATCH=y -CONFIG_SOC_I2C_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_LP_I2C_NUM=1 -CONFIG_SOC_LP_I2C_FIFO_LEN=16 -CONFIG_SOC_I2S_NUM=3 -CONFIG_SOC_I2S_HW_VERSION_2=y -CONFIG_SOC_I2S_SUPPORTS_ETM=y -CONFIG_SOC_I2S_SUPPORTS_XTAL=y -CONFIG_SOC_I2S_SUPPORTS_APLL=y -CONFIG_SOC_I2S_SUPPORTS_PCM=y -CONFIG_SOC_I2S_SUPPORTS_PDM=y -CONFIG_SOC_I2S_SUPPORTS_PDM_TX=y -CONFIG_SOC_I2S_SUPPORTS_PDM_RX=y -CONFIG_SOC_I2S_SUPPORTS_PDM_RX_HP_FILTER=y -CONFIG_SOC_I2S_SUPPORTS_TX_SYNC_CNT=y -CONFIG_SOC_I2S_SUPPORTS_TDM=y -CONFIG_SOC_I2S_PDM_MAX_TX_LINES=2 -CONFIG_SOC_I2S_PDM_MAX_RX_LINES=4 -CONFIG_SOC_I2S_TDM_FULL_DATA_WIDTH=y -CONFIG_SOC_I2S_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_LP_I2S_NUM=1 -CONFIG_SOC_ISP_BF_SUPPORTED=y -CONFIG_SOC_ISP_CCM_SUPPORTED=y -CONFIG_SOC_ISP_DEMOSAIC_SUPPORTED=y -CONFIG_SOC_ISP_DVP_SUPPORTED=y -CONFIG_SOC_ISP_SHARPEN_SUPPORTED=y -CONFIG_SOC_ISP_COLOR_SUPPORTED=y -CONFIG_SOC_ISP_LSC_SUPPORTED=y -CONFIG_SOC_ISP_SHARE_CSI_BRG=y -CONFIG_SOC_ISP_NUMS=1 -CONFIG_SOC_ISP_DVP_CTLR_NUMS=1 -CONFIG_SOC_ISP_AE_CTLR_NUMS=1 -CONFIG_SOC_ISP_AE_BLOCK_X_NUMS=5 -CONFIG_SOC_ISP_AE_BLOCK_Y_NUMS=5 -CONFIG_SOC_ISP_AF_CTLR_NUMS=1 -CONFIG_SOC_ISP_AF_WINDOW_NUMS=3 -CONFIG_SOC_ISP_BF_TEMPLATE_X_NUMS=3 -CONFIG_SOC_ISP_BF_TEMPLATE_Y_NUMS=3 -CONFIG_SOC_ISP_CCM_DIMENSION=3 -CONFIG_SOC_ISP_DEMOSAIC_GRAD_RATIO_INT_BITS=2 -CONFIG_SOC_ISP_DEMOSAIC_GRAD_RATIO_DEC_BITS=4 -CONFIG_SOC_ISP_DEMOSAIC_GRAD_RATIO_RES_BITS=26 -CONFIG_SOC_ISP_DVP_DATA_WIDTH_MAX=16 -CONFIG_SOC_ISP_SHARPEN_TEMPLATE_X_NUMS=3 -CONFIG_SOC_ISP_SHARPEN_TEMPLATE_Y_NUMS=3 -CONFIG_SOC_ISP_SHARPEN_H_FREQ_COEF_INT_BITS=3 -CONFIG_SOC_ISP_SHARPEN_H_FREQ_COEF_DEC_BITS=5 -CONFIG_SOC_ISP_SHARPEN_H_FREQ_COEF_RES_BITS=24 -CONFIG_SOC_ISP_SHARPEN_M_FREQ_COEF_INT_BITS=3 -CONFIG_SOC_ISP_SHARPEN_M_FREQ_COEF_DEC_BITS=5 -CONFIG_SOC_ISP_SHARPEN_M_FREQ_COEF_RES_BITS=24 -CONFIG_SOC_ISP_HIST_CTLR_NUMS=1 -CONFIG_SOC_ISP_HIST_BLOCK_X_NUMS=5 -CONFIG_SOC_ISP_HIST_BLOCK_Y_NUMS=5 -CONFIG_SOC_ISP_HIST_SEGMENT_NUMS=16 -CONFIG_SOC_ISP_HIST_INTERVAL_NUMS=15 -CONFIG_SOC_ISP_LSC_GRAD_RATIO_INT_BITS=2 -CONFIG_SOC_ISP_LSC_GRAD_RATIO_DEC_BITS=8 -CONFIG_SOC_ISP_LSC_GRAD_RATIO_RES_BITS=22 -CONFIG_SOC_LEDC_SUPPORT_PLL_DIV_CLOCK=y -CONFIG_SOC_LEDC_SUPPORT_XTAL_CLOCK=y -CONFIG_SOC_LEDC_TIMER_NUM=4 -CONFIG_SOC_LEDC_CHANNEL_NUM=8 -CONFIG_SOC_LEDC_TIMER_BIT_WIDTH=20 -CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED=y -CONFIG_SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX=16 -CONFIG_SOC_LEDC_SUPPORT_FADE_STOP=y -CONFIG_SOC_LEDC_FADE_PARAMS_BIT_WIDTH=10 -CONFIG_SOC_LEDC_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_MMU_PERIPH_NUM=2 -CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM=2 -CONFIG_SOC_MMU_DI_VADDR_SHARED=y -CONFIG_SOC_MMU_PER_EXT_MEM_TARGET=y -CONFIG_SOC_MPU_MIN_REGION_SIZE=0x20000000 -CONFIG_SOC_MPU_REGIONS_MAX_NUM=8 -CONFIG_SOC_PCNT_GROUPS=1 -CONFIG_SOC_PCNT_UNITS_PER_GROUP=4 -CONFIG_SOC_PCNT_CHANNELS_PER_UNIT=2 -CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT=2 -CONFIG_SOC_PCNT_SUPPORT_RUNTIME_THRES_UPDATE=y -CONFIG_SOC_PCNT_SUPPORT_CLEAR_SIGNAL=y -CONFIG_SOC_RMT_GROUPS=1 -CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP=4 -CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP=4 -CONFIG_SOC_RMT_CHANNELS_PER_GROUP=8 -CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL=48 -CONFIG_SOC_RMT_SUPPORT_RX_PINGPONG=y -CONFIG_SOC_RMT_SUPPORT_RX_DEMODULATION=y -CONFIG_SOC_RMT_SUPPORT_TX_ASYNC_STOP=y -CONFIG_SOC_RMT_SUPPORT_TX_LOOP_COUNT=y -CONFIG_SOC_RMT_SUPPORT_TX_LOOP_AUTO_STOP=y -CONFIG_SOC_RMT_SUPPORT_TX_SYNCHRO=y -CONFIG_SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY=y -CONFIG_SOC_RMT_SUPPORT_XTAL=y -CONFIG_SOC_RMT_SUPPORT_RC_FAST=y -CONFIG_SOC_RMT_SUPPORT_DMA=y -CONFIG_SOC_RMT_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_LCD_I80_SUPPORTED=y -CONFIG_SOC_LCD_RGB_SUPPORTED=y -CONFIG_SOC_LCDCAM_I80_NUM_BUSES=1 -CONFIG_SOC_LCDCAM_I80_BUS_WIDTH=24 -CONFIG_SOC_LCDCAM_RGB_NUM_PANELS=1 -CONFIG_SOC_LCDCAM_RGB_DATA_WIDTH=24 -CONFIG_SOC_LCD_SUPPORT_RGB_YUV_CONV=y -CONFIG_SOC_MCPWM_GROUPS=2 -CONFIG_SOC_MCPWM_TIMERS_PER_GROUP=3 -CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP=3 -CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR=2 -CONFIG_SOC_MCPWM_EVENT_COMPARATORS_PER_OPERATOR=2 -CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR=2 -CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR=2 -CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP=3 -CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP=y -CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER=3 -CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP=3 -CONFIG_SOC_MCPWM_SWSYNC_CAN_PROPAGATE=y -CONFIG_SOC_MCPWM_SUPPORT_ETM=y -CONFIG_SOC_MCPWM_SUPPORT_EVENT_COMPARATOR=y -CONFIG_SOC_MCPWM_CAPTURE_CLK_FROM_GROUP=y -CONFIG_SOC_USB_OTG_PERIPH_NUM=2 -CONFIG_SOC_USB_UTMI_PHY_NUM=1 -CONFIG_SOC_PARLIO_GROUPS=1 -CONFIG_SOC_PARLIO_TX_UNITS_PER_GROUP=1 -CONFIG_SOC_PARLIO_RX_UNITS_PER_GROUP=1 -CONFIG_SOC_PARLIO_TX_UNIT_MAX_DATA_WIDTH=16 -CONFIG_SOC_PARLIO_RX_UNIT_MAX_DATA_WIDTH=16 -CONFIG_SOC_PARLIO_TX_CLK_SUPPORT_GATING=y -CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_GATING=y -CONFIG_SOC_PARLIO_RX_CLK_SUPPORT_OUTPUT=y -CONFIG_SOC_PARLIO_TRANS_BIT_ALIGN=y -CONFIG_SOC_PARLIO_TX_SIZE_BY_DMA=y -CONFIG_SOC_PARLIO_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_MPI_MEM_BLOCKS_NUM=4 -CONFIG_SOC_MPI_OPERATIONS_NUM=3 -CONFIG_SOC_RSA_MAX_BIT_LEN=4096 -CONFIG_SOC_SDMMC_USE_IOMUX=y -CONFIG_SOC_SDMMC_USE_GPIO_MATRIX=y -CONFIG_SOC_SDMMC_NUM_SLOTS=2 -CONFIG_SOC_SDMMC_DELAY_PHASE_NUM=4 -CONFIG_SOC_SDMMC_IO_POWER_EXTERNAL=y -CONFIG_SOC_SDMMC_PSRAM_DMA_CAPABLE=y -CONFIG_SOC_SDMMC_UHS_I_SUPPORTED=y -CONFIG_SOC_SHA_DMA_MAX_BUFFER_SIZE=3968 -CONFIG_SOC_SHA_SUPPORT_DMA=y -CONFIG_SOC_SHA_SUPPORT_RESUME=y -CONFIG_SOC_SHA_GDMA=y -CONFIG_SOC_SHA_SUPPORT_SHA1=y -CONFIG_SOC_SHA_SUPPORT_SHA224=y -CONFIG_SOC_SHA_SUPPORT_SHA256=y -CONFIG_SOC_SHA_SUPPORT_SHA384=y -CONFIG_SOC_SHA_SUPPORT_SHA512=y -CONFIG_SOC_SHA_SUPPORT_SHA512_224=y -CONFIG_SOC_SHA_SUPPORT_SHA512_256=y -CONFIG_SOC_SHA_SUPPORT_SHA512_T=y -CONFIG_SOC_ECDSA_SUPPORT_EXPORT_PUBKEY=y -CONFIG_SOC_ECDSA_SUPPORT_DETERMINISTIC_MODE=y -CONFIG_SOC_ECDSA_USES_MPI=y -CONFIG_SOC_SDM_GROUPS=1 -CONFIG_SOC_SDM_CHANNELS_PER_GROUP=8 -CONFIG_SOC_SDM_CLK_SUPPORT_PLL_F80M=y -CONFIG_SOC_SDM_CLK_SUPPORT_XTAL=y -CONFIG_SOC_SPI_PERIPH_NUM=3 -CONFIG_SOC_SPI_MAX_CS_NUM=6 -CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE=64 -CONFIG_SOC_SPI_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_SPI_SUPPORT_SLAVE_HD_VER2=y -CONFIG_SOC_SPI_SLAVE_SUPPORT_SEG_TRANS=y -CONFIG_SOC_SPI_SUPPORT_DDRCLK=y -CONFIG_SOC_SPI_SUPPORT_CD_SIG=y -CONFIG_SOC_SPI_SUPPORT_OCT=y -CONFIG_SOC_SPI_SUPPORT_CLK_XTAL=y -CONFIG_SOC_SPI_SUPPORT_CLK_RC_FAST=y -CONFIG_SOC_SPI_SUPPORT_CLK_SPLL=y -CONFIG_SOC_MEMSPI_IS_INDEPENDENT=y -CONFIG_SOC_SPI_MAX_PRE_DIVIDER=16 -CONFIG_SOC_LP_SPI_PERIPH_NUM=y -CONFIG_SOC_LP_SPI_MAXIMUM_BUFFER_SIZE=64 -CONFIG_SOC_SPIRAM_XIP_SUPPORTED=y -CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE=y -CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND=y -CONFIG_SOC_SPI_MEM_SUPPORT_AUTO_RESUME=y -CONFIG_SOC_SPI_MEM_SUPPORT_IDLE_INTR=y -CONFIG_SOC_SPI_MEM_SUPPORT_SW_SUSPEND=y -CONFIG_SOC_SPI_MEM_SUPPORT_CHECK_SUS=y -CONFIG_SOC_SPI_MEM_SUPPORT_TIMING_TUNING=y -CONFIG_SOC_MEMSPI_TIMING_TUNING_BY_DQS=y -CONFIG_SOC_SPI_MEM_SUPPORT_CACHE_32BIT_ADDR_MAP=y -CONFIG_SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT=y -CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED=y -CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED=y -CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED=y -CONFIG_SOC_MEMSPI_FLASH_PSRAM_INDEPENDENT=y -CONFIG_SOC_SYSTIMER_COUNTER_NUM=2 -CONFIG_SOC_SYSTIMER_ALARM_NUM=3 -CONFIG_SOC_SYSTIMER_BIT_WIDTH_LO=32 -CONFIG_SOC_SYSTIMER_BIT_WIDTH_HI=20 -CONFIG_SOC_SYSTIMER_FIXED_DIVIDER=y -CONFIG_SOC_SYSTIMER_SUPPORT_RC_FAST=y -CONFIG_SOC_SYSTIMER_INT_LEVEL=y -CONFIG_SOC_SYSTIMER_ALARM_MISS_COMPENSATE=y -CONFIG_SOC_SYSTIMER_SUPPORT_ETM=y -CONFIG_SOC_LP_TIMER_BIT_WIDTH_LO=32 -CONFIG_SOC_LP_TIMER_BIT_WIDTH_HI=16 -CONFIG_SOC_TIMER_GROUPS=2 -CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP=2 -CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH=54 -CONFIG_SOC_TIMER_GROUP_SUPPORT_XTAL=y -CONFIG_SOC_TIMER_GROUP_SUPPORT_RC_FAST=y -CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS=4 -CONFIG_SOC_TIMER_SUPPORT_ETM=y -CONFIG_SOC_TIMER_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_MWDT_SUPPORT_XTAL=y -CONFIG_SOC_MWDT_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_TOUCH_SENSOR_VERSION=3 -CONFIG_SOC_TOUCH_SENSOR_NUM=14 -CONFIG_SOC_TOUCH_SUPPORT_SLEEP_WAKEUP=y -CONFIG_SOC_TOUCH_SUPPORT_WATERPROOF=y -CONFIG_SOC_TOUCH_SUPPORT_PROX_SENSING=y -CONFIG_SOC_TOUCH_PROXIMITY_CHANNEL_NUM=3 -CONFIG_SOC_TOUCH_PROXIMITY_MEAS_DONE_SUPPORTED=y -CONFIG_SOC_TOUCH_SUPPORT_FREQ_HOP=y -CONFIG_SOC_TOUCH_SAMPLE_CFG_NUM=3 -CONFIG_SOC_TWAI_CONTROLLER_NUM=3 -CONFIG_SOC_TWAI_CLK_SUPPORT_XTAL=y -CONFIG_SOC_TWAI_BRP_MIN=2 -CONFIG_SOC_TWAI_BRP_MAX=32768 -CONFIG_SOC_TWAI_SUPPORTS_RX_STATUS=y -CONFIG_SOC_TWAI_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_EFUSE_DIS_PAD_JTAG=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_ICACHE=y +CONFIG_SOC_EFUSE_DIS_DOWNLOAD_DCACHE=y +CONFIG_SOC_EFUSE_HARD_DIS_JTAG=y CONFIG_SOC_EFUSE_DIS_USB_JTAG=y -CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y CONFIG_SOC_EFUSE_SOFT_DIS_JTAG=y -CONFIG_SOC_EFUSE_DIS_DOWNLOAD_MSPI=y -CONFIG_SOC_EFUSE_ECDSA_KEY=y -CONFIG_SOC_KEY_MANAGER_ECDSA_KEY_DEPLOY=y -CONFIG_SOC_KEY_MANAGER_FE_KEY_DEPLOY=y +CONFIG_SOC_EFUSE_DIS_DIRECT_BOOT=y +CONFIG_SOC_EFUSE_DIS_ICACHE=y CONFIG_SOC_SECURE_BOOT_V2_RSA=y -CONFIG_SOC_SECURE_BOOT_V2_ECC=y CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS=3 CONFIG_SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS=y CONFIG_SOC_SUPPORT_SECURE_BOOT_REVOKE_KEY=y -CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX=64 CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES=y CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_OPTIONS=y CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_128=y CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES_256=y -CONFIG_SOC_UART_NUM=6 -CONFIG_SOC_UART_HP_NUM=5 -CONFIG_SOC_UART_LP_NUM=1 -CONFIG_SOC_UART_FIFO_LEN=128 -CONFIG_SOC_LP_UART_FIFO_LEN=16 -CONFIG_SOC_UART_BITRATE_MAX=5000000 -CONFIG_SOC_UART_SUPPORT_PLL_F80M_CLK=y -CONFIG_SOC_UART_SUPPORT_RTC_CLK=y -CONFIG_SOC_UART_SUPPORT_XTAL_CLK=y -CONFIG_SOC_UART_SUPPORT_WAKEUP_INT=y -CONFIG_SOC_UART_HAS_LP_UART=y -CONFIG_SOC_UART_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_UART_SUPPORT_FSM_TX_WAIT_SEND=y -CONFIG_SOC_LP_I2S_SUPPORT_VAD=y -CONFIG_SOC_COEX_HW_PTI=y -CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE=21 -CONFIG_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 -CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP=y -CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP_MODE_PER_PIN=y -CONFIG_SOC_PM_EXT1_WAKEUP_BY_PMU=y -CONFIG_SOC_PM_SUPPORT_WIFI_WAKEUP=y -CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP=y -CONFIG_SOC_PM_SUPPORT_XTAL32K_PD=y -CONFIG_SOC_PM_SUPPORT_RC32K_PD=y -CONFIG_SOC_PM_SUPPORT_RC_FAST_PD=y -CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD=y -CONFIG_SOC_PM_SUPPORT_TOP_PD=y -CONFIG_SOC_PM_SUPPORT_CNNT_PD=y -CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD=y -CONFIG_SOC_PM_SUPPORT_DEEPSLEEP_CHECK_STUB_ONLY=y -CONFIG_SOC_PM_CPU_RETENTION_BY_SW=y -CONFIG_SOC_PM_PAU_LINK_NUM=4 -CONFIG_SOC_PM_PAU_REGDMA_LINK_MULTI_ADDR=y -CONFIG_SOC_PAU_IN_TOP_DOMAIN=y -CONFIG_SOC_CPU_IN_TOP_DOMAIN=y -CONFIG_SOC_PM_PAU_REGDMA_UPDATE_CACHE_BEFORE_WAIT_COMPARE=y -CONFIG_SOC_SLEEP_SYSTIMER_STALL_WORKAROUND=y -CONFIG_SOC_SLEEP_TGWDT_STOP_WORKAROUND=y -CONFIG_SOC_PSRAM_VDD_POWER_MPLL=y -CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION=y -CONFIG_SOC_CLK_APLL_SUPPORTED=y -CONFIG_SOC_CLK_MPLL_SUPPORTED=y -CONFIG_SOC_CLK_SDIO_PLL_SUPPORTED=y -CONFIG_SOC_CLK_XTAL32K_SUPPORTED=y -CONFIG_SOC_CLK_RC32K_SUPPORTED=y -CONFIG_SOC_CLK_LP_FAST_SUPPORT_LP_PLL=y -CONFIG_SOC_CLK_LP_FAST_SUPPORT_XTAL=y -CONFIG_SOC_PERIPH_CLK_CTRL_SHARED=y -CONFIG_SOC_CLK_ANA_I2C_MST_HAS_ROOT_GATE=y -CONFIG_SOC_TEMPERATURE_SENSOR_LP_PLL_SUPPORT=y -CONFIG_SOC_TEMPERATURE_SENSOR_INTR_SUPPORT=y -CONFIG_SOC_TSENS_IS_INDEPENDENT_FROM_ADC=y -CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_ETM=y -CONFIG_SOC_TEMPERATURE_SENSOR_SUPPORT_SLEEP_RETENTION=y -CONFIG_SOC_MEM_TCM_SUPPORTED=y -CONFIG_SOC_MEM_NON_CONTIGUOUS_SRAM=y -CONFIG_SOC_ASYNCHRONOUS_BUS_ERROR_MODE=y -CONFIG_SOC_EMAC_IEEE1588V2_SUPPORTED=y -CONFIG_SOC_EMAC_USE_MULTI_IO_MUX=y -CONFIG_SOC_EMAC_MII_USE_GPIO_MATRIX=y -CONFIG_SOC_JPEG_CODEC_SUPPORTED=y -CONFIG_SOC_JPEG_DECODE_SUPPORTED=y -CONFIG_SOC_JPEG_ENCODE_SUPPORTED=y -CONFIG_SOC_LCDCAM_CAM_SUPPORT_RGB_YUV_CONV=y -CONFIG_SOC_LCDCAM_CAM_PERIPH_NUM=1 -CONFIG_SOC_LCDCAM_CAM_DATA_WIDTH_MAX=16 -CONFIG_SOC_LP_CORE_SUPPORT_ETM=y -CONFIG_SOC_LP_CORE_SUPPORT_LP_ADC=y -CONFIG_SOC_LP_CORE_SUPPORT_LP_VAD=y CONFIG_IDF_CMAKE=y CONFIG_IDF_TOOLCHAIN="gcc" CONFIG_IDF_TOOLCHAIN_GCC=y -CONFIG_IDF_TARGET_ARCH_RISCV=y -CONFIG_IDF_TARGET_ARCH="riscv" -CONFIG_IDF_TARGET="esp32p4" -CONFIG_IDF_INIT_VERSION="$IDF_INIT_VERSION" -CONFIG_IDF_TARGET_ESP32P4=y -CONFIG_IDF_FIRMWARE_CHIP_ID=0x0012 +CONFIG_IDF_TARGET="linux" +CONFIG_IDF_INIT_VERSION="5.5.1" +CONFIG_IDF_TARGET_LINUX=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0xFFFF # # Build type # -CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y -# CONFIG_APP_BUILD_TYPE_RAM is not set +CONFIG_APP_BUILD_TYPE_RAM=y CONFIG_APP_BUILD_GENERATE_BINARIES=y -CONFIG_APP_BUILD_BOOTLOADER=y -CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# CONFIG_APP_BUILD_TYPE_PURE_RAM_APP is not set # CONFIG_APP_REPRODUCIBLE_BUILD is not set # CONFIG_APP_NO_BLOBS is not set # end of Build type -# -# Bootloader config -# - -# -# Bootloader manager -# -CONFIG_BOOTLOADER_COMPILE_TIME_DATE=y -CONFIG_BOOTLOADER_PROJECT_VER=1 -# end of Bootloader manager - -# -# Application Rollback -# -# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set -# end of Application Rollback - -# -# Bootloader Rollback -# -# end of Bootloader Rollback - -CONFIG_BOOTLOADER_OFFSET_IN_FLASH=0x2000 -CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y -# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set -# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set - -# -# Log -# -# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set -# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set -# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set -CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y -# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set -# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set -CONFIG_BOOTLOADER_LOG_LEVEL=3 - -# -# Format -# -# CONFIG_BOOTLOADER_LOG_COLORS is not set -CONFIG_BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS=y -# end of Format -# end of Log - -# -# Serial Flash Configurations -# -# CONFIG_BOOTLOADER_FLASH_DC_AWARE is not set -CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT=y -# end of Serial Flash Configurations - -# CONFIG_BOOTLOADER_FACTORY_RESET is not set -# CONFIG_BOOTLOADER_APP_TEST is not set -CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE=y -CONFIG_BOOTLOADER_WDT_ENABLE=y -# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set -CONFIG_BOOTLOADER_WDT_TIME_MS=9000 -# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set -# CONFIG_BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON is not set -# CONFIG_BOOTLOADER_SKIP_VALIDATE_ALWAYS is not set -CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 -# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set -# end of Bootloader config - -# -# Security features -# -CONFIG_SECURE_BOOT_V2_RSA_SUPPORTED=y -CONFIG_SECURE_BOOT_V2_ECC_SUPPORTED=y -CONFIG_SECURE_BOOT_V2_PREFERRED=y -# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set -# CONFIG_SECURE_BOOT is not set -# CONFIG_SECURE_FLASH_ENC_ENABLED is not set -CONFIG_SECURE_ROM_DL_MODE_ENABLED=y -# end of Security features - -# -# Application manager -# -CONFIG_APP_COMPILE_TIME_DATE=y -# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set -# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set -# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set -CONFIG_APP_RETRIEVE_LEN_ELF_SHA=9 -# end of Application manager - -CONFIG_ESP_ROM_HAS_CRC_LE=y -CONFIG_ESP_ROM_HAS_CRC_BE=y -CONFIG_ESP_ROM_UART_CLK_IS_XTAL=y -CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=6 -CONFIG_ESP_ROM_USB_OTG_NUM=5 -CONFIG_ESP_ROM_HAS_RETARGETABLE_LOCKING=y -CONFIG_ESP_ROM_GET_CLK_FREQ=y -CONFIG_ESP_ROM_HAS_RVFPLIB=y -CONFIG_ESP_ROM_HAS_HAL_WDT=y -CONFIG_ESP_ROM_HAS_HAL_SYSTIMER=y -CONFIG_ESP_ROM_HAS_LAYOUT_TABLE=y -CONFIG_ESP_ROM_WDT_INIT_PATCH=y -CONFIG_ESP_ROM_HAS_LP_ROM=y -CONFIG_ESP_ROM_WITHOUT_REGI2C=y -CONFIG_ESP_ROM_HAS_NEWLIB=y -CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT=y -CONFIG_ESP_ROM_HAS_NEWLIB_NANO_PRINTF_FLOAT_BUG=y -CONFIG_ESP_ROM_HAS_VERSION=y -CONFIG_ESP_ROM_CLIC_INT_TYPE_PATCH=y +CONFIG_ESP_ROM_USB_OTG_NUM=-1 +CONFIG_ESP_ROM_USB_SERIAL_DEVICE_NUM=-1 +CONFIG_ESP_ROM_HAS_ETS_PRINTF_BUG=y CONFIG_ESP_ROM_HAS_OUTPUT_PUTC_FUNC=y # @@ -649,93 +56,6 @@ CONFIG_BOOT_ROM_LOG_ALWAYS_ON=y # CONFIG_BOOT_ROM_LOG_ON_GPIO_LOW is not set # end of Boot ROM Behavior -# -# Serial flasher config -# -# CONFIG_ESPTOOLPY_NO_STUB is not set -CONFIG_ESPTOOLPY_FLASHMODE_QIO=y -# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set -# CONFIG_ESPTOOLPY_FLASHMODE_DIO is not set -# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set -CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR=y -CONFIG_ESPTOOLPY_FLASHMODE="dio" -CONFIG_ESPTOOLPY_FLASHFREQ_80M=y -# CONFIG_ESPTOOLPY_FLASHFREQ_40M is not set -# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set -CONFIG_ESPTOOLPY_FLASHFREQ="80m" -# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set -# CONFIG_ESPTOOLPY_FLASHSIZE_2MB is not set -# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set -# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set -CONFIG_ESPTOOLPY_FLASHSIZE_16MB=y -# CONFIG_ESPTOOLPY_FLASHSIZE_32MB is not set -# CONFIG_ESPTOOLPY_FLASHSIZE_64MB is not set -# CONFIG_ESPTOOLPY_FLASHSIZE_128MB is not set -CONFIG_ESPTOOLPY_FLASHSIZE="16MB" -# CONFIG_ESPTOOLPY_HEADER_FLASHSIZE_UPDATE is not set -CONFIG_ESPTOOLPY_BEFORE_RESET=y -# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set -CONFIG_ESPTOOLPY_BEFORE="default_reset" -CONFIG_ESPTOOLPY_AFTER_RESET=y -# CONFIG_ESPTOOLPY_AFTER_NORESET is not set -CONFIG_ESPTOOLPY_AFTER="hard_reset" -CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 -# end of Serial flasher config - -# -# Partition Table -# -# CONFIG_PARTITION_TABLE_SINGLE_APP is not set -# CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE is not set -# CONFIG_PARTITION_TABLE_TWO_OTA is not set -# CONFIG_PARTITION_TABLE_TWO_OTA_LARGE is not set -CONFIG_PARTITION_TABLE_CUSTOM=y -CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" -CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" -CONFIG_PARTITION_TABLE_OFFSET=0x8000 -CONFIG_PARTITION_TABLE_MD5=y -# end of Partition Table - -# -# Domotic Configuration -# -CONFIG_ESP_WIFI_SSID="myssid" -CONFIG_ESP_WIFI_PASSWORD="mypassword" -CONFIG_GPIO_INPUT_CAPTEUR_PIR=4 -# end of Domotic Configuration - -# -# Example Connection Configuration -# -CONFIG_ENV_GPIO_RANGE_MIN=0 -CONFIG_ENV_GPIO_RANGE_MAX=56 -CONFIG_ENV_GPIO_IN_RANGE_MAX=56 -CONFIG_ENV_GPIO_OUT_RANGE_MAX=56 -# CONFIG_EXAMPLE_CONNECT_WIFI is not set -CONFIG_EXAMPLE_CONNECT_ETHERNET=y -CONFIG_EXAMPLE_ETHERNET_EMAC_TASK_STACK_SIZE=2048 -CONFIG_EXAMPLE_USE_INTERNAL_ETHERNET=y -# CONFIG_EXAMPLE_USE_DM9051 is not set -# CONFIG_EXAMPLE_USE_W5500 is not set -# CONFIG_EXAMPLE_USE_OPENETH is not set -CONFIG_EXAMPLE_ETH_PHY_IP101=y -# CONFIG_EXAMPLE_ETH_PHY_RTL8201 is not set -# CONFIG_EXAMPLE_ETH_PHY_LAN87XX is not set -# CONFIG_EXAMPLE_ETH_PHY_DP83848 is not set -# CONFIG_EXAMPLE_ETH_PHY_KSZ80XX is not set -CONFIG_EXAMPLE_ETH_MDC_GPIO=31 -CONFIG_EXAMPLE_ETH_MDIO_GPIO=27 -CONFIG_EXAMPLE_ETH_PHY_RST_GPIO=26 -CONFIG_EXAMPLE_ETH_PHY_ADDR=1 -# CONFIG_EXAMPLE_CONNECT_PPP is not set -CONFIG_EXAMPLE_CONNECT_IPV4=y -CONFIG_EXAMPLE_CONNECT_IPV6=y -CONFIG_EXAMPLE_CONNECT_IPV6_PREF_LOCAL_LINK=y -# CONFIG_EXAMPLE_CONNECT_IPV6_PREF_GLOBAL is not set -# CONFIG_EXAMPLE_CONNECT_IPV6_PREF_SITE_LOCAL is not set -# CONFIG_EXAMPLE_CONNECT_IPV6_PREF_UNIQUE_LOCAL is not set -# end of Example Connection Configuration - # # Compiler options # @@ -747,8 +67,7 @@ CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y # CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set # CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set CONFIG_COMPILER_ASSERT_NDEBUG_EVALUATE=y -# CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB is not set -CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB=y +CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB=y CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2 # CONFIG_COMPILER_OPTIMIZATION_CHECKS_SILENT is not set CONFIG_COMPILER_HIDE_PATHS_MACROS=y @@ -760,16 +79,13 @@ CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y # CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set # CONFIG_COMPILER_NO_MERGE_CONSTANTS is not set # CONFIG_COMPILER_WARN_WRITE_STRINGS is not set -# CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS is not set CONFIG_COMPILER_DISABLE_DEFAULT_ERRORS=y # CONFIG_COMPILER_DISABLE_GCC12_WARNINGS is not set # CONFIG_COMPILER_DISABLE_GCC13_WARNINGS is not set # CONFIG_COMPILER_DISABLE_GCC14_WARNINGS is not set # CONFIG_COMPILER_DUMP_RTL_FILES is not set -CONFIG_COMPILER_RT_LIB_GCCLIB=y -CONFIG_COMPILER_RT_LIB_NAME="gcc" -# CONFIG_COMPILER_ORPHAN_SECTIONS_WARNING is not set -CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE=y +CONFIG_COMPILER_RT_LIB_HOST=y +CONFIG_COMPILER_RT_LIB_NAME="" # CONFIG_COMPILER_STATIC_ANALYZER is not set # end of Compiler options @@ -777,291 +93,12 @@ CONFIG_COMPILER_ORPHAN_SECTIONS_PLACE=y # Component config # -# -# Bluetooth -# -# CONFIG_BT_ENABLED is not set -CONFIG_BT_ALARM_MAX_NUM=50 -# end of Bluetooth - -# -# Console Library -# -# CONFIG_CONSOLE_SORTED_HELP is not set -# end of Console Library - -# -# Driver Configurations -# - -# -# TWAI Configuration -# -# CONFIG_TWAI_ISR_IN_IRAM is not set -# end of TWAI Configuration - -# -# Legacy ADC Driver Configuration -# -# CONFIG_ADC_SUPPRESS_DEPRECATE_WARN is not set - -# -# Legacy ADC Calibration Configuration -# -# CONFIG_ADC_CALI_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy ADC Calibration Configuration -# end of Legacy ADC Driver Configuration - -# -# Legacy MCPWM Driver Configurations -# -# CONFIG_MCPWM_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy MCPWM Driver Configurations - -# -# Legacy Timer Group Driver Configurations -# -# CONFIG_GPTIMER_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy Timer Group Driver Configurations - -# -# Legacy RMT Driver Configurations -# -# CONFIG_RMT_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy RMT Driver Configurations - -# -# Legacy I2S Driver Configurations -# -# CONFIG_I2S_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy I2S Driver Configurations - -# -# Legacy PCNT Driver Configurations -# -# CONFIG_PCNT_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy PCNT Driver Configurations - -# -# Legacy SDM Driver Configurations -# -# CONFIG_SDM_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy SDM Driver Configurations - -# -# Legacy Temperature Sensor Driver Configurations -# -# CONFIG_TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy Temperature Sensor Driver Configurations - -# -# Legacy Touch Sensor Driver Configurations -# -# CONFIG_TOUCH_SUPPRESS_DEPRECATE_WARN is not set -# end of Legacy Touch Sensor Driver Configurations -# end of Driver Configurations - -# -# eFuse Bit Manager -# -# CONFIG_EFUSE_CUSTOM_TABLE is not set -# CONFIG_EFUSE_VIRTUAL is not set -CONFIG_EFUSE_MAX_BLK_LEN=256 -# end of eFuse Bit Manager - -# -# ESP-TLS -# -CONFIG_ESP_TLS_USING_MBEDTLS=y -CONFIG_ESP_TLS_USE_DS_PERIPHERAL=y -# CONFIG_ESP_TLS_CLIENT_SESSION_TICKETS is not set -# CONFIG_ESP_TLS_SERVER_SESSION_TICKETS is not set -# CONFIG_ESP_TLS_SERVER_CERT_SELECT_HOOK is not set -# CONFIG_ESP_TLS_SERVER_MIN_AUTH_MODE_OPTIONAL is not set -# CONFIG_ESP_TLS_PSK_VERIFICATION is not set -# CONFIG_ESP_TLS_INSECURE is not set -# end of ESP-TLS - -# -# Wireless Coexistence -# -# CONFIG_ESP_COEX_GPIO_DEBUG is not set -# end of Wireless Coexistence - # # Common ESP-related # CONFIG_ESP_ERR_TO_NAME_LOOKUP=y # end of Common ESP-related -# -# ESP-Driver:Analog Comparator Configurations -# -# CONFIG_ANA_CMPR_ISR_IRAM_SAFE is not set -# CONFIG_ANA_CMPR_CTRL_FUNC_IN_IRAM is not set -# CONFIG_ANA_CMPR_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:Analog Comparator Configurations - -# -# ESP-Driver:GPIO Configurations -# -# CONFIG_GPIO_CTRL_FUNC_IN_IRAM is not set -# end of ESP-Driver:GPIO Configurations - -# -# ESP-Driver:GPTimer Configurations -# -CONFIG_GPTIMER_ISR_HANDLER_IN_IRAM=y -# CONFIG_GPTIMER_CTRL_FUNC_IN_IRAM is not set -# CONFIG_GPTIMER_ISR_IRAM_SAFE is not set -# CONFIG_GPTIMER_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:GPTimer Configurations - -# -# ESP-Driver:I2C Configurations -# -# CONFIG_I2C_ISR_IRAM_SAFE is not set -# CONFIG_I2C_ENABLE_DEBUG_LOG is not set -# CONFIG_I2C_ENABLE_SLAVE_DRIVER_VERSION_2 is not set -# end of ESP-Driver:I2C Configurations - -# -# ESP-Driver:I2S Configurations -# -# CONFIG_I2S_ISR_IRAM_SAFE is not set -# CONFIG_I2S_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:I2S Configurations - -# -# ESP-Driver:LEDC Configurations -# -# CONFIG_LEDC_CTRL_FUNC_IN_IRAM is not set -# end of ESP-Driver:LEDC Configurations - -# -# ESP-Driver:MCPWM Configurations -# -# CONFIG_MCPWM_ISR_IRAM_SAFE is not set -# CONFIG_MCPWM_CTRL_FUNC_IN_IRAM is not set -# CONFIG_MCPWM_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:MCPWM Configurations - -# -# ESP-Driver:Parallel IO Configurations -# -# CONFIG_PARLIO_ENABLE_DEBUG_LOG is not set -# CONFIG_PARLIO_ISR_IRAM_SAFE is not set -# end of ESP-Driver:Parallel IO Configurations - -# -# ESP-Driver:PCNT Configurations -# -# CONFIG_PCNT_CTRL_FUNC_IN_IRAM is not set -# CONFIG_PCNT_ISR_IRAM_SAFE is not set -# CONFIG_PCNT_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:PCNT Configurations - -# -# ESP-Driver:RMT Configurations -# -# CONFIG_RMT_ISR_IRAM_SAFE is not set -# CONFIG_RMT_RECV_FUNC_IN_IRAM is not set -# CONFIG_RMT_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:RMT Configurations - -# -# ESP-Driver:Sigma Delta Modulator Configurations -# -# CONFIG_SDM_CTRL_FUNC_IN_IRAM is not set -# CONFIG_SDM_ENABLE_DEBUG_LOG is not set -# end of ESP-Driver:Sigma Delta Modulator Configurations - -# -# ESP-Driver:SPI Configurations -# -# CONFIG_SPI_MASTER_IN_IRAM is not set -CONFIG_SPI_MASTER_ISR_IN_IRAM=y -# CONFIG_SPI_SLAVE_IN_IRAM is not set -CONFIG_SPI_SLAVE_ISR_IN_IRAM=y -# end of ESP-Driver:SPI Configurations - -# -# ESP-Driver:Temperature Sensor Configurations -# -# CONFIG_TEMP_SENSOR_ENABLE_DEBUG_LOG is not set -# CONFIG_TEMP_SENSOR_ISR_IRAM_SAFE is not set -# end of ESP-Driver:Temperature Sensor Configurations - -# -# ESP-Driver:UART Configurations -# -# CONFIG_UART_ISR_IN_IRAM is not set -# end of ESP-Driver:UART Configurations - -# -# ESP-Driver:USB Serial/JTAG Configuration -# -CONFIG_USJ_ENABLE_USB_SERIAL_JTAG=y -# end of ESP-Driver:USB Serial/JTAG Configuration - -# -# Ethernet -# -CONFIG_ETH_ENABLED=y -CONFIG_ETH_USE_ESP32_EMAC=y -CONFIG_ETH_PHY_INTERFACE_RMII=y -CONFIG_ETH_DMA_BUFFER_SIZE=512 -CONFIG_ETH_DMA_RX_BUFFER_NUM=20 -CONFIG_ETH_DMA_TX_BUFFER_NUM=10 -# CONFIG_ETH_SOFT_FLOW_CONTROL is not set -# CONFIG_ETH_IRAM_OPTIMIZATION is not set -CONFIG_ETH_USE_SPI_ETHERNET=y -# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set -# CONFIG_ETH_SPI_ETHERNET_W5500 is not set -# CONFIG_ETH_SPI_ETHERNET_KSZ8851SNL is not set -# CONFIG_ETH_USE_OPENETH is not set -# CONFIG_ETH_TRANSMIT_MUTEX is not set -# end of Ethernet - -# -# Event Loop Library -# -# CONFIG_ESP_EVENT_LOOP_PROFILING is not set -CONFIG_ESP_EVENT_POST_FROM_ISR=y -CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y -# end of Event Loop Library - -# -# ESP HTTP client -# -CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y -# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set -# CONFIG_ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH is not set -# CONFIG_ESP_HTTP_CLIENT_ENABLE_CUSTOM_TRANSPORT is not set -CONFIG_ESP_HTTP_CLIENT_EVENT_POST_TIMEOUT=2000 -# end of ESP HTTP client - -# -# HTTP Server -# -CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 -CONFIG_HTTPD_MAX_URI_LEN=512 -CONFIG_HTTPD_ERR_RESP_NO_DELAY=y -CONFIG_HTTPD_PURGE_BUF_LEN=32 -# CONFIG_HTTPD_LOG_PURGE_DATA is not set -# CONFIG_HTTPD_WS_SUPPORT is not set -# CONFIG_HTTPD_QUEUE_WORK_BLOCKING is not set -CONFIG_HTTPD_SERVER_EVENT_POST_TIMEOUT=2000 -# end of HTTP Server - -# -# ESP HTTPS OTA -# -# CONFIG_ESP_HTTPS_OTA_DECRYPT_CB is not set -# CONFIG_ESP_HTTPS_OTA_ALLOW_HTTP is not set -CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 -# end of ESP HTTPS OTA - # # Hardware Settings # @@ -1069,41 +106,23 @@ CONFIG_ESP_HTTPS_OTA_EVENT_POST_TIMEOUT=2000 # # Chip revision # -# CONFIG_ESP32P4_REV_MIN_0 is not set -CONFIG_ESP32P4_REV_MIN_1=y -# CONFIG_ESP32P4_REV_MIN_100 is not set -CONFIG_ESP32P4_REV_MIN_FULL=1 -CONFIG_ESP_REV_MIN_FULL=1 - -# -# Maximum Supported ESP32-P4 Revision (Rev v1.99) -# -CONFIG_ESP32P4_REV_MAX_FULL=199 -CONFIG_ESP_REV_MAX_FULL=199 +CONFIG_ESP_REV_MIN_FULL=0 +CONFIG_ESP_REV_MAX_FULL=999 CONFIG_ESP_EFUSE_BLOCK_REV_MIN_FULL=0 -CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=99 - -# -# Maximum Supported ESP32-P4 eFuse Block Revision (eFuse Block Rev v0.99) -# +CONFIG_ESP_EFUSE_BLOCK_REV_MAX_FULL=999 # end of Chip revision # # MAC Config # -CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y -CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_ONE=y -CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES=1 -CONFIG_ESP32P4_UNIVERSAL_MAC_ADDRESSES_ONE=y -CONFIG_ESP32P4_UNIVERSAL_MAC_ADDRESSES=1 # CONFIG_ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC is not set # end of MAC Config # # Sleep Config # +# CONFIG_ESP_SLEEP_POWER_DOWN_FLASH is not set CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND=y -CONFIG_ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND=y # CONFIG_ESP_SLEEP_MSPI_NEED_ALL_IO_PU is not set # CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set CONFIG_ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY=0 @@ -1115,196 +134,39 @@ CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS=y # # RTC Clock Config # -CONFIG_RTC_CLK_SRC_INT_RC=y -# CONFIG_RTC_CLK_SRC_EXT_CRYS is not set -# CONFIG_RTC_CLK_SRC_INT_RC32K is not set -CONFIG_RTC_CLK_CAL_CYCLES=1024 -CONFIG_RTC_FAST_CLK_SRC_RC_FAST=y -# CONFIG_RTC_FAST_CLK_SRC_XTAL is not set -# end of RTC Clock Config # # Peripheral Control # -CONFIG_PERIPH_CTRL_FUNC_IN_IRAM=y +# CONFIG_ESP_PERIPH_CTRL_FUNC_IN_IRAM is not set +CONFIG_ESP_REGI2C_CTRL_FUNC_IN_IRAM=y # end of Peripheral Control -# -# ETM Configuration -# -# CONFIG_ETM_ENABLE_DEBUG_LOG is not set -# end of ETM Configuration - -# -# GDMA Configurations -# -CONFIG_GDMA_CTRL_FUNC_IN_IRAM=y -# CONFIG_GDMA_ISR_IRAM_SAFE is not set -# CONFIG_GDMA_ENABLE_DEBUG_LOG is not set -# end of GDMA Configurations - -# -# DW_GDMA Configurations -# -# CONFIG_DW_GDMA_ENABLE_DEBUG_LOG is not set -# end of DW_GDMA Configurations - -# -# 2D-DMA Configurations -# -# CONFIG_DMA2D_OPERATION_FUNC_IN_IRAM is not set -# CONFIG_DMA2D_ISR_IRAM_SAFE is not set -# end of 2D-DMA Configurations - # # Main XTAL Config # -CONFIG_XTAL_FREQ_40=y -CONFIG_XTAL_FREQ=40 -# end of Main XTAL Config - -# -# DCDC Regulator Configurations -# -CONFIG_ESP_SLEEP_KEEP_DCDC_ALWAYS_ON=y -CONFIG_ESP_SLEEP_DCM_VSET_VAL_IN_SLEEP=14 -# end of DCDC Regulator Configurations - -# -# LDO Regulator Configurations -# -CONFIG_ESP_LDO_RESERVE_SPI_NOR_FLASH=y -CONFIG_ESP_LDO_CHAN_SPI_NOR_FLASH_DOMAIN=1 -CONFIG_ESP_LDO_VOLTAGE_SPI_NOR_FLASH_3300_MV=y -CONFIG_ESP_LDO_VOLTAGE_SPI_NOR_FLASH_DOMAIN=3300 -CONFIG_ESP_LDO_RESERVE_PSRAM=y -CONFIG_ESP_LDO_CHAN_PSRAM_DOMAIN=2 -CONFIG_ESP_LDO_VOLTAGE_PSRAM_1900_MV=y -CONFIG_ESP_LDO_VOLTAGE_PSRAM_DOMAIN=1900 -# end of LDO Regulator Configurations - -CONFIG_ESP_SPI_BUS_LOCK_ISR_FUNCS_IN_IRAM=y +CONFIG_ESP_BRINGUP_BYPASS_CPU_CLK_SETTING=y +CONFIG_ESP_BRINGUP_BYPASS_RANDOM_SETTING=y +CONFIG_ESP_INTR_IN_IRAM=y # end of Hardware Settings # -# ESP-Driver:LCD Controller Configurations +# ESP-ROM # -# CONFIG_LCD_ENABLE_DEBUG_LOG is not set -# CONFIG_LCD_RGB_ISR_IRAM_SAFE is not set -# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set -# CONFIG_LCD_DSI_ISR_IRAM_SAFE is not set -# end of ESP-Driver:LCD Controller Configurations - -# -# ESP-MM: Memory Management Configurations -# -# CONFIG_ESP_MM_CACHE_MSYNC_C2M_CHUNKED_OPS is not set -# end of ESP-MM: Memory Management Configurations - -# -# ESP NETIF Adapter -# -CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 -# CONFIG_ESP_NETIF_PROVIDE_CUSTOM_IMPLEMENTATION is not set -CONFIG_ESP_NETIF_TCPIP_LWIP=y -# CONFIG_ESP_NETIF_LOOPBACK is not set -CONFIG_ESP_NETIF_USES_TCPIP_WITH_BSD_API=y -CONFIG_ESP_NETIF_REPORT_DATA_TRAFFIC=y -# CONFIG_ESP_NETIF_RECEIVE_REPORT_ERRORS is not set -# CONFIG_ESP_NETIF_L2_TAP is not set -# CONFIG_ESP_NETIF_BRIDGE_EN is not set -# CONFIG_ESP_NETIF_SET_DNS_PER_DEFAULT_NETIF is not set -# end of ESP NETIF Adapter - -# -# Partition API Configuration -# -# end of Partition API Configuration - -# -# PHY -# -# end of PHY - -# -# Power Management -# -# CONFIG_PM_ENABLE is not set -# CONFIG_PM_SLP_IRAM_OPT is not set -CONFIG_PM_SLP_DEFAULT_PARAMS_OPT=y -# CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP is not set -# end of Power Management - -# -# ESP PSRAM -# -CONFIG_SPIRAM=y - -# -# PSRAM config -# -CONFIG_SPIRAM_MODE_HEX=y -CONFIG_SPIRAM_SPEED_200M=y -# CONFIG_SPIRAM_SPEED_20M is not set -CONFIG_SPIRAM_SPEED=200 -# CONFIG_SPIRAM_XIP_FROM_PSRAM is not set -# CONFIG_SPIRAM_ECC_ENABLE is not set -CONFIG_SPIRAM_BOOT_INIT=y -# CONFIG_SPIRAM_IGNORE_NOTFOUND is not set -# CONFIG_SPIRAM_USE_MEMMAP is not set -# CONFIG_SPIRAM_USE_CAPS_ALLOC is not set -CONFIG_SPIRAM_USE_MALLOC=y -CONFIG_SPIRAM_MEMTEST=y -CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=16384 -# CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP is not set -CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=32768 -# CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY is not set -# CONFIG_SPIRAM_ALLOW_NOINIT_SEG_EXTERNAL_MEMORY is not set -# end of PSRAM config -# end of ESP PSRAM - -# -# ESP Ringbuf -# -# CONFIG_RINGBUF_PLACE_FUNCTIONS_INTO_FLASH is not set -# end of ESP Ringbuf - -# -# ESP Security Specific -# -# end of ESP Security Specific +CONFIG_ESP_ROM_PRINT_IN_IRAM=y +# end of ESP-ROM # # ESP System Settings # -CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_360=y -CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ=360 - -# -# Cache config -# -# CONFIG_CACHE_L2_CACHE_128KB is not set -CONFIG_CACHE_L2_CACHE_256KB=y -# CONFIG_CACHE_L2_CACHE_512KB is not set -CONFIG_CACHE_L2_CACHE_SIZE=0x40000 -# CONFIG_CACHE_L2_CACHE_LINE_64B is not set -CONFIG_CACHE_L2_CACHE_LINE_128B=y -CONFIG_CACHE_L2_CACHE_LINE_SIZE=128 -CONFIG_CACHE_L1_CACHE_LINE_SIZE=64 -# end of Cache config - +CONFIG_ESP_SYSTEM_IN_IRAM=y CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y # CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT is not set # CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set -CONFIG_ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK=y -CONFIG_ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP=y -# CONFIG_ESP_SYSTEM_USE_EH_FRAME is not set # # Memory protection # -CONFIG_ESP_SYSTEM_PMP_IDRAM_SPLIT=y -# CONFIG_ESP_SYSTEM_PMP_LP_CORE_RESERVE_MEM_EXECUTABLE is not set # end of Memory protection CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 @@ -1316,12 +178,8 @@ CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y CONFIG_ESP_MAIN_TASK_AFFINITY=0x0 CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 CONFIG_ESP_CONSOLE_UART_DEFAULT=y -# CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG is not set # CONFIG_ESP_CONSOLE_UART_CUSTOM is not set # CONFIG_ESP_CONSOLE_NONE is not set -# CONFIG_ESP_CONSOLE_SECONDARY_NONE is not set -CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y -CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y CONFIG_ESP_CONSOLE_UART=y CONFIG_ESP_CONSOLE_UART_NUM=0 CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM=0 @@ -1339,226 +197,21 @@ CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP_DEBUG_STUBS_ENABLE is not set CONFIG_ESP_DEBUG_OCDAWARE=y CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y - -# -# Brownout Detector -# -CONFIG_ESP_BROWNOUT_DET=y -CONFIG_ESP_BROWNOUT_DET_LVL_SEL_7=y -# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_6 is not set -# CONFIG_ESP_BROWNOUT_DET_LVL_SEL_5 is not set -CONFIG_ESP_BROWNOUT_DET_LVL=7 -# end of Brownout Detector - -CONFIG_ESP_SYSTEM_BROWNOUT_INTR=y -CONFIG_ESP_SYSTEM_HW_STACK_GUARD=y -CONFIG_ESP_SYSTEM_HW_PC_RECORD=y # end of ESP System Settings # # IPC (Inter-Processor Call) # +CONFIG_ESP_IPC_ENABLE=y CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y CONFIG_ESP_IPC_ISR_ENABLE=y # end of IPC (Inter-Processor Call) -# -# ESP Timer (High Resolution Timer) -# -# CONFIG_ESP_TIMER_PROFILING is not set -CONFIG_ESP_TIME_FUNCS_USE_RTC_TIMER=y -CONFIG_ESP_TIME_FUNCS_USE_ESP_TIMER=y -CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 -CONFIG_ESP_TIMER_INTERRUPT_LEVEL=1 -# CONFIG_ESP_TIMER_SHOW_EXPERIMENTAL is not set -CONFIG_ESP_TIMER_TASK_AFFINITY=0x0 -CONFIG_ESP_TIMER_TASK_AFFINITY_CPU0=y -CONFIG_ESP_TIMER_ISR_AFFINITY_CPU0=y -# CONFIG_ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD is not set -CONFIG_ESP_TIMER_IMPL_SYSTIMER=y -# end of ESP Timer (High Resolution Timer) - -# -# Wi-Fi -# -# CONFIG_ESP_HOST_WIFI_ENABLED is not set -CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=10 -CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=32 -CONFIG_ESP_WIFI_TX_BUFFER_TYPE=1 -CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=32 -CONFIG_ESP_WIFI_DYNAMIC_RX_MGMT_BUF=0 -CONFIG_ESP_WIFI_RX_MGMT_BUF_NUM_DEF=5 -CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y -CONFIG_ESP_WIFI_TX_BA_WIN=6 -CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP_WIFI_RX_BA_WIN=6 -CONFIG_ESP_WIFI_NVS_ENABLED=y -CONFIG_ESP_WIFI_SOFTAP_BEACON_MAX_LEN=752 -CONFIG_ESP_WIFI_MGMT_SBUF_NUM=32 -CONFIG_ESP_WIFI_IRAM_OPT=y -CONFIG_ESP_WIFI_EXTRA_IRAM_OPT=y -CONFIG_ESP_WIFI_RX_IRAM_OPT=y -CONFIG_ESP_WIFI_ENABLE_WPA3_SAE=y -CONFIG_ESP_WIFI_ENABLE_SAE_PK=y -CONFIG_ESP_WIFI_SOFTAP_SAE_SUPPORT=y -CONFIG_ESP_WIFI_ENABLE_WPA3_OWE_STA=y -CONFIG_ESP_WIFI_SLP_IRAM_OPT=y -CONFIG_ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME=50 -CONFIG_ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME=10 -CONFIG_ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 -CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE=y -CONFIG_ESP_WIFI_GMAC_SUPPORT=y -CONFIG_ESP_WIFI_SOFTAP_SUPPORT=y -CONFIG_ESP_WIFI_ESPNOW_MAX_ENCRYPT_NUM=7 -CONFIG_ESP_WIFI_MBEDTLS_CRYPTO=y -CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y -CONFIG_ESP_WIFI_TX_HETB_QUEUE_NUM=3 -CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y -# end of Wi-Fi - -# -# Core dump -# -# CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH is not set -CONFIG_ESP_COREDUMP_ENABLE_TO_UART=y -# CONFIG_ESP_COREDUMP_ENABLE_TO_NONE is not set -# CONFIG_ESP_COREDUMP_DATA_FORMAT_BIN is not set -CONFIG_ESP_COREDUMP_DATA_FORMAT_ELF=y -CONFIG_ESP_COREDUMP_CHECKSUM_CRC32=y -# CONFIG_ESP_COREDUMP_CHECKSUM_SHA256 is not set -# CONFIG_ESP_COREDUMP_CAPTURE_DRAM is not set -CONFIG_ESP_COREDUMP_ENABLE=y -CONFIG_ESP_COREDUMP_LOGS=y -CONFIG_ESP_COREDUMP_MAX_TASKS_NUM=64 -CONFIG_ESP_COREDUMP_UART_DELAY=0 -CONFIG_ESP_COREDUMP_STACK_SIZE=0 -CONFIG_ESP_COREDUMP_DECODE_INFO=y -# CONFIG_ESP_COREDUMP_DECODE_DISABLE is not set -CONFIG_ESP_COREDUMP_DECODE="info" -# end of Core dump - -# -# FAT Filesystem support -# -CONFIG_FATFS_VOLUME_COUNT=2 -# CONFIG_FATFS_LFN_NONE is not set -CONFIG_FATFS_LFN_HEAP=y -# CONFIG_FATFS_LFN_STACK is not set -# CONFIG_FATFS_SECTOR_512 is not set -CONFIG_FATFS_SECTOR_4096=y -# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set -CONFIG_FATFS_CODEPAGE_437=y -# CONFIG_FATFS_CODEPAGE_720 is not set -# CONFIG_FATFS_CODEPAGE_737 is not set -# CONFIG_FATFS_CODEPAGE_771 is not set -# CONFIG_FATFS_CODEPAGE_775 is not set -# CONFIG_FATFS_CODEPAGE_850 is not set -# CONFIG_FATFS_CODEPAGE_852 is not set -# CONFIG_FATFS_CODEPAGE_855 is not set -# CONFIG_FATFS_CODEPAGE_857 is not set -# CONFIG_FATFS_CODEPAGE_860 is not set -# CONFIG_FATFS_CODEPAGE_861 is not set -# CONFIG_FATFS_CODEPAGE_862 is not set -# CONFIG_FATFS_CODEPAGE_863 is not set -# CONFIG_FATFS_CODEPAGE_864 is not set -# CONFIG_FATFS_CODEPAGE_865 is not set -# CONFIG_FATFS_CODEPAGE_866 is not set -# CONFIG_FATFS_CODEPAGE_869 is not set -# CONFIG_FATFS_CODEPAGE_932 is not set -# CONFIG_FATFS_CODEPAGE_936 is not set -# CONFIG_FATFS_CODEPAGE_949 is not set -# CONFIG_FATFS_CODEPAGE_950 is not set -CONFIG_FATFS_CODEPAGE=437 -CONFIG_FATFS_MAX_LFN=255 -CONFIG_FATFS_API_ENCODING_ANSI_OEM=y -# CONFIG_FATFS_API_ENCODING_UTF_8 is not set -CONFIG_FATFS_FS_LOCK=0 -CONFIG_FATFS_TIMEOUT_MS=10000 -CONFIG_FATFS_PER_FILE_CACHE=y -CONFIG_FATFS_ALLOC_PREFER_EXTRAM=y -# CONFIG_FATFS_USE_FASTSEEK is not set -CONFIG_FATFS_USE_STRFUNC_NONE=y -# CONFIG_FATFS_USE_STRFUNC_WITHOUT_CRLF_CONV is not set -# CONFIG_FATFS_USE_STRFUNC_WITH_CRLF_CONV is not set -CONFIG_FATFS_VFS_FSTAT_BLKSIZE=0 -# CONFIG_FATFS_IMMEDIATE_FSYNC is not set -# CONFIG_FATFS_USE_LABEL is not set -CONFIG_FATFS_LINK_LOCK=y -# end of FAT Filesystem support - # # FreeRTOS # - -# -# Kernel -# -# CONFIG_FREERTOS_UNICORE is not set -CONFIG_FREERTOS_HZ=1000 -# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set -# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set -CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y -CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 -CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 -# CONFIG_FREERTOS_USE_IDLE_HOOK is not set -# CONFIG_FREERTOS_USE_TICK_HOOK is not set -CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 -# CONFIG_FREERTOS_ENABLE_BACKWARD_COMPATIBILITY is not set -CONFIG_FREERTOS_USE_TIMERS=y -CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME="Tmr Svc" -# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU0 is not set -# CONFIG_FREERTOS_TIMER_TASK_AFFINITY_CPU1 is not set -CONFIG_FREERTOS_TIMER_TASK_NO_AFFINITY=y -CONFIG_FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY=0x7FFFFFFF -CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 -CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 -CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 -CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 -CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES=1 -CONFIG_FREERTOS_USE_TRACE_FACILITY=y -CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y -# CONFIG_FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES is not set -CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y -CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y -CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U32=y -# CONFIG_FREERTOS_RUN_TIME_COUNTER_TYPE_U64 is not set -# CONFIG_FREERTOS_USE_APPLICATION_TASK_TAG is not set -# end of Kernel - -# -# Port -# -CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y -# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set -CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS=y -# CONFIG_FREERTOS_TASK_PRE_DELETION_HOOK is not set -# CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP is not set -CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y -CONFIG_FREERTOS_ISR_STACKSIZE=2096 -CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y -CONFIG_FREERTOS_TICK_SUPPORT_SYSTIMER=y -CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL1=y -# CONFIG_FREERTOS_CORETIMER_SYSTIMER_LVL3 is not set -CONFIG_FREERTOS_SYSTICK_USES_SYSTIMER=y -CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER=y -# CONFIG_FREERTOS_PLACE_FUNCTIONS_INTO_FLASH is not set -# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set -# end of Port - -# -# Extra -# -# CONFIG_FREERTOS_TASK_CREATE_ALLOW_EXT_MEM is not set -# end of Extra - -CONFIG_FREERTOS_PORT=y CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF -CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y -CONFIG_FREERTOS_DEBUG_OCDAWARE=y -CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT=y -CONFIG_FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH=y -CONFIG_FREERTOS_NUMBER_OF_CORES=2 # end of FreeRTOS # @@ -1569,11 +222,6 @@ CONFIG_HAL_ASSERTION_EQUALS_SYSTEM=y # CONFIG_HAL_ASSERTION_SILENT is not set # CONFIG_HAL_ASSERTION_ENABLE is not set CONFIG_HAL_DEFAULT_ASSERTION_LEVEL=2 -CONFIG_HAL_SYSTIMER_USE_ROM_IMPL=y -CONFIG_HAL_WDT_USE_ROM_IMPL=y -CONFIG_HAL_SPI_MASTER_FUNC_IN_IRAM=y -CONFIG_HAL_SPI_SLAVE_FUNC_IN_IRAM=y -# CONFIG_HAL_ECDSA_GEN_SIG_CM is not set # end of Hardware Abstraction Layer (HAL) and Low Level (LL) # @@ -1594,6 +242,9 @@ CONFIG_HEAP_TRACING_OFF=y # # Log # +CONFIG_LOG_VERSION_1=y +# CONFIG_LOG_VERSION_2 is not set +CONFIG_LOG_VERSION=1 # # Log Level @@ -1605,10 +256,10 @@ CONFIG_LOG_DEFAULT_LEVEL_INFO=y # CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set # CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set CONFIG_LOG_DEFAULT_LEVEL=3 -# CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT is not set +CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT=y # CONFIG_LOG_MAXIMUM_LEVEL_DEBUG is not set -CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE=y -CONFIG_LOG_MAXIMUM_LEVEL=5 +# CONFIG_LOG_MAXIMUM_LEVEL_VERBOSE is not set +CONFIG_LOG_MAXIMUM_LEVEL=3 # # Level Settings @@ -1631,398 +282,17 @@ CONFIG_LOG_TAG_LEVEL_IMPL_CACHE_SIZE=31 CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y # CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set # end of Format + +# +# Settings +# +CONFIG_LOG_MODE_TEXT_EN=y +CONFIG_LOG_MODE_TEXT=y +# end of Settings + +CONFIG_LOG_IN_IRAM=y # end of Log -# -# LWIP -# -CONFIG_LWIP_ENABLE=y -CONFIG_LWIP_LOCAL_HOSTNAME="espressif" -# CONFIG_LWIP_NETIF_API is not set -CONFIG_LWIP_TCPIP_TASK_PRIO=18 -# CONFIG_LWIP_TCPIP_CORE_LOCKING is not set -# CONFIG_LWIP_CHECK_THREAD_SAFETY is not set -CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y -# CONFIG_LWIP_L2_TO_L3_COPY is not set -# CONFIG_LWIP_IRAM_OPTIMIZATION is not set -# CONFIG_LWIP_EXTRA_IRAM_OPTIMIZATION is not set -CONFIG_LWIP_TIMERS_ONDEMAND=y -CONFIG_LWIP_ND6=y -# CONFIG_LWIP_FORCE_ROUTER_FORWARDING is not set -CONFIG_LWIP_MAX_SOCKETS=10 -# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set -# CONFIG_LWIP_SO_LINGER is not set -CONFIG_LWIP_SO_REUSE=y -CONFIG_LWIP_SO_REUSE_RXTOALL=y -# CONFIG_LWIP_SO_RCVBUF is not set -# CONFIG_LWIP_NETBUF_RECVINFO is not set -CONFIG_LWIP_IP_DEFAULT_TTL=64 -CONFIG_LWIP_IP4_FRAG=y -CONFIG_LWIP_IP6_FRAG=y -# CONFIG_LWIP_IP4_REASSEMBLY is not set -# CONFIG_LWIP_IP6_REASSEMBLY is not set -CONFIG_LWIP_IP_REASS_MAX_PBUFS=10 -# CONFIG_LWIP_IP_FORWARD is not set -# CONFIG_LWIP_STATS is not set -CONFIG_LWIP_ESP_GRATUITOUS_ARP=y -CONFIG_LWIP_GARP_TMR_INTERVAL=60 -CONFIG_LWIP_ESP_MLDV6_REPORT=y -CONFIG_LWIP_MLDV6_TMR_INTERVAL=40 -CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 -CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y -# CONFIG_LWIP_DHCP_DOES_ACD_CHECK is not set -# CONFIG_LWIP_DHCP_DOES_NOT_CHECK_OFFERED_IP is not set -# CONFIG_LWIP_DHCP_DISABLE_CLIENT_ID is not set -CONFIG_LWIP_DHCP_DISABLE_VENDOR_CLASS_ID=y -# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set -CONFIG_LWIP_DHCP_OPTIONS_LEN=68 -CONFIG_LWIP_NUM_NETIF_CLIENT_DATA=0 -CONFIG_LWIP_DHCP_COARSE_TIMER_SECS=1 - -# -# DHCP server -# -CONFIG_LWIP_DHCPS=y -CONFIG_LWIP_DHCPS_LEASE_UNIT=60 -CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 -CONFIG_LWIP_DHCPS_STATIC_ENTRIES=y -CONFIG_LWIP_DHCPS_ADD_DNS=y -# end of DHCP server - -# CONFIG_LWIP_AUTOIP is not set -CONFIG_LWIP_IPV4=y -CONFIG_LWIP_IPV6=y -# CONFIG_LWIP_IPV6_AUTOCONFIG is not set -CONFIG_LWIP_IPV6_NUM_ADDRESSES=3 -# CONFIG_LWIP_IPV6_FORWARD is not set -# CONFIG_LWIP_NETIF_STATUS_CALLBACK is not set -CONFIG_LWIP_NETIF_LOOPBACK=y -CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 - -# -# TCP -# -CONFIG_LWIP_MAX_ACTIVE_TCP=16 -CONFIG_LWIP_MAX_LISTENING_TCP=16 -CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y -CONFIG_LWIP_TCP_MAXRTX=12 -CONFIG_LWIP_TCP_SYNMAXRTX=12 -CONFIG_LWIP_TCP_MSS=1440 -CONFIG_LWIP_TCP_TMR_INTERVAL=250 -CONFIG_LWIP_TCP_MSL=60000 -CONFIG_LWIP_TCP_FIN_WAIT_TIMEOUT=20000 -CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5760 -CONFIG_LWIP_TCP_WND_DEFAULT=5760 -CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 -CONFIG_LWIP_TCP_ACCEPTMBOX_SIZE=6 -CONFIG_LWIP_TCP_QUEUE_OOSEQ=y -CONFIG_LWIP_TCP_OOSEQ_TIMEOUT=6 -CONFIG_LWIP_TCP_OOSEQ_MAX_PBUFS=4 -# CONFIG_LWIP_TCP_SACK_OUT is not set -CONFIG_LWIP_TCP_OVERSIZE_MSS=y -# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set -# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set -CONFIG_LWIP_TCP_RTO_TIME=1500 -# end of TCP - -# -# UDP -# -CONFIG_LWIP_MAX_UDP_PCBS=16 -CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 -# end of UDP - -# -# Checksums -# -# CONFIG_LWIP_CHECKSUM_CHECK_IP is not set -# CONFIG_LWIP_CHECKSUM_CHECK_UDP is not set -CONFIG_LWIP_CHECKSUM_CHECK_ICMP=y -# end of Checksums - -CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 -CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y -# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set -# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set -CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF -CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 -CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 -CONFIG_LWIP_IPV6_ND6_NUM_PREFIXES=5 -CONFIG_LWIP_IPV6_ND6_NUM_ROUTERS=3 -CONFIG_LWIP_IPV6_ND6_NUM_DESTINATIONS=10 -CONFIG_LWIP_PPP_SUPPORT=y -CONFIG_LWIP_PPP_ENABLE_IPV4=y -CONFIG_LWIP_PPP_ENABLE_IPV6=y -# CONFIG_LWIP_PPP_NOTIFY_PHASE_SUPPORT is not set -# CONFIG_LWIP_PPP_PAP_SUPPORT is not set -# CONFIG_LWIP_PPP_CHAP_SUPPORT is not set -# CONFIG_LWIP_PPP_MSCHAP_SUPPORT is not set -# CONFIG_LWIP_PPP_MPPE_SUPPORT is not set -CONFIG_LWIP_PPP_SERVER_SUPPORT=y -CONFIG_LWIP_PPP_VJ_HEADER_COMPRESSION=y -# CONFIG_LWIP_ENABLE_LCP_ECHO is not set -# CONFIG_LWIP_PPP_DEBUG_ON is not set -# CONFIG_LWIP_USE_EXTERNAL_MBEDTLS is not set -# CONFIG_LWIP_SLIP_SUPPORT is not set - -# -# ICMP -# -CONFIG_LWIP_ICMP=y -# CONFIG_LWIP_MULTICAST_PING is not set -# CONFIG_LWIP_BROADCAST_PING is not set -# end of ICMP - -# -# LWIP RAW API -# -CONFIG_LWIP_MAX_RAW_PCBS=16 -# end of LWIP RAW API - -# -# SNTP -# -CONFIG_LWIP_SNTP_MAX_SERVERS=1 -# CONFIG_LWIP_DHCP_GET_NTP_SRV is not set -CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 -CONFIG_LWIP_SNTP_STARTUP_DELAY=y -CONFIG_LWIP_SNTP_MAXIMUM_STARTUP_DELAY=5000 -# end of SNTP - -# -# DNS -# -CONFIG_LWIP_DNS_MAX_HOST_IP=1 -CONFIG_LWIP_DNS_MAX_SERVERS=3 -# CONFIG_LWIP_FALLBACK_DNS_SERVER_SUPPORT is not set -# CONFIG_LWIP_DNS_SETSERVER_WITH_NETIF is not set -# end of DNS - -CONFIG_LWIP_BRIDGEIF_MAX_PORTS=7 -CONFIG_LWIP_ESP_LWIP_ASSERT=y - -# -# Hooks -# -# CONFIG_LWIP_HOOK_TCP_ISN_NONE is not set -CONFIG_LWIP_HOOK_TCP_ISN_DEFAULT=y -# CONFIG_LWIP_HOOK_TCP_ISN_CUSTOM is not set -CONFIG_LWIP_HOOK_IP6_ROUTE_NONE=y -# CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT is not set -# CONFIG_LWIP_HOOK_IP6_ROUTE_CUSTOM is not set -CONFIG_LWIP_HOOK_ND6_GET_GW_NONE=y -# CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT is not set -# CONFIG_LWIP_HOOK_ND6_GET_GW_CUSTOM is not set -CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_NONE=y -# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_DEFAULT is not set -# CONFIG_LWIP_HOOK_IP6_SELECT_SRC_ADDR_CUSTOM is not set -CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE=y -# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT is not set -# CONFIG_LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM is not set -CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_NONE=y -# CONFIG_LWIP_HOOK_DNS_EXT_RESOLVE_CUSTOM is not set -# CONFIG_LWIP_HOOK_IP6_INPUT_NONE is not set -CONFIG_LWIP_HOOK_IP6_INPUT_DEFAULT=y -# CONFIG_LWIP_HOOK_IP6_INPUT_CUSTOM is not set -# end of Hooks - -# CONFIG_LWIP_DEBUG is not set -# end of LWIP - -# -# mbedTLS -# -CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y -# CONFIG_MBEDTLS_EXTERNAL_MEM_ALLOC is not set -# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set -# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set -CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y -CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 -CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 -# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set -# CONFIG_MBEDTLS_DEBUG is not set - -# -# mbedTLS v3.x related -# -# CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 is not set -# CONFIG_MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH is not set -# CONFIG_MBEDTLS_X509_TRUSTED_CERT_CALLBACK is not set -# CONFIG_MBEDTLS_SSL_CONTEXT_SERIALIZATION is not set -CONFIG_MBEDTLS_SSL_KEEP_PEER_CERTIFICATE=y -CONFIG_MBEDTLS_PKCS7_C=y -# end of mbedTLS v3.x related - -# -# Certificate Bundle -# -CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y -CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y -# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set -# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set -# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set -# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST is not set -CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS=200 -# end of Certificate Bundle - -# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set -CONFIG_MBEDTLS_CMAC_C=y -CONFIG_MBEDTLS_HARDWARE_AES=y -CONFIG_MBEDTLS_AES_USE_INTERRUPT=y -CONFIG_MBEDTLS_AES_INTERRUPT_LEVEL=0 -CONFIG_MBEDTLS_HARDWARE_GCM=y -CONFIG_MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER=y -CONFIG_MBEDTLS_HARDWARE_MPI=y -# CONFIG_MBEDTLS_LARGE_KEY_SOFTWARE_MPI is not set -CONFIG_MBEDTLS_MPI_USE_INTERRUPT=y -CONFIG_MBEDTLS_MPI_INTERRUPT_LEVEL=0 -CONFIG_MBEDTLS_HARDWARE_SHA=y -CONFIG_MBEDTLS_HARDWARE_ECC=y -CONFIG_MBEDTLS_ECC_OTHER_CURVES_SOFT_FALLBACK=y -CONFIG_MBEDTLS_ROM_MD5=y -# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set -# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set -CONFIG_MBEDTLS_HAVE_TIME=y -# CONFIG_MBEDTLS_PLATFORM_TIME_ALT is not set -# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set -CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y -CONFIG_MBEDTLS_SHA512_C=y -# CONFIG_MBEDTLS_SHA3_C is not set -CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y -# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set -# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set -# CONFIG_MBEDTLS_TLS_DISABLED is not set -CONFIG_MBEDTLS_TLS_SERVER=y -CONFIG_MBEDTLS_TLS_CLIENT=y -CONFIG_MBEDTLS_TLS_ENABLED=y - -# -# TLS Key Exchange Methods -# -# CONFIG_MBEDTLS_PSK_MODES is not set -CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y -CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y -# end of TLS Key Exchange Methods - -CONFIG_MBEDTLS_SSL_RENEGOTIATION=y -CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y -# CONFIG_MBEDTLS_SSL_PROTO_GMTSSL1_1 is not set -# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set -CONFIG_MBEDTLS_SSL_ALPN=y -CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y -CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y - -# -# Symmetric Ciphers -# -CONFIG_MBEDTLS_AES_C=y -# CONFIG_MBEDTLS_CAMELLIA_C is not set -# CONFIG_MBEDTLS_DES_C is not set -# CONFIG_MBEDTLS_BLOWFISH_C is not set -# CONFIG_MBEDTLS_XTEA_C is not set -CONFIG_MBEDTLS_CCM_C=y -CONFIG_MBEDTLS_GCM_C=y -# CONFIG_MBEDTLS_NIST_KW_C is not set -# end of Symmetric Ciphers - -# CONFIG_MBEDTLS_RIPEMD160_C is not set - -# -# Certificates -# -CONFIG_MBEDTLS_PEM_PARSE_C=y -CONFIG_MBEDTLS_PEM_WRITE_C=y -CONFIG_MBEDTLS_X509_CRL_PARSE_C=y -CONFIG_MBEDTLS_X509_CSR_PARSE_C=y -# end of Certificates - -CONFIG_MBEDTLS_ECP_C=y -CONFIG_MBEDTLS_PK_PARSE_EC_EXTENDED=y -CONFIG_MBEDTLS_PK_PARSE_EC_COMPRESSED=y -# CONFIG_MBEDTLS_DHM_C is not set -CONFIG_MBEDTLS_ECDH_C=y -CONFIG_MBEDTLS_ECDSA_C=y -# CONFIG_MBEDTLS_ECJPAKE_C is not set -CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y -CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y -CONFIG_MBEDTLS_ECP_NIST_OPTIM=y -# CONFIG_MBEDTLS_ECP_FIXED_POINT_OPTIM is not set -# CONFIG_MBEDTLS_POLY1305_C is not set -# CONFIG_MBEDTLS_CHACHA20_C is not set -# CONFIG_MBEDTLS_HKDF_C is not set -# CONFIG_MBEDTLS_THREADING_C is not set -CONFIG_MBEDTLS_ERROR_STRINGS=y -CONFIG_MBEDTLS_FS_IO=y -# end of mbedTLS - -# -# ESP-MQTT Configurations -# -CONFIG_MQTT_PROTOCOL_311=y -# CONFIG_MQTT_PROTOCOL_5 is not set -CONFIG_MQTT_TRANSPORT_SSL=y -CONFIG_MQTT_TRANSPORT_WEBSOCKET=y -CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y -# CONFIG_MQTT_MSG_ID_INCREMENTAL is not set -# CONFIG_MQTT_SKIP_PUBLISH_IF_DISCONNECTED is not set -# CONFIG_MQTT_REPORT_DELETED_MESSAGES is not set -# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set -# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set -# CONFIG_MQTT_CUSTOM_OUTBOX is not set -# end of ESP-MQTT Configurations - -# -# Newlib -# -CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y -# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set -# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set -# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set -# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set -CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y -# CONFIG_NEWLIB_NANO_FORMAT is not set -CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT=y -# CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC is not set -# CONFIG_NEWLIB_TIME_SYSCALL_USE_HRT is not set -# CONFIG_NEWLIB_TIME_SYSCALL_USE_NONE is not set -# end of Newlib - -# -# NVS -# -# CONFIG_NVS_ENCRYPTION is not set -# CONFIG_NVS_ASSERT_ERROR_CHECK is not set -# CONFIG_NVS_LEGACY_DUP_KEYS_COMPATIBILITY is not set -# CONFIG_NVS_ALLOCATE_CACHE_IN_SPIRAM is not set -# end of NVS - -# -# PThreads -# -CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 -CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 -CONFIG_PTHREAD_STACK_MIN=768 -CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y -# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set -# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set -CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 -CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" -# end of PThreads - # # MMU Config # @@ -2049,9 +319,10 @@ CONFIG_SPI_FLASH_BROWNOUT_RESET=y # # Features here require specific hardware (READ DOCS FIRST!) # -# CONFIG_SPI_FLASH_AUTO_SUSPEND is not set CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 # CONFIG_SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND is not set +# CONFIG_SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND is not set +CONFIG_SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM=y # end of Optional and Experimental Features (READ DOCS FIRST) # end of Main Flash configuration @@ -2061,9 +332,9 @@ CONFIG_SPI_FLASH_SUSPEND_TSUS_VAL_US=50 # CONFIG_SPI_FLASH_VERIFY_WRITE is not set # CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y -CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS is not set # CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set -# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED=y # CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 @@ -2076,7 +347,6 @@ CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE=8192 # # Auto-detect flash chips # -CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y # CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP is not set # CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP is not set # CONFIG_SPI_FLASH_SUPPORT_GD_CHIP is not set @@ -2088,459 +358,6 @@ CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED=y CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE=y # end of SPI Flash driver -# -# SPIFFS Configuration -# -CONFIG_SPIFFS_MAX_PARTITIONS=3 - -# -# SPIFFS Cache Configuration -# -CONFIG_SPIFFS_CACHE=y -CONFIG_SPIFFS_CACHE_WR=y -# CONFIG_SPIFFS_CACHE_STATS is not set -# end of SPIFFS Cache Configuration - -CONFIG_SPIFFS_PAGE_CHECK=y -CONFIG_SPIFFS_GC_MAX_RUNS=10 -# CONFIG_SPIFFS_GC_STATS is not set -CONFIG_SPIFFS_PAGE_SIZE=256 -CONFIG_SPIFFS_OBJ_NAME_LEN=32 -# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set -CONFIG_SPIFFS_USE_MAGIC=y -CONFIG_SPIFFS_USE_MAGIC_LENGTH=y -CONFIG_SPIFFS_META_LENGTH=4 -CONFIG_SPIFFS_USE_MTIME=y - -# -# Debug Configuration -# -# CONFIG_SPIFFS_DBG is not set -# CONFIG_SPIFFS_API_DBG is not set -# CONFIG_SPIFFS_GC_DBG is not set -# CONFIG_SPIFFS_CACHE_DBG is not set -# CONFIG_SPIFFS_CHECK_DBG is not set -# CONFIG_SPIFFS_TEST_VISUALISATION is not set -# end of Debug Configuration -# end of SPIFFS Configuration - -# -# TCP Transport -# - -# -# Websocket -# -CONFIG_WS_TRANSPORT=y -CONFIG_WS_BUFFER_SIZE=1024 -# CONFIG_WS_DYNAMIC_BUFFER is not set -# end of Websocket -# end of TCP Transport - -# -# USB-OTG -# -CONFIG_USB_HOST_CONTROL_TRANSFER_MAX_SIZE=256 -CONFIG_USB_HOST_HW_BUFFER_BIAS_BALANCED=y -# CONFIG_USB_HOST_HW_BUFFER_BIAS_IN is not set -# CONFIG_USB_HOST_HW_BUFFER_BIAS_PERIODIC_OUT is not set - -# -# Hub Driver Configuration -# - -# -# Root Port configuration -# -CONFIG_USB_HOST_DEBOUNCE_DELAY_MS=250 -CONFIG_USB_HOST_RESET_HOLD_MS=30 -CONFIG_USB_HOST_RESET_RECOVERY_MS=30 -CONFIG_USB_HOST_SET_ADDR_RECOVERY_MS=10 -# end of Root Port configuration - -# CONFIG_USB_HOST_HUBS_SUPPORTED is not set -# end of Hub Driver Configuration - -# CONFIG_USB_HOST_ENABLE_ENUM_FILTER_CALLBACK is not set -CONFIG_USB_OTG_SUPPORTED=y -# end of USB-OTG - -# -# Virtual file system -# -CONFIG_VFS_SUPPORT_IO=y -CONFIG_VFS_SUPPORT_DIR=y -CONFIG_VFS_SUPPORT_SELECT=y -CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y -# CONFIG_VFS_SELECT_IN_RAM is not set -CONFIG_VFS_SUPPORT_TERMIOS=y -CONFIG_VFS_MAX_COUNT=15 - -# -# Host File System I/O (Semihosting) -# -CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 -# end of Host File System I/O (Semihosting) - -CONFIG_VFS_INITIALIZE_DEV_NULL=y -# end of Virtual file system - -# -# Wear Levelling -# -# CONFIG_WL_SECTOR_SIZE_512 is not set -CONFIG_WL_SECTOR_SIZE_4096=y -CONFIG_WL_SECTOR_SIZE=4096 -# end of Wear Levelling - -# -# Board Support Package -# -CONFIG_BSP_I2S_NUM=1 -# end of Board Support Package - -# -# WiFi Logger configuration -# -CONFIG_TRANSPORT_PROTOCOL_UDP=y -# CONFIG_TRANSPORT_PROTOCOL_TCP is not set -# CONFIG_TRANSPORT_PROTOCOL_WEBSOCKET is not set -# CONFIG_ROUTE_ESP_IDF_API_LOGS_TO_WIFI is not set -CONFIG_SERVER_IP_ADDRESS="192.168.0.10" -CONFIG_SERVER_PORT=9999 -CONFIG_MESSAGE_QUEUE_SIZE=1000 -CONFIG_BUFFER_SIZE=512 -# end of WiFi Logger configuration - -# -# Audio playback -# -CONFIG_AUDIO_PLAYER_ENABLE_MP3=y -CONFIG_AUDIO_PLAYER_ENABLE_WAV=y -CONFIG_AUDIO_PLAYER_LOG_LEVEL=0 -# end of Audio playback - -# -# CMake Utilities -# -# CONFIG_CU_RELINKER_ENABLE is not set -# CONFIG_CU_DIAGNOSTICS_COLOR_NEVER is not set -CONFIG_CU_DIAGNOSTICS_COLOR_ALWAYS=y -# CONFIG_CU_DIAGNOSTICS_COLOR_AUTO is not set -# CONFIG_CU_GCC_LTO_ENABLE is not set -# CONFIG_CU_GCC_STRING_1BYTE_ALIGN is not set -# end of CMake Utilities - -# -# eppp_link -# -CONFIG_EPPP_LINK_USES_LWIP=y -CONFIG_EPPP_LINK_DEVICE_UART=y -# CONFIG_EPPP_LINK_DEVICE_SPI is not set -# CONFIG_EPPP_LINK_DEVICE_SDIO is not set -CONFIG_EPPP_LINK_CONN_MAX_RETRY=6 -# end of eppp_link - -# -# Board Support Package(ESP32-P4) -# -CONFIG_BSP_ERROR_CHECK=y - -# -# I2C -# -CONFIG_BSP_I2C_NUM=1 -CONFIG_BSP_I2C_FAST_MODE=y -CONFIG_BSP_I2C_CLK_SPEED_HZ=400000 -# end of I2C - -# -# I2S -# -# end of I2S - -# -# uSD card - Virtual File System -# -# CONFIG_BSP_SD_FORMAT_ON_MOUNT_FAIL is not set -CONFIG_BSP_SD_MOUNT_POINT="/sdcard" -# end of uSD card - Virtual File System - -# -# SPIFFS - Virtual File System -# -# CONFIG_BSP_SPIFFS_FORMAT_ON_MOUNT_FAIL is not set -CONFIG_BSP_SPIFFS_MOUNT_POINT="/spiffs" -CONFIG_BSP_SPIFFS_PARTITION_LABEL="storage" -CONFIG_BSP_SPIFFS_MAX_FILES=5 -# end of SPIFFS - Virtual File System - -# -# Display -# -CONFIG_BSP_LCD_DPI_BUFFER_NUMS=2 -CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR=y -# CONFIG_BSP_DISPLAY_LVGL_FULL_REFRESH is not set -CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE=y -CONFIG_BSP_DISPLAY_BRIGHTNESS_LEDC_CH=1 -CONFIG_BSP_LCD_COLOR_FORMAT_RGB565=y -# CONFIG_BSP_LCD_COLOR_FORMAT_RGB888 is not set -CONFIG_BSP_LCD_TYPE_1024_600=y -# CONFIG_BSP_LCD_TYPE_1280_800 is not set -# end of Display -# end of Board Support Package(ESP32-P4) - -# -# Audio Codec Device Configuration -# -CONFIG_CODEC_ES8311_SUPPORT=y -CONFIG_CODEC_ES7210_SUPPORT=y -CONFIG_CODEC_ES7243_SUPPORT=y -CONFIG_CODEC_ES7243E_SUPPORT=y -CONFIG_CODEC_ES8156_SUPPORT=y -CONFIG_CODEC_AW88298_SUPPORT=y -CONFIG_CODEC_ES8374_SUPPORT=y -CONFIG_CODEC_ES8388_SUPPORT=y -CONFIG_CODEC_TAS5805M_SUPPORT=y -# CONFIG_CODEC_ZL38063_SUPPORT is not set -# end of Audio Codec Device Configuration - -CONFIG_ESP_HOSTED_ENABLED=y - -# -# ESP-Hosted config -# - -# -# ESP32-C6 is Slave Target from Wi-Fi Remote Component -# -CONFIG_ESP_HOSTED_PRIV_SDIO_OPTION=y -CONFIG_ESP_HOSTED_PRIV_SPI_HD_OPTION=y -# CONFIG_ESP_HOSTED_SPI_HOST_INTERFACE is not set -CONFIG_ESP_HOSTED_SDIO_HOST_INTERFACE=y -# CONFIG_ESP_HOSTED_SPI_HD_HOST_INTERFACE is not set -# CONFIG_ESP_HOSTED_UART_HOST_INTERFACE is not set -CONFIG_ESP_HOSTED_IDF_SLAVE_TARGET="esp32c6" - -# -# Hosted SDIO Configuration -# -CONFIG_ESP_HOSTED_SDIO_RESET_ACTIVE_HIGH=y -# CONFIG_ESP_HOSTED_SDIO_RESET_ACTIVE_LOW is not set -# CONFIG_ESP_HOSTED_SDIO_OPTIMIZATION_RX_NONE is not set -# CONFIG_ESP_HOSTED_SDIO_OPTIMIZATION_RX_MAX_SIZE is not set -CONFIG_ESP_HOSTED_SDIO_OPTIMIZATION_RX_STREAMING_MODE=y -# CONFIG_ESP_HOSTED_SDIO_SLOT_0 is not set -CONFIG_ESP_HOSTED_SDIO_SLOT_1=y -CONFIG_ESP_HOSTED_SDIO_SLOT=1 -# CONFIG_ESP_HOSTED_SD_PWR_CTRL_LDO_INTERNAL_IO is not set -CONFIG_ESP_HOSTED_SDIO_GPIO_RESET_SLAVE=54 -CONFIG_ESP_HOSTED_SDIO_4_BIT_BUS=y -# CONFIG_ESP_HOSTED_SDIO_1_BIT_BUS is not set -CONFIG_ESP_HOSTED_SDIO_BUS_WIDTH=4 -CONFIG_ESP_HOSTED_SDIO_CLOCK_FREQ_KHZ=40000 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_CMD_SLOT_1=19 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_CLK_SLOT_1=18 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_D0_SLOT_1=14 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_D1_4BIT_BUS_SLOT_1=15 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_D2_4BIT_BUS_SLOT_1=16 -CONFIG_ESP_HOSTED_PRIV_SDIO_PIN_D3_4BIT_BUS_SLOT_1=17 -CONFIG_ESP_HOSTED_SDIO_PIN_CMD=19 -CONFIG_ESP_HOSTED_SDIO_PIN_CLK=18 -CONFIG_ESP_HOSTED_SDIO_PIN_D0=14 -CONFIG_ESP_HOSTED_SDIO_PRIV_PIN_D1_4BIT_BUS=15 -CONFIG_ESP_HOSTED_SDIO_PIN_D2=16 -CONFIG_ESP_HOSTED_SDIO_PIN_D3=17 -CONFIG_ESP_HOSTED_SDIO_PIN_D1=15 -CONFIG_ESP_HOSTED_SDIO_TX_Q_SIZE=20 -CONFIG_ESP_HOSTED_SDIO_RX_Q_SIZE=20 -# CONFIG_ESP_HOSTED_SDIO_CHECKSUM is not set -# end of Hosted SDIO Configuration - -CONFIG_ESP_HOSTED_GPIO_SLAVE_RESET_SLAVE=54 - -# -# Bluetooth Support -# - -# -# Following options must be set before this option can be enabled -# - -# -# 'Component config->Bluetooth' must be enabled -# -# end of Bluetooth Support - -# -# Task defaults -# -CONFIG_ESP_HOSTED_RPC_TASK_STACK=4096 -CONFIG_ESP_HOSTED_DFLT_TASK_STACK=3072 -# end of Task defaults - -CONFIG_ESP_HOSTED_USE_MEMPOOL=y -CONFIG_ESP_HOSTED_MAX_SIMULTANEOUS_SYNC_RPC_REQUESTS=5 -CONFIG_ESP_HOSTED_MAX_SIMULTANEOUS_ASYNC_RPC_REQUESTS=5 - -# -# Debug Settings -# -# CONFIG_ESP_HOSTED_RAW_THROUGHPUT_TRANSPORT is not set -# CONFIG_ESP_HOSTED_PKT_STATS is not set -# end of Debug Settings - -# -# Data path options -# -CONFIG_ESP_HOSTED_HOST_TO_ESP_WIFI_DATA_THROTTLE=y -CONFIG_ESP_HOSTED_PRIV_WIFI_TX_SDIO_HIGH_THRESHOLD=80 -CONFIG_ESP_HOSTED_TO_WIFI_DATA_THROTTLE_HIGH_THRESHOLD=80 -CONFIG_ESP_HOSTED_TO_WIFI_DATA_THROTTLE_LOW_THRESHOLD=60 -# end of Data path options -# end of ESP-Hosted config - -# -# ESP LCD TOUCH -# -CONFIG_ESP_LCD_TOUCH_MAX_POINTS=5 -CONFIG_ESP_LCD_TOUCH_MAX_BUTTONS=1 -# end of ESP LCD TOUCH - -# -# ESP LVGL PORT -# -# CONFIG_LVGL_PORT_ENABLE_PPA is not set -# end of ESP LVGL PORT - -# -# Wi-Fi Remote -# -CONFIG_ESP_WIFI_REMOTE_ENABLED=y -# CONFIG_SLAVE_IDF_TARGET_ESP32 is not set -# CONFIG_SLAVE_IDF_TARGET_ESP32S2 is not set -# CONFIG_SLAVE_IDF_TARGET_ESP32C3 is not set -# CONFIG_SLAVE_IDF_TARGET_ESP32S3 is not set -# CONFIG_SLAVE_IDF_TARGET_ESP32C2 is not set -CONFIG_SLAVE_IDF_TARGET_ESP32C6=y -# CONFIG_SLAVE_IDF_TARGET_ESP32C5 is not set -# CONFIG_SLAVE_IDF_TARGET_ESP32C61 is not set -CONFIG_SLAVE_SOC_WIFI_SUPPORTED=y -CONFIG_SLAVE_SOC_WIFI_WAPI_SUPPORT=y -CONFIG_SLAVE_SOC_WIFI_CSI_SUPPORT=y -CONFIG_SLAVE_SOC_WIFI_MESH_SUPPORT=y -CONFIG_SLAVE_SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH=12 -CONFIG_SLAVE_SOC_WIFI_HW_TSF=y -CONFIG_SLAVE_SOC_WIFI_FTM_SUPPORT=y -CONFIG_SLAVE_FREERTOS_UNICORE=y -CONFIG_SLAVE_SOC_WIFI_GCMP_SUPPORT=y -CONFIG_SLAVE_IDF_TARGET_ARCH_RISCV=y -CONFIG_SLAVE_SOC_WIFI_HE_SUPPORT=y -CONFIG_SLAVE_SOC_WIFI_MAC_VERSION_NUM=2 -CONFIG_ESP_WIFI_REMOTE_LIBRARY_HOSTED=y -# CONFIG_ESP_WIFI_REMOTE_LIBRARY_EPPP is not set - -# -# Wi-Fi configuration -# -CONFIG_WIFI_RMT_STATIC_RX_BUFFER_NUM=10 -CONFIG_WIFI_RMT_DYNAMIC_RX_BUFFER_NUM=32 -# CONFIG_WIFI_RMT_STATIC_TX_BUFFER is not set -CONFIG_WIFI_RMT_DYNAMIC_TX_BUFFER=y -CONFIG_WIFI_RMT_TX_BUFFER_TYPE=1 -CONFIG_WIFI_RMT_DYNAMIC_TX_BUFFER_NUM=32 -CONFIG_WIFI_RMT_STATIC_RX_MGMT_BUFFER=y -# CONFIG_WIFI_RMT_DYNAMIC_RX_MGMT_BUFFER is not set -CONFIG_WIFI_RMT_DYNAMIC_RX_MGMT_BUF=0 -CONFIG_WIFI_RMT_RX_MGMT_BUF_NUM_DEF=5 -# CONFIG_WIFI_RMT_CSI_ENABLED is not set -CONFIG_WIFI_RMT_AMPDU_TX_ENABLED=y -CONFIG_WIFI_RMT_TX_BA_WIN=6 -CONFIG_WIFI_RMT_AMPDU_RX_ENABLED=y -CONFIG_WIFI_RMT_RX_BA_WIN=6 -CONFIG_WIFI_RMT_NVS_ENABLED=y -CONFIG_WIFI_RMT_SOFTAP_BEACON_MAX_LEN=752 -CONFIG_WIFI_RMT_MGMT_SBUF_NUM=32 -CONFIG_WIFI_RMT_IRAM_OPT=y -CONFIG_WIFI_RMT_EXTRA_IRAM_OPT=y -CONFIG_WIFI_RMT_RX_IRAM_OPT=y -CONFIG_WIFI_RMT_ENABLE_WPA3_SAE=y -CONFIG_WIFI_RMT_ENABLE_SAE_PK=y -CONFIG_WIFI_RMT_ENABLE_SAE_H2E=y -CONFIG_WIFI_RMT_SOFTAP_SAE_SUPPORT=y -CONFIG_WIFI_RMT_ENABLE_WPA3_OWE_STA=y -CONFIG_WIFI_RMT_SLP_IRAM_OPT=y -CONFIG_WIFI_RMT_SLP_DEFAULT_MIN_ACTIVE_TIME=50 -CONFIG_WIFI_RMT_BSS_MAX_IDLE_SUPPORT=y -CONFIG_WIFI_RMT_SLP_DEFAULT_MAX_ACTIVE_TIME=10 -CONFIG_WIFI_RMT_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME=15 -# CONFIG_WIFI_RMT_FTM_ENABLE is not set -CONFIG_WIFI_RMT_STA_DISCONNECTED_PM_ENABLE=y -# CONFIG_WIFI_RMT_GCMP_SUPPORT is not set -CONFIG_WIFI_RMT_GMAC_SUPPORT=y -CONFIG_WIFI_RMT_SOFTAP_SUPPORT=y -# CONFIG_WIFI_RMT_SLP_BEACON_LOST_OPT is not set -CONFIG_WIFI_RMT_ESPNOW_MAX_ENCRYPT_NUM=7 -CONFIG_WIFI_RMT_MBEDTLS_CRYPTO=y -CONFIG_WIFI_RMT_MBEDTLS_TLS_CLIENT=y -# CONFIG_WIFI_RMT_EAP_TLS1_3 is not set -# CONFIG_WIFI_RMT_WAPI_PSK is not set -# CONFIG_WIFI_RMT_SUITE_B_192 is not set -# CONFIG_WIFI_RMT_11KV_SUPPORT is not set -# CONFIG_WIFI_RMT_MBO_SUPPORT is not set -# CONFIG_WIFI_RMT_ENABLE_ROAMING_APP is not set -# CONFIG_WIFI_RMT_DPP_SUPPORT is not set -# CONFIG_WIFI_RMT_11R_SUPPORT is not set -# CONFIG_WIFI_RMT_WPS_SOFTAP_REGISTRAR is not set -# CONFIG_WIFI_RMT_ENABLE_WIFI_TX_STATS is not set -# CONFIG_WIFI_RMT_ENABLE_WIFI_RX_STATS is not set -CONFIG_WIFI_RMT_TX_HETB_QUEUE_NUM=3 - -# -# WPS Configuration Options -# -# CONFIG_WIFI_RMT_WPS_STRICT is not set -# CONFIG_WIFI_RMT_WPS_PASSPHRASE is not set -# end of WPS Configuration Options - -# CONFIG_WIFI_RMT_DEBUG_PRINT is not set -# CONFIG_WIFI_RMT_TESTING_OPTIONS is not set -CONFIG_WIFI_RMT_ENTERPRISE_SUPPORT=y -# CONFIG_WIFI_RMT_ENT_FREE_DYNAMIC_BUFFER is not set -CONFIG_ESP_WIFI_ENABLE_SAE_H2E=y -CONFIG_ESP_WIFI_BSS_MAX_IDLE_SUPPORT=y -# end of Wi-Fi configuration -# end of Wi-Fi Remote - -# -# LittleFS -# -# CONFIG_LITTLEFS_SDMMC_SUPPORT is not set -CONFIG_LITTLEFS_MAX_PARTITIONS=3 -CONFIG_LITTLEFS_PAGE_SIZE=256 -CONFIG_LITTLEFS_OBJ_NAME_LEN=64 -CONFIG_LITTLEFS_READ_SIZE=128 -CONFIG_LITTLEFS_WRITE_SIZE=128 -CONFIG_LITTLEFS_LOOKAHEAD_SIZE=128 -CONFIG_LITTLEFS_CACHE_SIZE=512 -CONFIG_LITTLEFS_BLOCK_CYCLES=512 -CONFIG_LITTLEFS_USE_MTIME=y -# CONFIG_LITTLEFS_USE_ONLY_HASH is not set -# CONFIG_LITTLEFS_HUMAN_READABLE is not set -CONFIG_LITTLEFS_MTIME_USE_SECONDS=y -# CONFIG_LITTLEFS_MTIME_USE_NONCE is not set -# CONFIG_LITTLEFS_SPIFFS_COMPAT is not set -# CONFIG_LITTLEFS_FLUSH_FILE_EVERY_WRITE is not set -# CONFIG_LITTLEFS_FCNTL_GET_PATH is not set -# CONFIG_LITTLEFS_MULTIVERSION is not set -# CONFIG_LITTLEFS_MALLOC_STRATEGY_DISABLE is not set -CONFIG_LITTLEFS_MALLOC_STRATEGY_DEFAULT=y -# CONFIG_LITTLEFS_MALLOC_STRATEGY_INTERNAL is not set -# CONFIG_LITTLEFS_MALLOC_STRATEGY_SPIRAM is not set -CONFIG_LITTLEFS_ASSERTS=y -# CONFIG_LITTLEFS_MMAP_PARTITION is not set -# end of LittleFS - # # LVGL configuration # @@ -2566,8 +383,8 @@ CONFIG_LV_USE_CLIB_MALLOC=y # CONFIG_LV_USE_MICROPYTHON_MALLOC is not set # CONFIG_LV_USE_RTTHREAD_MALLOC is not set # CONFIG_LV_USE_CUSTOM_MALLOC is not set -# CONFIG_LV_USE_BUILTIN_STRING is not set -CONFIG_LV_USE_CLIB_STRING=y +CONFIG_LV_USE_BUILTIN_STRING=y +# CONFIG_LV_USE_CLIB_STRING is not set # CONFIG_LV_USE_CUSTOM_STRING is not set # CONFIG_LV_USE_BUILTIN_SPRINTF is not set CONFIG_LV_USE_CLIB_SPRINTF=y @@ -2584,15 +401,15 @@ CONFIG_LV_DPI_DEF=130 # # Operating System (OS) # -# CONFIG_LV_OS_NONE is not set +CONFIG_LV_OS_NONE=y # CONFIG_LV_OS_PTHREAD is not set -CONFIG_LV_OS_FREERTOS=y +# CONFIG_LV_OS_FREERTOS is not set # CONFIG_LV_OS_CMSIS_RTOS2 is not set # CONFIG_LV_OS_RTTHREAD is not set # CONFIG_LV_OS_WINDOWS is not set # CONFIG_LV_OS_MQX is not set +# CONFIG_LV_OS_SDL2 is not set # CONFIG_LV_OS_CUSTOM is not set -CONFIG_LV_USE_OS=2 # end of Operating System (OS) # @@ -2601,17 +418,19 @@ CONFIG_LV_USE_OS=2 CONFIG_LV_DRAW_BUF_STRIDE_ALIGN=1 CONFIG_LV_DRAW_BUF_ALIGN=4 CONFIG_LV_DRAW_LAYER_SIMPLE_BUF_SIZE=24576 -CONFIG_LV_DRAW_THREAD_STACK_SIZE=8192 +CONFIG_LV_DRAW_LAYER_MAX_MEMORY=0 CONFIG_LV_USE_DRAW_SW=y CONFIG_LV_DRAW_SW_SUPPORT_RGB565=y CONFIG_LV_DRAW_SW_SUPPORT_RGB565A8=y CONFIG_LV_DRAW_SW_SUPPORT_RGB888=y CONFIG_LV_DRAW_SW_SUPPORT_XRGB8888=y CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888=y +CONFIG_LV_DRAW_SW_SUPPORT_ARGB8888_PREMULTIPLIED=y CONFIG_LV_DRAW_SW_SUPPORT_L8=y CONFIG_LV_DRAW_SW_SUPPORT_AL88=y CONFIG_LV_DRAW_SW_SUPPORT_A8=y CONFIG_LV_DRAW_SW_SUPPORT_I1=y +CONFIG_LV_DRAW_SW_I1_LUM_THRESHOLD=127 CONFIG_LV_DRAW_SW_DRAW_UNIT_CNT=1 # CONFIG_LV_USE_DRAW_ARM2D_SYNC is not set # CONFIG_LV_USE_NATIVE_HELIUM_ASM is not set @@ -2624,12 +443,15 @@ CONFIG_LV_DRAW_SW_ASM_NONE=y # CONFIG_LV_DRAW_SW_ASM_HELIUM is not set # CONFIG_LV_DRAW_SW_ASM_CUSTOM is not set CONFIG_LV_USE_DRAW_SW_ASM=0 -# CONFIG_LV_USE_DRAW_VGLITE is not set -# CONFIG_LV_USE_DRAW_PXP is not set +# CONFIG_LV_USE_PXP is not set +# CONFIG_LV_USE_G2D is not set # CONFIG_LV_USE_DRAW_DAVE2D is not set # CONFIG_LV_USE_DRAW_SDL is not set # CONFIG_LV_USE_DRAW_VG_LITE is not set # CONFIG_LV_USE_VECTOR_GRAPHIC is not set +# CONFIG_LV_USE_DRAW_DMA2D is not set +# CONFIG_LV_USE_PPA is not set +# CONFIG_LV_USE_DRAW_EVE is not set # end of Rendering Configuration # @@ -2671,6 +493,7 @@ CONFIG_LV_GRADIENT_MAX_STOPS=2 CONFIG_LV_COLOR_MIX_ROUND_OFS=128 # CONFIG_LV_OBJ_STYLE_CACHE is not set # CONFIG_LV_USE_OBJ_ID is not set +# CONFIG_LV_USE_OBJ_NAME is not set # CONFIG_LV_USE_OBJ_PROPERTY is not set # end of Others # end of Feature Configuration @@ -2716,8 +539,8 @@ CONFIG_LV_FONT_MONTSERRAT_40=y # CONFIG_LV_FONT_MONTSERRAT_48 is not set # CONFIG_LV_FONT_MONTSERRAT_28_COMPRESSED is not set # CONFIG_LV_FONT_DEJAVU_16_PERSIAN_HEBREW is not set -# CONFIG_LV_FONT_SIMSUN_14_CJK is not set -# CONFIG_LV_FONT_SIMSUN_16_CJK is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_SOURCE_HAN_SANS_SC_16_CJK is not set # CONFIG_LV_FONT_UNSCII_8 is not set # CONFIG_LV_FONT_UNSCII_16 is not set # end of Enable built-in fonts @@ -2745,13 +568,18 @@ CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y # CONFIG_LV_FONT_DEFAULT_MONTSERRAT_48 is not set # CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28_COMPRESSED is not set # CONFIG_LV_FONT_DEFAULT_DEJAVU_16_PERSIAN_HEBREW is not set -# CONFIG_LV_FONT_DEFAULT_SIMSUN_14_CJK is not set -# CONFIG_LV_FONT_DEFAULT_SIMSUN_16_CJK is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_14_CJK is not set +# CONFIG_LV_FONT_DEFAULT_SOURCE_HAN_SANS_SC_16_CJK is not set # CONFIG_LV_FONT_DEFAULT_UNSCII_8 is not set # CONFIG_LV_FONT_DEFAULT_UNSCII_16 is not set # CONFIG_LV_FONT_FMT_TXT_LARGE is not set # CONFIG_LV_USE_FONT_COMPRESSED is not set CONFIG_LV_USE_FONT_PLACEHOLDER=y + +# +# Enable static fonts +# +# end of Enable static fonts # end of Font Usage # @@ -2761,6 +589,7 @@ CONFIG_LV_TXT_ENC_UTF8=y # CONFIG_LV_TXT_ENC_ASCII is not set CONFIG_LV_TXT_BREAK_CHARS=" ,.;:-_)}" CONFIG_LV_TXT_LINE_BREAK_LONG_LEN=0 +CONFIG_LV_TXT_COLOR_CMD="#" # CONFIG_LV_USE_BIDI is not set # CONFIG_LV_USE_ARABIC_PERSIAN_CHARS is not set # end of Text Settings @@ -2771,11 +600,25 @@ CONFIG_LV_TXT_LINE_BREAK_LONG_LEN=0 CONFIG_LV_WIDGETS_HAS_DEFAULT_VALUE=y CONFIG_LV_USE_ANIMIMG=y CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_ARCLABEL=y CONFIG_LV_USE_BAR=y CONFIG_LV_USE_BUTTON=y CONFIG_LV_USE_BUTTONMATRIX=y CONFIG_LV_USE_CALENDAR=y # CONFIG_LV_CALENDAR_WEEK_STARTS_MONDAY is not set + +# +# Days name configuration +# +CONFIG_LV_MONDAY_STR="Mo" +CONFIG_LV_TUESDAY_STR="Tu" +CONFIG_LV_WEDNESDAY_STR="We" +CONFIG_LV_THURSDAY_STR="Th" +CONFIG_LV_FRIDAY_STR="Fr" +CONFIG_LV_SATURDAY_STR="Sa" +CONFIG_LV_SUNDAY_STR="Su" +# end of Days name configuration + CONFIG_LV_USE_CALENDAR_HEADER_ARROW=y CONFIG_LV_USE_CALENDAR_HEADER_DROPDOWN=y # CONFIG_LV_USE_CALENDAR_CHINESE is not set @@ -2832,7 +675,7 @@ CONFIG_LV_USE_GRID=y # # 3rd Party Libraries # -CONFIG_LV_FS_DEFAULT_DRIVE_LETTER=0 +CONFIG_LV_FS_DEFAULT_DRIVER_LETTER=0 CONFIG_LV_USE_FS_STDIO=y CONFIG_LV_FS_STDIO_LETTER=65 CONFIG_LV_FS_STDIO_PATH="" @@ -2844,6 +687,8 @@ CONFIG_LV_FS_STDIO_CACHE_SIZE=0 # CONFIG_LV_USE_FS_LITTLEFS is not set # CONFIG_LV_USE_FS_ARDUINO_ESP_LITTLEFS is not set # CONFIG_LV_USE_FS_ARDUINO_SD is not set +# CONFIG_LV_USE_FS_UEFI is not set +# CONFIG_LV_USE_FS_FROGFS is not set CONFIG_LV_USE_LODEPNG=y # CONFIG_LV_USE_LIBPNG is not set # CONFIG_LV_USE_BMP is not set @@ -2866,18 +711,7 @@ CONFIG_LV_USE_LODEPNG=y # Others # # CONFIG_LV_USE_SNAPSHOT is not set -CONFIG_LV_USE_SYSMON=y -CONFIG_LV_USE_PERF_MONITOR=y -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_LEFT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_TOP_RIGHT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_LEFT is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_MID is not set -CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_RIGHT=y -# CONFIG_LV_PERF_MONITOR_ALIGN_LEFT_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_RIGHT_MID is not set -# CONFIG_LV_PERF_MONITOR_ALIGN_CENTER is not set -# CONFIG_LV_USE_PERF_MONITOR_LOG_MODE is not set +# CONFIG_LV_USE_SYSMON is not set # CONFIG_LV_USE_PROFILER is not set # CONFIG_LV_USE_MONKEY is not set # CONFIG_LV_USE_GRIDNAV is not set @@ -2886,6 +720,14 @@ CONFIG_LV_PERF_MONITOR_ALIGN_BOTTOM_RIGHT=y CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_IME_PINYIN is not set # CONFIG_LV_USE_FILE_EXPLORER is not set +# CONFIG_LV_USE_FONT_MANAGER is not set +# CONFIG_LV_USE_TEST is not set +# CONFIG_LV_USE_TRANSLATION is not set +# CONFIG_LV_USE_XML is not set +# CONFIG_LV_USE_COLOR_FILTER is not set +CONFIG_LVGL_VERSION_MAJOR=9 +CONFIG_LVGL_VERSION_MINOR=4 +CONFIG_LVGL_VERSION_PATCH=0 # end of Others # @@ -2898,6 +740,7 @@ CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_NUTTX is not set # CONFIG_LV_USE_LINUX_DRM is not set # CONFIG_LV_USE_TFT_ESPI is not set +# CONFIG_LV_USE_LOVYAN_GFX is not set # CONFIG_LV_USE_EVDEV is not set # CONFIG_LV_USE_LIBINPUT is not set # CONFIG_LV_USE_ST7735 is not set @@ -2905,7 +748,11 @@ CONFIG_LV_USE_OBSERVER=y # CONFIG_LV_USE_ST7796 is not set # CONFIG_LV_USE_ILI9341 is not set # CONFIG_LV_USE_GENERIC_MIPI is not set +# CONFIG_LV_USE_NXP_ELCDIF is not set # CONFIG_LV_USE_RENESAS_GLCDC is not set +# CONFIG_LV_USE_ST_LTDC is not set +# CONFIG_LV_USE_FT81X is not set +# CONFIG_LV_USE_UEFI is not set # CONFIG_LV_USE_OPENGLES is not set # CONFIG_LV_USE_QNX is not set # end of Devices @@ -2919,14 +766,19 @@ CONFIG_LV_USE_OBSERVER=y # # Demos # +CONFIG_LV_BUILD_DEMOS=y # CONFIG_LV_USE_DEMO_WIDGETS is not set # CONFIG_LV_USE_DEMO_KEYPAD_AND_ENCODER is not set +# CONFIG_LV_USE_DEMO_BENCHMARK is not set # CONFIG_LV_USE_DEMO_RENDER is not set # CONFIG_LV_USE_DEMO_SCROLL is not set # CONFIG_LV_USE_DEMO_STRESS is not set # CONFIG_LV_USE_DEMO_MUSIC is not set # CONFIG_LV_USE_DEMO_FLEX_LAYOUT is not set # CONFIG_LV_USE_DEMO_MULTILANG is not set +# CONFIG_LV_USE_DEMO_SMARTWATCH is not set +# CONFIG_LV_USE_DEMO_EBIKE is not set +# CONFIG_LV_USE_DEMO_HIGH_RES is not set # end of Demos # end of LVGL configuration # end of Component config @@ -2934,22 +786,8 @@ CONFIG_LV_USE_OBSERVER=y CONFIG_IDF_EXPERIMENTAL_FEATURES=y # Deprecated options for backward compatibility -# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set +CONFIG_APP_BUILD_TYPE_ELF_RAM=y # CONFIG_NO_BLOBS is not set -# CONFIG_APP_ROLLBACK_ENABLE is not set -# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set -# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set -# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set -CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y -# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set -# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set -CONFIG_LOG_BOOTLOADER_LEVEL=3 -# CONFIG_FLASH_ENCRYPTION_ENABLED is not set -CONFIG_FLASHMODE_QIO=y -# CONFIG_FLASHMODE_QOUT is not set -# CONFIG_FLASHMODE_DIO is not set -# CONFIG_FLASHMODE_DOUT is not set -CONFIG_MONITOR_BAUD=115200 # CONFIG_OPTIMIZATION_LEVEL_DEBUG is not set # CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG is not set # CONFIG_COMPILER_OPTIMIZATION_DEFAULT is not set @@ -2965,11 +803,8 @@ CONFIG_STACK_CHECK_NONE=y # CONFIG_STACK_CHECK_STRONG is not set # CONFIG_STACK_CHECK_ALL is not set # CONFIG_WARN_WRITE_STRINGS is not set -# CONFIG_MCPWM_ISR_IN_IRAM is not set -# CONFIG_EVENT_LOOP_PROFILING is not set -CONFIG_POST_EVENTS_FROM_ISR=y -CONFIG_POST_EVENTS_FROM_IRAM_ISR=y -# CONFIG_OTA_ALLOW_HTTP is not set +# CONFIG_ESP_SYSTEM_PD_FLASH is not set +# CONFIG_PERIPH_CTRL_FUNC_IN_IRAM is not set CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 CONFIG_MAIN_TASK_STACK_SIZE=3584 @@ -2990,146 +825,9 @@ CONFIG_TASK_WDT_TIMEOUT_S=5 CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y # CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set -CONFIG_BROWNOUT_DET=y -CONFIG_BROWNOUT_DET_LVL_SEL_7=y -# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set -# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set -CONFIG_BROWNOUT_DET_LVL=7 CONFIG_IPC_TASK_STACK_SIZE=1024 -CONFIG_TIMER_TASK_STACK_SIZE=3584 -CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 -CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 -CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 -CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 -CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y -CONFIG_ESP32_WIFI_TX_BA_WIN=6 -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_RX_BA_WIN=6 -CONFIG_ESP32_WIFI_RX_BA_WIN=6 -CONFIG_ESP32_WIFI_NVS_ENABLED=y -CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 -CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 -CONFIG_ESP32_WIFI_IRAM_OPT=y -CONFIG_ESP32_WIFI_RX_IRAM_OPT=y -CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y -CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y -CONFIG_WPA_MBEDTLS_CRYPTO=y -CONFIG_WPA_MBEDTLS_TLS_CLIENT=y -# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set -CONFIG_ESP32_ENABLE_COREDUMP_TO_UART=y -# CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE is not set -# CONFIG_ESP32_COREDUMP_DATA_FORMAT_BIN is not set -CONFIG_ESP32_COREDUMP_DATA_FORMAT_ELF=y -CONFIG_ESP32_COREDUMP_CHECKSUM_CRC32=y -# CONFIG_ESP32_COREDUMP_CHECKSUM_SHA256 is not set -CONFIG_ESP32_ENABLE_COREDUMP=y -CONFIG_ESP32_CORE_DUMP_MAX_TASKS_NUM=64 -CONFIG_ESP32_CORE_DUMP_UART_DELAY=0 -CONFIG_ESP32_CORE_DUMP_STACK_SIZE=0 -CONFIG_ESP32_CORE_DUMP_DECODE_INFO=y -# CONFIG_ESP32_CORE_DUMP_DECODE_DISABLE is not set -CONFIG_ESP32_CORE_DUMP_DECODE="info" -CONFIG_TIMER_TASK_PRIORITY=1 -CONFIG_TIMER_TASK_STACK_DEPTH=2048 -CONFIG_TIMER_QUEUE_LENGTH=10 -# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set -# CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY is not set # CONFIG_HAL_ASSERTION_SILIENT is not set -# CONFIG_L2_TO_L3_COPY is not set -CONFIG_ESP_GRATUITOUS_ARP=y -CONFIG_GARP_TMR_INTERVAL=60 -CONFIG_TCPIP_RECVMBOX_SIZE=32 -CONFIG_TCP_MAXRTX=12 -CONFIG_TCP_SYNMAXRTX=12 -CONFIG_TCP_MSS=1440 -CONFIG_TCP_MSL=60000 -CONFIG_TCP_SND_BUF_DEFAULT=5760 -CONFIG_TCP_WND_DEFAULT=5760 -CONFIG_TCP_RECVMBOX_SIZE=6 -CONFIG_TCP_QUEUE_OOSEQ=y -CONFIG_TCP_OVERSIZE_MSS=y -# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set -# CONFIG_TCP_OVERSIZE_DISABLE is not set -CONFIG_UDP_RECVMBOX_SIZE=6 -CONFIG_TCPIP_TASK_STACK_SIZE=3072 -CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y -# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set -# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set -CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF -CONFIG_PPP_SUPPORT=y -# CONFIG_PPP_NOTIFY_PHASE_SUPPORT is not set -# CONFIG_PPP_PAP_SUPPORT is not set -# CONFIG_PPP_CHAP_SUPPORT is not set -# CONFIG_PPP_MSCHAP_SUPPORT is not set -# CONFIG_PPP_MPPE_SUPPORT is not set -# CONFIG_PPP_DEBUG_ON is not set -CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 -CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 -CONFIG_ESP32_PTHREAD_STACK_MIN=768 -CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y -# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set -# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set -CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 -CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" -CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS is not set # CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set -# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set -CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y -CONFIG_SUPPORT_TERMIOS=y -CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 -# CONFIG_ESP_SPI_HOST_INTERFACE is not set -CONFIG_ESP_SDIO_HOST_INTERFACE=y -# CONFIG_ESP_SPI_HD_HOST_INTERFACE is not set -# CONFIG_ESP_UART_HOST_INTERFACE is not set -CONFIG_IDF_SLAVE_TARGET="esp32c6" -CONFIG_SDIO_RESET_ACTIVE_HIGH=y -# CONFIG_ESP_SDIO_OPTIMIZATION_RX_NONE is not set -# CONFIG_ESP_SDIO_OPTIMIZATION_RX_MAX_SIZE is not set -CONFIG_ESP_SDIO_OPTIMIZATION_RX_STREAMING_MODE=y -CONFIG_ESP_SDIO_GPIO_RESET_SLAVE=54 -CONFIG_ESP_SDIO_4_BIT_BUS=y -# CONFIG_ESP_SDIO_1_BIT_BUS is not set -CONFIG_ESP_SDIO_BUS_WIDTH=4 -CONFIG_ESP_SDIO_CLOCK_FREQ_KHZ=40000 -CONFIG_ESP_SDIO_PIN_CMD=19 -CONFIG_ESP_SDIO_PIN_CLK=18 -CONFIG_ESP_SDIO_PIN_D0=14 -CONFIG_ESP_SDIO_PIN_D2=16 -CONFIG_ESP_SDIO_PIN_D3=17 -CONFIG_ESP_SDIO_PIN_D1=15 -CONFIG_ESP_SDIO_TX_Q_SIZE=20 -CONFIG_ESP_SDIO_RX_Q_SIZE=20 -# CONFIG_ESP_SDIO_CHECKSUM is not set -CONFIG_ESP_GPIO_SLAVE_RESET_SLAVE=54 -CONFIG_ESP_RPC_TASK_STACK=4096 -CONFIG_ESP_DFLT_TASK_STACK=3072 -CONFIG_ESP_USE_MEMPOOL=y -CONFIG_ESP_MAX_SIMULTANEOUS_SYNC_RPC_REQUESTS=5 -CONFIG_ESP_MAX_SIMULTANEOUS_ASYNC_RPC_REQUESTS=5 -# CONFIG_ESP_RAW_THROUGHPUT_TRANSPORT is not set -# CONFIG_ESP_PKT_STATS is not set -CONFIG_HOST_TO_ESP_WIFI_DATA_THROTTLE=y -CONFIG_PRIV_WIFI_TX_SDIO_HIGH_THRESHOLD=80 -CONFIG_TO_WIFI_DATA_THROTTLE_HIGH_THRESHOLD=80 -CONFIG_TO_WIFI_DATA_THROTTLE_LOW_THRESHOLD=60 -CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 -CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 -CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 -CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 -CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y -CONFIG_ESP32_WIFI_TX_BA_WIN=6 -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y -CONFIG_ESP32_WIFI_RX_BA_WIN=6 -CONFIG_ESP32_WIFI_RX_BA_WIN=6 -CONFIG_ESP32_WIFI_NVS_ENABLED=y -CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 -CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 -CONFIG_ESP32_WIFI_IRAM_OPT=y -CONFIG_ESP32_WIFI_RX_IRAM_OPT=y -CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y -CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y -CONFIG_WPA_MBEDTLS_CRYPTO=y -CONFIG_WPA_MBEDTLS_TLS_CLIENT=y +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED=y # End of deprecated options