Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: missing drm-display.h include in machines.c + better make error logging

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -1
+1 -1
fedac/native/docker-build.sh
··· 107 107 BUILD_TS="$BUILD_TS" GIT_HASH="$GIT_HASH" BUILD_NAME="$BUILD_NAME" \ 108 108 > "$BUILD/.make.log" 2>&1 || true 109 109 110 - [ -f "$BUILD/ac-native" ] || { err "Binary compilation failed"; tail -30 "$BUILD/.make.log"; exit 1; } 110 + [ -f "$BUILD/ac-native" ] || { tail -60 "$BUILD/.make.log" >&2; err "Binary compilation failed"; exit 1; } 111 111 log " Binary: $(stat -c%s "$BUILD/ac-native") bytes" 112 112 113 113 # CL build happens after initramfs (step 2) — see below
+1
fedac/native/src/machines.c
··· 3 3 // heartbeats, log upload, and remote command reception. 4 4 5 5 #include "machines.h" 6 + #include "drm-display.h" 6 7 #include "swank-bridge.h" 7 8 8 9 #include <stdio.h>