From 8f93e4d0d592e20b37b812d1ae22f082893aad76 Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Fri, 17 Feb 2023 10:22:34 +0100 Subject: [PATCH] ulp: Updated ULP CMakeLists.txt to output binary with .elf extension This commit updates the ULP CMakeLists.txt to output the ULP binary with a .elf extension. Currently the output file does not use any extension. --- components/ulp/cmake/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/components/ulp/cmake/CMakeLists.txt b/components/ulp/cmake/CMakeLists.txt index f1f5b88341..9adaa36c40 100644 --- a/components/ulp/cmake/CMakeLists.txt +++ b/components/ulp/cmake/CMakeLists.txt @@ -3,6 +3,7 @@ cmake_minimum_required(VERSION 3.16) include(${IDF_PATH}/tools/cmake/idf.cmake) project(${ULP_APP_NAME} ASM C) add_executable(${ULP_APP_NAME}) +set(CMAKE_EXECUTABLE_SUFFIX ".elf") option(ULP_COCPU_IS_RISCV "Use RISC-V based ULP" OFF)