blob: 47c1a6428ac4d2d10806a8508db028aa726eebdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
pkgname=gcc
version=16.1.0
build_no=1
upstream="${MIRROR_GNU_FTP}/gcc/gcc-${version}/gcc-${version}.tar.gz"
makedepends=(autoconf mpfr mpc gettext)
function do_configure {
mkdir build/
cd build/
conf_flags=(
--prefix=/usr
--build=${DISTRO_TC}
--host=${DISTRO_TC}
--target=${DISTRO_TC}
--disable-werror
--disable-multilib
--disable-nls
--enable-host-pie
)
../configure "${conf_flags[@]}"
}
function do_build {
cd build/
make -j$(nproc)
}
function do_install {
cd build/
make DESTDIR=${DESTDIR} install
}
|