diff options
author | Florin Coras <fcoras@cisco.com> | 2025-01-17 18:10:27 -0500 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2025-01-20 22:37:02 +0000 |
commit | bf3e683584fb114cb3effab96b578845feb467a8 (patch) | |
tree | 74042f03ef93d25dda75a85bf765f648f4fea471 /src | |
parent | 32b003cc7c192248441f9663f39d93cc24b0a0a9 (diff) |
build: fix compiler ordering
All CI builds default to GCC instead of Clang
Type: fix
Fixes: ec68cec6c84e5dc9acaf7828c0118bb71fffc561
Change-Id: I63fce7feda743d05f17d0710fcf25b09674fdbfb
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 967c7772ff3..de1ee713d5c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -13,6 +13,12 @@ cmake_minimum_required(VERSION 3.13) +if (DEFINED VPP_PLATFORM_C_COMPILER_NAMES) + set(CMAKE_C_COMPILER_NAMES ${VPP_PLATFORM_C_COMPILER_NAME}) +else() + set(CMAKE_C_COMPILER_NAMES clang gcc cc) +endif() + project(vpp C) if(NOT DEFINED CMAKE_INSTALL_LIBDIR AND EXISTS "/etc/debian_version") |