Skip to content

Commit

Permalink
use ARM_MCS_verified config for MCS build
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
axel-h committed Jan 4, 2024
1 parent 188524f commit 633b5d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion standalone-kernel/compile_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,14 @@ function do_compile_kernel()
shift 1
extra_cmake_params="$@"

local config_prefix=${INPUT_ARCH}
if [[ "${extra_info}" == "MCS" && "${INPUT_ARCH}" == "ARM" ]]; then
config_prefix=${INPUT_ARCH}_MCS
fi

local cmake_params=(
-G Ninja
-C ../configs/${INPUT_ARCH}_verified.cmake
-C ../configs/${config_prefix}_verified.cmake
-DCMAKE_TOOLCHAIN_FILE=${INPUT_COMPILER}.cmake
${cmake_params[@]}
${extra_cmake_params[@]}
Expand Down

0 comments on commit 633b5d4

Please sign in to comment.