Skip to content

Commit 57713bc

Browse files
committed
Update default variable values for compilers
Signed-off-by: Gowtham Suresh Kumar <[email protected]>
1 parent 6f1977b commit 57713bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/scripts/all.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ pre_initialize_variables () {
176176
: ${ARMC6_BIN_DIR:=/usr/bin}
177177
: ${ARM_NONE_EABI_GCC_PREFIX:=arm-none-eabi-}
178178
: ${ARM_LINUX_GNUEABI_GCC_PREFIX:=arm-linux-gnueabi-}
179-
: ${CLANG_LATEST:="clang-16"}
180-
: ${CLANG_EARLIEST:="clang-3.5"}
181-
: ${GCC_LATEST:="gcc-12"}
182-
: ${GCC_EARLIEST:="gcc-4.7"}
179+
: ${CLANG_LATEST:="clang-latest"}
180+
: ${CLANG_EARLIEST:="clang-earliest"}
181+
: ${GCC_LATEST:="gcc-latest"}
182+
: ${GCC_EARLIEST:="gcc-earliest"}
183183
# if MAKEFLAGS is not set add the -j option to speed up invocations of make
184184
if [ -z "${MAKEFLAGS+set}" ]; then
185185
export MAKEFLAGS="-j$(all_sh_nproc)"

tests/scripts/generate_test_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ def parse_function_code(funcs_f, dependencies, suite_dependencies):
668668
name = 'test_' + name
669669

670670
# If a test function has no arguments then add 'void' argument to
671-
# avoid "-Wstrict-prototypes" warnings from clang-16
671+
# avoid "-Wstrict-prototypes" warnings from clang
672672
if len(args) == 0:
673673
code = code.replace('()', '(void)', 1)
674674

0 commit comments

Comments
 (0)