Skip to content

Commit 0ec2b82

Browse files
authored
Fix build errors in MacOS (jerryscript) (#2974)
This PR provides some maintenance fixes for the follow issues with jerryscript: - Patch CMake minimum version < 3.10: CI build is failing on MacOS - Fix missing IMPORT_FSTR data building with GCC 15.2 - `day_names_p` and `month_names_p` ill-defined MacOS CI runner latest now at version 15 (Sequoia) which uses clang 18 (up from 15).
1 parent 19273b4 commit 0ec2b82

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tools/export.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ export PICO_TOOLCHAIN_PATH=${PICO_TOOLCHAIN_PATH:=$SMING_TOOLCHAINS/rp2040}
5353

5454
# Provide non-apple CLANG (e.g. for rbpf library)
5555
if [ -n "$GITHUB_ACTIONS" ] && [ "$(uname)" = "Darwin" ]; then
56-
CLANG="$(brew --prefix llvm@15)/bin/clang"
56+
CLANG="$(brew --prefix llvm@18)/bin/clang"
5757
export CLANG
5858
fi

0 commit comments

Comments
 (0)