From 3ae6ffdb01e02a6ceb0cbd64aab4094c4cda32f7 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sun, 8 Dec 2024 20:42:04 +0200 Subject: [PATCH] ports/tcc: Create usr/include/sys/ucontext.h This file does not have to contain anything, tcc just requires that it exists. --- ports/tcc/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/tcc/build.sh b/ports/tcc/build.sh index ed2b8a60..a3c55f53 100755 --- a/ports/tcc/build.sh +++ b/ports/tcc/build.sh @@ -18,6 +18,7 @@ configure() { } build() { + touch $BANAN_SYSROOT/usr/include/sys/ucontext.h make -j$(nproc) cross-$BANAN_ARCH $BANAN_ARCH-libtcc1-usegcc=yes || exit 1 }