blob: 3161d394ed5c0ba65d104a2b66a97785bbeb13ab (
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
|
# Maintainer: Joey Dumont <joey.dumont@gmail.com>
_target=mips64-ultra-elf
pkgname=${_target}-newlib
_newlibver=4.5.0.20241231
pkgver=4.5.0.20241231_r183.813f1ae
pkgrel=1
pkgdesc="A C library intended for use on embedded systems (${_target})"
arch=('x86_64')
url='http://sourceware.org/newlib/'
license=('BSD')
makedepends=("${_target}-gcc-stage1" "git")
options=('!strip' '!emptydirs')
source=("ftp://sourceware.org/pub/newlib/newlib-${_newlibver}.tar.gz"
"git+https://github.com/glankk/n64.git#branch=n64-ultra"
)
sha256sums=('33f12605e0054965996c25c1382b3e463b0af91799001f5bb8c0630f2ec8c852'
'SKIP')
pkgver() {
cd "${srcdir}/n64/"
printf "%s_r%s.%s" "${_newlibver}" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
#prepare() {
# Apply the patch.
#patch -d "${srcdir}/newlib-${_newlibver}" -p 1 < "${srcdir}/n64/config/newlib/newlib.diff"
#}
build() {
rm -rf build
mkdir build && cd build
export CFLAGS_FOR_TARGET="-Os -g -fpermissive -ffunction-sections -fdata-sections"
../newlib-${_newlibver}/configure \
--prefix=/usr \
--target=${_target} \
--with-newlib \
--enable-newlib-global-atexit \
--disable-newlib-fvwrite-in-streamio \
--disable-newlib-wide-orient \
--disable-newlib-unbuf-stream-opt \
--disable-newlib-supplied-syscalls \
--enable-lite-exit \
--enable-lto \
--disable-libssp \
--disable-nls \
--disable-shared \
--disable-threads \
--disable-werror \
--enable-multilib
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install -j1
find "$pkgdir"/usr/$_target/lib \( -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 '{}' \;
install -d "$pkgdir"/usr/share/licenses/$pkgname/
install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib-$_newlibver/COPYING*
# Remove conflicting files.
rm -rf "${pkgdir}/usr/share/info/"
}
|