facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
64 lines
1.5 KiB
Bash
Executable File
64 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
command -v emcc >/dev/null 2>&1 || {
|
|
echo >&2 "emsdk could not be found. Aborting."
|
|
exit 1
|
|
}
|
|
|
|
set -e
|
|
|
|
SOURCE_DIR=$PWD
|
|
|
|
# Working directories
|
|
TARGET=$SOURCE_DIR/target
|
|
mkdir -p "$TARGET"
|
|
|
|
# Define default arguments
|
|
|
|
# JS BigInt to Wasm i64 integration, disabled by default
|
|
# This needs to test false if there exists an environment variable called
|
|
# WASM_BIGINT whose contents are empty. Don't use +x.
|
|
if [ -n "${WASM_BIGINT}" ]; then
|
|
WASM_BIGINT=true
|
|
else
|
|
WASM_BIGINT=false
|
|
fi
|
|
|
|
# Parse arguments
|
|
while [ $# -gt 0 ]; do
|
|
case $1 in
|
|
--wasm-bigint) WASM_BIGINT=true ;;
|
|
--debug) DEBUG=true ;;
|
|
*)
|
|
echo "ERROR: Unknown parameter: $1" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
# Common compiler flags
|
|
export CFLAGS="-O3 -fPIC"
|
|
if [ "$WASM_BIGINT" = "true" ]; then
|
|
# We need to detect WASM_BIGINT support at compile time
|
|
export CFLAGS+=" -DWASM_BIGINT"
|
|
fi
|
|
if [ "$DEBUG" = "true" ]; then
|
|
export CFLAGS+=" -DDEBUG_F"
|
|
fi
|
|
export CXXFLAGS="$CFLAGS"
|
|
|
|
# Build paths
|
|
export CPATH="$TARGET/include"
|
|
export PKG_CONFIG_PATH="$TARGET/lib/pkgconfig"
|
|
export EM_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
|
|
|
|
# Specific variables for cross-compilation
|
|
export CHOST="wasm32-unknown-linux" # wasm32-unknown-emscripten
|
|
|
|
autoreconf -fiv
|
|
emconfigure ./configure --host=$CHOST --prefix="$TARGET" --enable-static --disable-shared --disable-dependency-tracking \
|
|
--disable-builddir --disable-multi-os-directory --disable-raw-api --disable-docs
|
|
make install
|
|
cp fficonfig.h target/include/
|
|
cp include/ffi_common.h target/include/
|