Skip to content

Commit

Permalink
[projmgr, buildmgr] Shift toolchain registration enforcement from pro…
Browse files Browse the repository at this point in the history
…ject to build management
  • Loading branch information
brondani authored Jul 18, 2024
1 parent 0d2b3d0 commit 4fde508
Show file tree
Hide file tree
Showing 116 changed files with 187 additions and 161 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/buildmgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@ jobs:
CI_CBUILD_INSTALLER: ${{ github.workspace }}/cbuild_install.sh
CMSIS_PACK_ROOT: ${{ github.workspace }}/packs
GCC_TOOLCHAIN_ROOT: ${{ github.workspace }}/${{ matrix.toolchain_root }}
GCC_TOOLCHAIN_10_3_1: ${{ github.workspace }}/${{ matrix.toolchain_root }}
AC6_TOOLCHAIN_6_18_0: ${{ github.workspace }}/${{ matrix.toolchain_root }}
CI_ARCH: ${{ matrix.arch }}
strategy:
#fail-fast: true
Expand Down Expand Up @@ -460,6 +462,8 @@ jobs:
lcov_installer: lcov-1.15.tar.gz
CMSIS_PACK_ROOT: ${{ github.workspace }}/packs
GCC_TOOLCHAIN_ROOT: ${{ github.workspace }}/gcc-arm-11.2-2022.02-x86_64-arm-none-eabi/bin
GCC_TOOLCHAIN_10_3_1: ${{ github.workspace }}/${{ matrix.toolchain_root }}
AC6_TOOLCHAIN_6_18_0: ${{ github.workspace }}/${{ matrix.toolchain_root }}
runs-on: ubuntu-22.04
timeout-minutes: 15
strategy:
Expand Down
7 changes: 3 additions & 4 deletions tools/buildmgr/cbuild/src/CbuildModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,9 @@ bool CbuildModel::GetCompatibleToolchain(const string& name, const string& versi
}

