feat: add lab-rv32i-freertos-semaphore-notify card

This commit is contained in:
user
2026-07-21 19:14:20 +02:00
commit 3ae96a0d06
67 changed files with 37159 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -eu
cxx=${CXX_HOST:-c++}
build_dir=${1:-host-build}
mkdir -p "$build_dir"
$cxx -std=c++17 -Wall -Wextra -Werror -pedantic \
-fsanitize=address,undefined -fno-omit-frame-pointer \
-Itests/host-shim -Iinclude tests/synchronization_host.cpp \
-o "$build_dir/synchronization_host"
ASAN_OPTIONS=detect_leaks=1 "$build_dir/synchronization_host"
echo "PASS host: binary/counting bounds and explicit notification actions"