Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

debug: log NEEDED libs + ldd in docker build output

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

+3
+3
fedac/native/docker-build.sh
··· 122 122 123 123 [ -f "$BUILD/ac-native" ] || { tail -60 "$BUILD/.make.log" >&2; err "Binary compilation failed"; exit 1; } 124 124 log " Binary: $(stat -c%s "$BUILD/ac-native") bytes" 125 + log " NEEDED libs:" 126 + readelf -d "$BUILD/ac-native" 2>/dev/null | grep NEEDED | sed 's/.*\[/ /' | sed 's/\]//' 127 + ldd "$BUILD/ac-native" 2>&1 | grep -i "not found" && err " MISSING LIBS DETECTED" || log " All libs resolved" 125 128 126 129 # CL build happens after initramfs (step 2) — see below 127 130