mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Use clang by default
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
@ -189,6 +189,10 @@ pre_initialize_variables () {
|
|||||||
if [ -z "${MAKEFLAGS+set}" ]; then
|
if [ -z "${MAKEFLAGS+set}" ]; then
|
||||||
export MAKEFLAGS="-j$(all_sh_nproc)"
|
export MAKEFLAGS="-j$(all_sh_nproc)"
|
||||||
fi
|
fi
|
||||||
|
# if CC is not set, use clang by default to improve build times
|
||||||
|
if [ -z "${CC+set}" ]; then
|
||||||
|
export CC="clang"
|
||||||
|
fi
|
||||||
|
|
||||||
# Include more verbose output for failing tests run by CMake or make
|
# Include more verbose output for failing tests run by CMake or make
|
||||||
export CTEST_OUTPUT_ON_FAILURE=1
|
export CTEST_OUTPUT_ON_FAILURE=1
|
||||||
|
Reference in New Issue
Block a user