From e52eda52167104560c632c2c76e48ff3283c24e3 Mon Sep 17 00:00:00 2001 From: Shubham Kulkarni Date: Fri, 30 Apr 2021 10:21:11 +0530 Subject: [PATCH] boards: esp32: Remove disassembly_flag_inline_source property Running xtensa-esp32-elf-objdump -d -S zephyr.elf leads to lag on macOS. Hence this property is removed from binutils. Signed-off-by: Shubham Kulkarni --- boards/xtensa/esp32/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boards/xtensa/esp32/CMakeLists.txt b/boards/xtensa/esp32/CMakeLists.txt index 5c85d6d897f..78c9146854c 100644 --- a/boards/xtensa/esp32/CMakeLists.txt +++ b/boards/xtensa/esp32/CMakeLists.txt @@ -43,6 +43,8 @@ if(CONFIG_BOOTLOADER_ESP_IDF) ${CMAKE_BINARY_DIR}/zephyr/${CONFIG_KERNEL_BIN_NAME}.elf) endif() + set_property(TARGET bintools PROPERTY disassembly_flag_inline_source) + add_dependencies(app EspIdfBootloader EspPartitionTable) board_finalize_runner_args(esp32 "--esp-flash-bootloader=${espidf_build_dir}/bootloader/bootloader.bin")