blob: bab3db81a8761cd975d317f176aeaa4b764690af (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: Dani RodrÃguez <dani@danirod.es>
# Contributor: c0repwn3r <core@coredoes.dev>
pkgname=i386-elf-gcc
pkgver=14.1.0
pkgrel=0
epoch=
pkgdesc="GNU gcc for the i386- toolchain"
arch=(x86_64)
url="https://www.gnu.org/software/gcc"
license=('GPL')
groups=(i386-elf-toolchain)
makedepends=(gmp mpfr gcc)
depends=(xz libmpc i386-elf-binutils)
source=(
"http://ftpmirror.gnu.org/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz"
)
sha256sums=('e283c654987afe3de9d8080bc0bd79534b5ca0d681a73a11ff2b5d3767426840')
build() {
# GCC build fails with format-security.
CFLAGS=${CFLAGS/-Werror=format-security/}
CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
# Create temporary build dir
mkdir -p "i386-gcc-$pkgver-build"
cd "i386-gcc-$pkgver-build"
# Configure, we are building in seperate directory to cleanly seperate the binaries from the source
../gcc-$pkgver/configure \
--prefix=/usr \
--target=i386-elf \
--disable-nls \
--disable-werror \
--disable-multilib \
--without-headers \
--enable-languages=c,c++ \
--disable-werror
# Build
make all-gcc
make all-target-libgcc
}
package() {
cd "i386-gcc-$pkgver-build"
make install-gcc DESTDIR=$pkgdir
make install-target-libgcc DESTDIR=$pkgdir
# Remove conflicting files
rm -rf $pkgdir/usr/share/info
rm -rf $pkgdir/usr/share/man/man7
}
|