blob: 30c5ec1f09e4cd9a747764590520ee8ab20b0a39 (
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
|
# Maintainer: Jesus Alonso <doragasu at hotmail dot com>
# NOTE: As I want these packages for Genesis/Megadrive development, they do
# only support the m68000 CPU. If you want to support other m68k variants,
# either modify _target_cpu to suit your needs, or go wild, remove the
# --with-cpu switches and change --disable-multilib with --enable-multilib.
# Be warned that multilib packages will take a lot more time to build, and
# will also require more disk space.
_target=m68k-elf
_target_cpu=m68000
pkgname=${_target}-newlib
pkgver=3.0.0
pkgrel=2
pkgdesc="C library for bare metal systems (${_target})."
arch=(any)
url="https://sourceware.org/newlib/"
license=('BSD')
groups=(devel)
depends=("${_target}-gcc-bootstrap" "${_target}-binutils")
options=('!makeflags' '!strip' 'staticlibs' '!libtool')
source=("ftp://sourceware.org/pub/newlib/newlib-${pkgver}.tar.gz")
sha256sums=('c8566335ee74e5fcaeb8595b4ebd0400c4b043d6acb3263ecb1314f8f5501332')
prepare() {
mkdir ${srcdir}/newlib-build
}
build() {
cd ${srcdir}/newlib-build
export CFLAGS_FOR_TARGET="-Os -g -ffunction-sections -fdata-sections -fomit-frame-pointer -ffast-math"
../newlib-${pkgver}/configure \
--target=${_target} \
--prefix=/usr \
--disable-newlib-supplied-syscalls \
--disable-multilib \
--with-cpu=${_target_cpu} \
--disable-nls
make
}
package() {
cd ${srcdir}/newlib-build
DESTDIR=${pkgdir}/ make install
}
|