if (selectedVersion.empty()) {
// no compatible registered toolchain was found, search for a suitable config file
if (GetToolchainConfig(toolchainConfigFiles, name, versionRange)) {
return true;
}
// no compatible registered toolchain was found
LogMsg("M616", VAL("NAME", name));
return false;
} else {
// registered toolchain was found
m_toolchainRegisteredVersion = selectedVersion;
Expand Down
1 change: 1 addition & 0 deletions tools/buildmgr/cbuild/src/CbuildMsgs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ void InitMessageTable()
table["M613"] = MessageEntry(MsgLevel::LEVEL_ERROR, CRLF_B, "File '%PATH%' has unexpected format!" );
table["M614"] = MessageEntry(MsgLevel::LEVEL_ERROR, CRLF_B, "Missing access sequence delimiter: '%ACCSEQDELIM%'!" );
table["M615"] = MessageEntry(MsgLevel::LEVEL_ERROR, CRLF_B, "%PROP% '%VAL%' was not found in the loaded packs!" );
table["M616"] = MessageEntry(MsgLevel::LEVEL_ERROR, CRLF_B, "compiler registration environment variable missing, format: %NAME%_TOOLCHAIN_<major>_<minor>_<patch>");

table["M630"] = MessageEntry(MsgLevel::LEVEL_WARNING, CRLF_B, "Device '%DEV%' is substituted with variant '%VAR%'." );
table["M631"] = MessageEntry(MsgLevel::LEVEL_WARNING, CRLF_B, "Project must have exactly one target element!" );
Expand Down
15 changes: 2 additions & 13 deletions tools/buildmgr/cbuildgen/config/AC6.6.16.2.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@
#
# - Applies to toolchain: ARM Compiler 6.16.2 and greater

############### EDIT BELOW ###############
# Set base directory of toolchain
set(TOOLCHAIN_ROOT)
set(TOOLCHAIN_VERSION "6.16.2")

############ DO NOT EDIT BELOW ###########

set(AS "armasm")
set(CC "armclang")
set(CXX "armclang")
Expand All @@ -17,12 +10,8 @@ set(LD "armlink")
set(AR "armar")
set(OC "fromelf")

if(DEFINED REGISTERED_TOOLCHAIN_ROOT)
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
endif()
if(DEFINED REGISTERED_TOOLCHAIN_VERSION)
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")
endif()
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")

if(DEFINED TOOLCHAIN_ROOT AND NOT TOOLCHAIN_ROOT STREQUAL "")
set(EXT)
Expand Down
15 changes: 2 additions & 13 deletions tools/buildmgr/cbuildgen/config/CLANG.17.0.1.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,14 @@
#
# - Applies to toolchain: LLVM/Clang Bare Metal Toolchain for the Arm Architecture 16.0.0 and greater

############### EDIT BELOW ###############
# Set base directory of toolchain
set(TOOLCHAIN_ROOT)
set(TOOLCHAIN_VERSION "17.0.1")

############ DO NOT EDIT BELOW ###########

set(AS "clang")
set(CC "clang")
set(CXX "clang++")
set(CPP "clang")
set(OC "llvm-objcopy")

if(DEFINED REGISTERED_TOOLCHAIN_ROOT)
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
endif()
if(DEFINED REGISTERED_TOOLCHAIN_VERSION)
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")
endif()
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")

if(DEFINED TOOLCHAIN_ROOT)
set(PREFIX)
Expand Down
15 changes: 2 additions & 13 deletions tools/buildmgr/cbuildgen/config/GCC.10.3.1.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,14 @@
#
# - Applies to toolchain: GNU Toolchain for the Arm Architecture 10.3.1 and greater

############### EDIT BELOW ###############
# Set base directory of toolchain
set(TOOLCHAIN_ROOT)
set(TOOLCHAIN_VERSION "10.3.1")

############ DO NOT EDIT BELOW ###########

set(AS "as")
set(CC "gcc")
set(CXX "g++")
set(CPP "gcc")
set(OC "objcopy")

if(DEFINED REGISTERED_TOOLCHAIN_ROOT)
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
endif()
if(DEFINED REGISTERED_TOOLCHAIN_VERSION)
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")
endif()
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")

if(DEFINED TOOLCHAIN_ROOT)
set(PREFIX arm-none-eabi-)
Expand Down
15 changes: 2 additions & 13 deletions tools/buildmgr/cbuildgen/config/IAR.9.32.1.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@
# V1: Initial support
# V2: Support for 32-bit Cortex M,A and R

############### EDIT BELOW ###############
# Set base directory of toolchain
set(TOOLCHAIN_ROOT)
set(TOOLCHAIN_VERSION "9.32.1")

############ DO NOT EDIT BELOW ###########

set(AS "iasmarm")
set(CC "iccarm")
set(CXX "iccarm")
Expand All @@ -20,12 +13,8 @@ set(AR "iarchive")
set(CPP "iccarm")
set(OC "ielftool")

if(DEFINED REGISTERED_TOOLCHAIN_ROOT)
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
endif()
if(DEFINED REGISTERED_TOOLCHAIN_VERSION)
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")
endif()
set(TOOLCHAIN_ROOT "${REGISTERED_TOOLCHAIN_ROOT}")
set(TOOLCHAIN_VERSION "${REGISTERED_TOOLCHAIN_VERSION}")

if(DEFINED TOOLCHAIN_ROOT)
set(EXT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ set(AS_ARM_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ set(AS_FLAGS_C:/sandbox/devtools/build/TestOutput/TestData/Examples/AC6/Asm/AsmA

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.18.0")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ set(CC_FLAGS_C:/Users/Test/AppData/Local/Arm/Packs/ARM/CMSIS/5.8.0/CMSIS/RTOS2/R

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ set(CXX_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ set(CC_FLAGS_C:/sandbox/devtools/build/TestOutput/TestData/Examples/AC6/NestedGr

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/AC6/6.18.0/bin")
set(REGISTERED_TOOLCHAIN_VERSION "6.18.0")
set(TOOLCHAIN_VERSION_MIN "6.0.0")
set(TOOLCHAIN_VERSION_MAX "6.99.99")
include ("C:/sandbox/cbuild/etc/AC6.6.18.0.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ set(CXX_FLAGS_C:/Temp/devtools/tools/buildmgr/test/testinput/Examples/GCC/Access

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ set(AS_FLAGS_C:/sandbox/devtools/build/TestOutput/TestData/Examples/GCC/Asm/GAS.

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "10.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ set(LIB_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ set(CC_FLAGS_C:/Users/Test/AppData/Local/Arm/Packs/ARM/CMSIS/5.8.0/CMSIS/RTOS2/R

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ set(CXX_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "10.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.2.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ set(CXX_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "10.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.2.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ set(CC_SRC_FILES

# Toolchain config map

set(REGISTERED_TOOLCHAIN_ROOT "C:/Compilers/GCC/10.3.1/bin")
set(REGISTERED_TOOLCHAIN_VERSION "10.3.1")
set(TOOLCHAIN_VERSION_MIN "9.2.1")
include ("C:/sandbox/cbuild/etc/GCC.10.3.1.cmake")
include ("C:/sandbox/cbuild/etc/CMSIS-Build-Utils.cmake")
Expand Down
Loading

0 comments on commit 4fde508

Please sign in to comment.