Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: CONFIG_VERSION quoting in CL libquickjs.so build

Shell was stripping escaped quotes, causing "too many decimal points"
compile error. Use single-quoted -D flag instead.

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

+1 -1
+1 -1
fedac/native/docker-build.sh
··· 336 336 gcc -shared -fPIC -O2 -o "$BUILD/libquickjs.so" \ 337 337 "$QJSDIR/quickjs.c" "$QJSDIR/libunicode.c" \ 338 338 "$QJSDIR/libregexp.c" "$QJSDIR/cutils.c" "$QJSDIR/libbf.c" \ 339 - -DCONFIG_VERSION=\"0.8.0\" -lm 2>&1 || { err "libquickjs.so build failed"; } 339 + '-DCONFIG_VERSION="0.8.0"' -lm 2>&1 || { err "libquickjs.so build failed"; } 340 340 341 341 # Build quickjs-shim.so (CL-friendly wrappers) 342 342 CL_DIR="$NATIVE/cl"