From 890f819d72b19f9627cd5ccb028709b2b9801c8f Mon Sep 17 00:00:00 2001 From: Rajkumar Kanagaraj Date: Mon, 2 Nov 2020 11:43:25 +0000 Subject: [PATCH] CMake: Add CMakelists.txt and Travis CI support --- .travis.yml | 129 +++++++++++++++++++++++++++++++++++++++++++++++++ CMakeLists.txt | 37 ++++++++++++++ mbed-os.lib | 2 +- 3 files changed, 167 insertions(+), 1 deletion(-) create mode 100644 .travis.yml create mode 100644 CMakeLists.txt diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9d55a0b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,129 @@ +# Copyright (c) 2013-2020 Arm Limited. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 +# +# Licensed under the Apache License, Version 2.0 (the License); you may +# not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an AS IS BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +language: sh +os: linux +dist: xenial + +env: + global: + - PROFILE=develop + +cache: + pip: true + ccache: true + # It looks like ccache for arm-none-eabi is not yet supported by Travis. + # Therefore manually adding ccache directory to cache + directories: + - ${HOME}/.ccache + +addons: + apt: + sources: + - sourceline: 'deb https://apt.kitware.com/ubuntu/ xenial main' + key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc' + - sourceline: 'deb https://apt.kitware.com/ubuntu/ xenial-rc main' + packages: + - cmake + - ninja-build + +matrix: + include: + + - &cmake-build-test + stage: "CMake" + name: "CMake blinky baremetal example - develop (K64F)" + env: NAME=cmake_test TARGET_NAME=K64F PROFILE=develop CACHE_NAME=develop-K64F + language: python + python: 3.8 + install: + # Setup ccache + - ccache -o compiler_check=content + - ccache -M 1G + - pushd /usr/lib/ccache + - sudo ln -s ../../bin/ccache arm-none-eabi-gcc + - sudo ln -s ../../bin/ccache arm-none-eabi-g++ + - export PATH="/usr/lib/ccache:$PATH" + - popd + # Install arm-none-eabi-gcc + - pushd /home/travis/build && mkdir arm-gcc && cd arm-gcc + - curl -L0 "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2?revision=05382cca-1721-44e1-ae19-1e7c3dc96118&la=en&hash=D7C9D18FCA2DD9F894FD9F3C3DC9228498FA281A" --output gcc-arm-none-eabi-9-2020-q2-update.tar.bz2 + - tar xf gcc-arm-none-eabi-9-2020-q2-update.tar.bz2 + - export PATH="$PATH:${PWD}/gcc-arm-none-eabi-9-2020-q2-update/bin" + - popd + - arm-none-eabi-gcc --version + # Hide Travis-preinstalled CMake + # The Travis-preinstalled CMake is unfortunately not installed via apt, so we + # can't replace it with an apt-supplied version very easily. Additionally, we + # can't permit the Travis-preinstalled copy to survive, as the Travis default + # path lists the Travis CMake install location ahead of any place where apt + # would install CMake to. Instead of apt removing or upgrading to a new CMake + # version, we must instead delete the Travis copy of CMake. + - sudo rm -rf /usr/local/cmake* + - pip install --upgrade mbed-tools + - pip install prettytable==0.7.2 + - pip install future==0.16.0 + - pip install "Jinja2>=2.10.1,<2.11" + - pip install "intelhex>=1.3,<=2.2.1" + script: + - mbedtools deploy + - echo mbedtools compile -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE} + - mbedtools compile -t GCC_ARM -m ${TARGET_NAME} -b ${PROFILE} + - ccache -s + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - release (K64F)" + env: NAME=cmake_test TARGET_NAME=K64F PROFILE=release CACHE_NAME=release-K64F + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - debug (K64F)" + env: NAME=cmake_test TARGET_NAME=K64F PROFILE=debug CACHE_NAME=debug-K64F + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - develop (DISCO_L475VG_IOT01A)" + env: NAME=cmake_test TARGET_NAME=DISCO_L475VG_IOT01A PROFILE=develop CACHE_NAME=develop-DISCO_L475VG_IOT01A + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - release (DISCO_L475VG_IOT01A)" + env: NAME=cmake_test TARGET_NAME=DISCO_L475VG_IOT01A PROFILE=release CACHE_NAME=release-DISCO_L475VG_IOT01A + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - debug (DISCO_L475VG_IOT01A)" + env: NAME=cmake_test TARGET_NAME=DISCO_L475VG_IOT01A PROFILE=debug CACHE_NAME=debug-DISCO_L475VG_IOT01A + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - develop (NRF52840_DK)" + env: NAME=cmake_test TARGET_NAME=NRF52840_DK PROFILE=develop CACHE_NAME=develop-NRF52840_DK + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - release (NRF52840_DK)" + env: NAME=cmake_test TARGET_NAME=NRF52840_DK PROFILE=release CACHE_NAME=release-NRF52840_DK + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - debug (NRF52840_DK)" + env: NAME=cmake_test TARGET_NAME=NRF52840_DK PROFILE=debug CACHE_NAME=debug-NRF52840_DK + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - develop (NUCLEO_F303K8)" + env: NAME=cmake_test TARGET_NAME=NUCLEO_F303K8 PROFILE=develop CACHE_NAME=develop-NUCLEO_F303K8 + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - release (NUCLEO_F303K8)" + env: NAME=cmake_test TARGET_NAME=NUCLEO_F303K8 PROFILE=release CACHE_NAME=release-NUCLEO_F303K8 + + - <<: *cmake-build-test + name: "CMake blinky baremetal example - debug (NUCLEO_F303K8)" + env: NAME=cmake_test TARGET_NAME=NUCLEO_F303K8 PROFILE=debug CACHE_NAME=debug-NUCLEO_F303K8 diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e4968d1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,37 @@ +# Copyright (c) 2020 ARM Limited. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 + +cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR) + +set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "") +set(MBED_CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/.mbedbuild CACHE INTERNAL "") +set(APP_TARGET mbed-os-example-blinky-baremetal) + +include(${MBED_PATH}/tools/cmake/app.cmake) + +add_subdirectory(${MBED_PATH}) + +add_executable(${APP_TARGET}) + +mbed_configure_app_target(${APP_TARGET}) + +mbed_set_mbed_target_linker_script(${APP_TARGET}) + +project(${APP_TARGET}) + +target_sources(${APP_TARGET} + PRIVATE + main.cpp +) + +target_link_libraries(${APP_TARGET} + PRIVATE + mbed-baremetal +) + +mbed_set_post_build(${APP_TARGET}) + +option(VERBOSE_BUILD "Have a verbose build process") +if(VERBOSE_BUILD) + set(CMAKE_VERBOSE_MAKEFILE ON) +endif() diff --git a/mbed-os.lib b/mbed-os.lib index 3accc50..df97fc3 100644 --- a/mbed-os.lib +++ b/mbed-os.lib @@ -1 +1 @@ -https://github.com/ARMmbed/mbed-os/#f2278567d09b9ae9f4843e1d9d393526b9462783 +https://github.com/ARMmbed/mbed-os/