mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 12:24:17 +08:00
51 lines
1.0 KiB
Bash
51 lines
1.0 KiB
Bash
GIT=https://github.com/redox-os/binutils-gdb.git
|
|
|
|
HOST=x86_64-elf-redox
|
|
export AR="${HOST}-ar"
|
|
export AS="${HOST}-as"
|
|
export CC="${HOST}-gcc"
|
|
export CXX="${HOST}-g++"
|
|
export LD="${HOST}-ld"
|
|
export NM="${HOST}-nm"
|
|
export OBJCOPY="${HOST}-objcopy"
|
|
export OBJDUMP="${HOST}-objdump"
|
|
export RANLIB="${HOST}-ranlib"
|
|
export READELF="${HOST}-readelf"
|
|
export STRIP="${HOST}-strip"
|
|
|
|
function recipe_version {
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
return 1
|
|
}
|
|
|
|
function recipe_update {
|
|
echo "skipping update"
|
|
return 1
|
|
}
|
|
|
|
function recipe_build {
|
|
mkdir build
|
|
cd build
|
|
../configure --host=${HOST} --target=${HOST} --prefix=/ --with-sysroot=/usr/x86_64-elf-redox --disable-gdb --disable-nls --disable-werror
|
|
make
|
|
return 1
|
|
}
|
|
|
|
function recipe_test {
|
|
echo "skipping test"
|
|
return 1
|
|
}
|
|
|
|
function recipe_clean {
|
|
cd build
|
|
make clean
|
|
return 1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
cd build
|
|
make DESTDIR="$dest" install
|
|
return 1
|
|
}
|