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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Maintainer: Estela ad Astra <i@estela.moe>
# Modified on the basis of the official PKGBUILD
# Contributor: Felix Yan <felixonmars@archlinux.org>
# Contributor: Filipe Laíns (FFY00) <lains@archlinux.org>
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
# Contributor: Emil Renner Berthing <aur@esmil.dk>
_target=riscv64-linux-gnu
pkgname=$_target-gcc-full
pkgver=14.2.0
pkgrel=1
pkgdesc='Cross compiler for 32-bit and 64-bit RISC-V, full language support'
arch=('x86_64')
url='https://gcc.gnu.org/'
license=('GPL' 'LGPL' 'FDL')
groups=('risc-v')
provides=("$_target-gcc")
conflicts=("$_target-gcc") # conflicts with the official package
depends=("$_target-binutils" "$_target-glibc" 'libmpc' 'libisl' 'zstd' 'gcc-ada' 'rust')
options=(!emptydirs !strip staticlibs !lto)
source=("https://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.xz")
sha256sums=('a7b39bc69cbf9e25826c5a60ab26477001f7c08d85cec04bc0e29cabed6f3cc9')
b2sums=('87baf2a06dfa75d8fb6cd62c747ef1f57d3b9bbbe33a360d9ed3de4b4dbeaa8d920504c67e409bd9863414202c14fd854b46108e984418171205119216d03d3b')
if [[ -n "$_snapshot" ]]; then
_basedir=gcc-$_snapshot
else
_basedir=gcc-$pkgver
fi
prepare() {
cd $_basedir
echo $pkgver > gcc/BASE-VER
# Do not run fixincludes
sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
rm -rf "$srcdir/gcc-build"
mkdir "$srcdir/gcc-build"
}
build() {
cd gcc-build
CFLAGS=${CFLAGS/-Werror=format-security/}
CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
# Using -pipe causes spurious test-suite failures.
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
CFLAGS=${CFLAGS/-pipe/}
CXXFLAGS=${CXXFLAGS/-pipe/}
"$srcdir/$_basedir/configure" \
--prefix=/usr \
--program-prefix=$_target- \
--with-local-prefix=/usr/$_target \
--with-sysroot=/usr/$_target \
--with-build-sysroot=/usr/$_target \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
--target=$_target \
--host=$CHOST \
--build=$CHOST \
--with-system-zlib \
--with-isl \
--with-linker-hash-style=gnu \
--disable-nls \
--disable-libunwind-exceptions \
--disable-libstdcxx-pch \
--disable-libssp \
--disable-multilib \
--disable-werror \
--enable-languages=ada,c,c++,fortran,go,lto,objc,obj-c++,rust \
--enable-shared \
--enable-threads=posix \
--enable-__cxa_atexit \
--enable-clocale=gnu \
--enable-gnu-unique-object \
--enable-linker-build-id \
--enable-libada \
--enable-lto \
--enable-plugin \
--enable-install-libiberty \
--enable-gnu-indirect-function \
--enable-default-pie \
--enable-checking=release
make -j$(nproc)
}
package() {
make -C gcc-build DESTDIR="$pkgdir" \
install-gcc install-target-{libgcc,libstdc++-v3,libgomp,libgfortran,libquadmath,libatomic,libada,libgo}
# Strip target binaries
find "$pkgdir/usr/lib/gcc/$_target/" "$pkgdir/usr/$_target/lib" -type f \
-and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy \
-R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames \
-R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str \
-R .debug_ranges -R .debug_loc '{}' \;
# Strip host binaries
find "$pkgdir/usr/bin/" "$pkgdir/usr/lib/gcc/$_target/" -type f \
-and \( -executable \) -exec strip '{}' \;
# Remove files that conflict with host gcc package
rm -r "$pkgdir/usr/share/"{man/man7,info,"gcc-$pkgver"}
}
# vim: ts=2 sw=2 et:
|