mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
The Rust code and some built-in compiler functions (__divdc3/__divsc3/__divxc3) complained about missing floating-point stuff: - fmax, fmaxf, fmaxl, logb, logbf, logbl, scalbnl, trunc, floor, ceil. Passing `--gc-sections` to the linker seems to fix this.
41 lines
811 B
Bash
41 lines
811 B
Bash
VERSION=3.7
|
|
TAR=http://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$VERSION.tar.gz
|
|
BUILD_DEPENDS=(curl expat libjpeg libpng openssl sdl zlib freetype liborbital)
|
|
DEPENDS="ca-certificates orbital"
|
|
|
|
function recipe_version {
|
|
echo "$VERSION"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_update {
|
|
echo "skipping update"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
sysroot="${PWD}/../sysroot"
|
|
export TARGET="framebuffer"
|
|
export CFLAGS="-I$sysroot/include -I${PWD}/inst-${TARGET}/include"
|
|
export LDFLAGS="-L$sysroot/lib -L${PWD}/inst-${TARGET}/lib"
|
|
|
|
make V=1
|
|
skip=1
|
|
}
|
|
|
|
function recipe_test {
|
|
echo "skipping test"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
make clean
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
make DESTDIR="$dest" install
|
|
skip=1
|
|
}
|