This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/gcc/cross_stage1.bash

49 lines
1.0 KiB
Bash

source $pkg_common
requires=\
(
'binutils/cross'
'autoconf/host'
'mpfr/host'
'gmp/host'
'mpc/host'
)
configure()
{
MAKEINFO='/bin/true' \
"../gcc-$version/configure" $cfg_target_gcc_configure_flags \
--target="$cfg_target_canonical" \
--host="$cfg_host_canonical" \
--build="$cfg_host_canonical" \
--prefix="$cfg_dir_toolchain" \
--with-mpfr="$cfg_dir_toolchain" \
--with-gmp="$cfg_dir_toolchain" \
--with-mpc="$cfg_dir_toolchain" \
--without-headers \
--disable-shared \
--disable-threads \
--disable-libatomic \
--disable-libssp \
--disable-libgomp \
--disable-libmudflap \
--disable-libquadmath \
--disable-multilib \
--with-newlib \
--enable-poison-system-directories \
--enable-target-optspace \
--enable-languages=c \
--disable-decimal-float \
--disable-nls
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}