recipes: tools/lziprecover: upgraded to release 1.21
[dragora.git] / stages / 0 / 01-binutils
blob972fd15e5842a993a255e05e5ec5a14c66beec1d
1 # Build script for binutils.
3 # Copyright (c) 2014-2018 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 version=2.31.1
19 cd -- "$TMPDIR"
20 rm -rf binutils-${version}
21 unpack "${worktree}/sources/binutils-${version}.tar.lz"
23 # Build instructions
24 cd binutils-${version}
26 patch -Np1 -i "${worktree}/patches/binutils/branch-updates.diff"
27 patch -Np1 -i "${worktree}/patches/binutils/136_bfd_pic.patch"
29 # Build in a separate directory
30 rm -rf ../binutils-build
31 mkdir ../binutils-build
32 cd ../binutils-build
34 ../binutils-${version}/configure \
35 AR="ar" AS="as" CC="$BTCC" CXX="$BTCXX" \
36 CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
37  --prefix="$crossdir" \
38  --host=$host \
39  --target=$target \
40  --enable-deterministic-archives \
41  --disable-compressed-debug-sections \
42  --disable-werror \
43  --disable-nls \
44  --disable-ppl-version-check \
45  --disable-cloog-version-check \
46  --with-sysroot="${crossdir}/$target" \
47  $multilib_options
49 make -j${jobs} MAKEINFO="true"
50 make -j${jobs} MAKEINFO="true" install
52 cd -- "$TMPDIR"
54 cleanup()
56     rm -rf binutils-${version} binutils-build