mirror of https://github.com/ARMmbed/mbed-os.git
127 lines
5.0 KiB
CMake
127 lines
5.0 KiB
CMake
# Copyright (c) 2021 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# File containing various functions for operating on library and executable targets.
|
|
|
|
#
|
|
# Converts output file of `target` to binary file and to Intel HEX file.
|
|
#
|
|
function(mbed_generate_bin_hex target)
|
|
get_property(elf_to_bin GLOBAL PROPERTY ELF2BIN)
|
|
|
|
set(artifact_name $<TARGET_FILE_BASE_NAME:${target}>)
|
|
|
|
if (MBED_TOOLCHAIN STREQUAL "GCC_ARM")
|
|
# The first condition is quoted in case MBED_OUTPUT_EXT is unset
|
|
if ("${MBED_OUTPUT_EXT}" STREQUAL "" OR MBED_OUTPUT_EXT STREQUAL "bin")
|
|
list(APPEND CMAKE_POST_BUILD_COMMAND
|
|
COMMAND ${elf_to_bin} -O binary $<TARGET_FILE:${target}> ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.bin
|
|
COMMAND ${CMAKE_COMMAND} -E echo "-- built: ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.bin"
|
|
)
|
|
endif()
|
|
if ("${MBED_OUTPUT_EXT}" STREQUAL "" OR MBED_OUTPUT_EXT STREQUAL "hex")
|
|
list(APPEND CMAKE_POST_BUILD_COMMAND
|
|
COMMAND ${elf_to_bin} -O ihex $<TARGET_FILE:${target}> ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.hex
|
|
COMMAND ${CMAKE_COMMAND} -E echo "-- built: ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.hex"
|
|
)
|
|
endif()
|
|
elseif(MBED_TOOLCHAIN STREQUAL "ARM")
|
|
get_property(mbed_studio_arm_compiler GLOBAL PROPERTY MBED_STUDIO_ARM_COMPILER)
|
|
if ("${MBED_OUTPUT_EXT}" STREQUAL "" OR MBED_OUTPUT_EXT STREQUAL "bin")
|
|
list(APPEND CMAKE_POST_BUILD_COMMAND
|
|
COMMAND ${elf_to_bin} ${mbed_studio_arm_compiler} --bin -o ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.bin $<TARGET_FILE:${target}>
|
|
COMMAND ${CMAKE_COMMAND} -E echo "-- built: ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.bin"
|
|
)
|
|
endif()
|
|
if ("${MBED_OUTPUT_EXT}" STREQUAL "" OR MBED_OUTPUT_EXT STREQUAL "hex")
|
|
list(APPEND CMAKE_POST_BUILD_COMMAND
|
|
COMMAND ${elf_to_bin} ${mbed_studio_arm_compiler} --i32combined -o ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.hex $<TARGET_FILE:${target}>
|
|
COMMAND ${CMAKE_COMMAND} -E echo "-- built: ${CMAKE_CURRENT_BINARY_DIR}/${artifact_name}.hex"
|
|
)
|
|
endif()
|
|
endif()
|
|
add_custom_command(
|
|
TARGET
|
|
${target}
|
|
POST_BUILD
|
|
COMMAND
|
|
${CMAKE_POST_BUILD_COMMAND}
|
|
COMMENT
|
|
"executable:"
|
|
VERBATIM
|
|
)
|
|
endfunction()
|
|
|
|
#
|
|
# Parse toolchain generated map file of `target` and display a readable table format.
|
|
#
|
|
function(mbed_generate_map_file target)
|
|
add_custom_command(
|
|
TARGET
|
|
${target}
|
|
POST_BUILD
|
|
COMMAND ${Python3_EXECUTABLE} ${mbed-os_SOURCE_DIR}/tools/memap.py -t ${MBED_TOOLCHAIN} ${CMAKE_CURRENT_BINARY_DIR}/${target}${CMAKE_EXECUTABLE_SUFFIX}.map
|
|
WORKING_DIRECTORY
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
endfunction()
|
|
|
|
#
|
|
# Validate selected application profile.
|
|
#
|
|
function(mbed_validate_application_profile target)
|
|
get_target_property(app_link_libraries ${target} LINK_LIBRARIES)
|
|
string(FIND "${app_link_libraries}" "mbed-baremetal" string_found_position)
|
|
if(${string_found_position} GREATER_EQUAL 0)
|
|
if(NOT "bare-metal" IN_LIST MBED_TARGET_SUPPORTED_APPLICATION_PROFILES)
|
|
message(FATAL_ERROR
|
|
"Use full profile as baremetal profile is not supported for this Mbed target")
|
|
endif()
|
|
elseif(NOT "full" IN_LIST MBED_TARGET_SUPPORTED_APPLICATION_PROFILES)
|
|
message(FATAL_ERROR
|
|
"The full profile is not supported for this Mbed target")
|
|
endif()
|
|
endfunction()
|
|
|
|
#
|
|
# Set post build operations
|
|
#
|
|
function(mbed_set_post_build target)
|
|
# The mapfile name includes the top-level target name and the
|
|
# executable suffix for all toolchains as CMake hardcodes the name of the
|
|
# diagnostic output file for some toolchains.
|
|
|
|
# copy mapfile .map to .map.old for ram/rom statistics diff in memap.py
|
|
if(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/${target}${CMAKE_EXECUTABLE_SUFFIX}.map)
|
|
add_custom_command(
|
|
TARGET
|
|
${target}
|
|
PRE_BUILD
|
|
COMMAND
|
|
${CMAKE_COMMAND} -E rename "${CMAKE_CURRENT_BINARY_DIR}/${target}${CMAKE_EXECUTABLE_SUFFIX}.map" "${CMAKE_CURRENT_BINARY_DIR}/${target}${CMAKE_EXECUTABLE_SUFFIX}.map.old"
|
|
)
|
|
endif()
|
|
|
|
mbed_configure_memory_map(${target} "${CMAKE_CURRENT_BINARY_DIR}/${target}${CMAKE_EXECUTABLE_SUFFIX}.map")
|
|
mbed_validate_application_profile(${target})
|
|
mbed_generate_bin_hex(${target})
|
|
|
|
if(COMMAND mbed_post_build_function)
|
|
mbed_post_build_function(${target})
|
|
endif()
|
|
|
|
if(HAVE_MEMAP_DEPS)
|
|
mbed_generate_map_file(${target})
|
|
endif()
|
|
|
|
mbed_generate_upload_debug_targets(${target})
|
|
mbed_generate_ide_debug_configuration(${target})
|
|
endfunction()
|
|
|
|
#
|
|
# Call this at the very end of the build script. Does some final cleanup tasks such as
|
|
# writing out debug configurations.
|
|
#
|
|
function(mbed_finalize_build)
|
|
mbed_finalize_ide_debug_configurations()
|
|
endfunction(mbed_finalize_build) |