raylib: fix idempotency check to include offscreen variant
The build cache had desktop-only libraylib.a, causing build.sh to skip the offscreen variant entirely. Now requires libraylib_offscreen.a on x86_64 before considering the build complete. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -6,10 +6,17 @@ cd "$DIR"
|
|||||||
|
|
||||||
INSTALL_DIR="$DIR/raylib/install"
|
INSTALL_DIR="$DIR/raylib/install"
|
||||||
|
|
||||||
# Idempotent: skip if already built
|
# Idempotent: skip if already fully built
|
||||||
|
# On x86_64 Linux, also require the offscreen variant
|
||||||
|
NEED_OFFSCREEN=0
|
||||||
|
if [[ "$(uname)" == "Linux" && "$(uname -m)" == "x86_64" ]]; then
|
||||||
|
NEED_OFFSCREEN=1
|
||||||
|
fi
|
||||||
if [ -f "$INSTALL_DIR/lib/libraylib.a" ]; then
|
if [ -f "$INSTALL_DIR/lib/libraylib.a" ]; then
|
||||||
echo "raylib already present, skipping build."
|
if [ "$NEED_OFFSCREEN" -eq 0 ] || [ -f "$INSTALL_DIR/lib/libraylib_offscreen.a" ]; then
|
||||||
exit 0
|
echo "raylib already present, skipping build."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
NJOBS="$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 2)"
|
NJOBS="$(nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 2)"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "raylib"
|
name = "raylib"
|
||||||
version = "5.5.0.6"
|
version = "5.5.0.7"
|
||||||
description = "raylib + pyray Python bindings (commaai fork)"
|
description = "raylib + pyray Python bindings (commaai fork)"
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
dependencies = ["cffi>=1.17.1"]
|
dependencies = ["cffi>=1.17.1"]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "5.5.0.6"
|
__version__ = "5.5.0.7"
|
||||||
Reference in New Issue
Block a user