blob: 87c1e39c388223fe7982648d9d13b8c6399276f7 (
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
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
|
# Maintainer: Viktor Schneider <info at vjs <dot> io>
# Based on PKGBUILD from msp430-elf-gcc
_target="msp430-elf"
pkgname=${_target}-libstdc++
pkgver=12.2.0
pkgrel=1
pkgdesc="The GNU C++ Standard Library for the ${_target} target."
arch=(i686 x86_64)
license=('GPL' 'LGPL')
url="http://gcc.gnu.org"
depends=("${_target}-newlib" "${_target}-binutils" "${_target}-gcc>=12.0.0" "${_target}-gcc<13.0.0" "libmpc" "elfutils" "zlib")
options=('staticlibs' '!buildflags' '!libtool' '!emptydirs' 'zipman' 'docs' '!strip')
source=(https://ftpmirror.gnu.org/gcc/gcc-${pkgver}/gcc-${pkgver}.tar.xz)
sha256sums=('e549cf9cf3594a00e27b6589d4322d70e0720cdd213f39beb4181e06926230ff')
prepare() {
cd "${srcdir}/gcc-${pkgver}"
[[ -d gcc-build ]] && rm -rf gcc-build
mkdir gcc-build
}
build() {
cd "${srcdir}/gcc-${pkgver}"
export CFLAGS="-O2 -pipe"
export CXXFLAGS="-O2 -pipe"
export CFLAGS_FOR_TARGET="-Os -pipe"
export CXXFLAGS_FOR_TARGET="-Os -pipe"
echo ${pkgver} > gcc/BASE-VER
cd gcc-build
../configure \
--prefix=/usr \
--program-prefix=${_target}- \
--target=${_target} \
--host=$CHOST \
--build=$CHOST \
--disable-shared \
--disable-nls \
--disable-threads \
--enable-languages=c++ \
--enable-multilib \
--with-newlib \
--with-local-prefix=/usr/${_target} \
--with-sysroot=/usr/${_target} \
--with-as=/usr/bin/${_target}-as \
--with-ld=/usr/bin/${_target}-ld \
--enable-interwork \
--disable-namespaces \
--disable-libgcc-rebuild
make all-target-libstdc++-v3
}
package() {
cd "${srcdir}/gcc-${pkgver}/gcc-build"
export CFLAGS="-O2 -pipe"
export CXXFLAGS="-O2 -pipe"
export CFLAGS_FOR_TARGET="-Os -pipe"
export CXXFLAGS_FOR_TARGET="-Os -pipe"
make DESTDIR="${pkgdir}" install-target-libstdc++-v3
rm -rf "${pkgdir}/usr/share"
rm -rf "${pkgdir}/usr/lib"
# strip it manually
strip "${pkgdir}"/usr/bin/* 2>/dev/null || true
find "${pkgdir}"/usr/lib -type f -exec /usr/bin/${_target}-strip \
--strip-unneeded {} \; 2>/dev/null || true
}
|