increase the version number of Dragora
[dragora.git] / stages / 1 / 04-binutils
blob80abfeb5412ae487ab589ed535b5fc6b713a6959
1 # Build script for binutils.
3 # Copyright (c) 2014-2017 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.29.1
19 rm -rf -- "${TMPDIR}/binutils-${version}"
20 untar "${worktree}/sources/binutils-${version}.tar.lz" "$TMPDIR"
22 # Build instructions
23 cd -- "${TMPDIR}/binutils-${version}"
25 # Build in a separate directory
26 rm -rf ../binutils-build
27 mkdir ../binutils-build
28 cd ../binutils-build
30 # Import and export toolchain variables
31 . "${worktree}/stages/env.d/cross-staticenv"
33 ../binutils-${version}/configure \
34 AR="$AR" AS="$AS" LD="$LD" RANLIB="$RANLIB" READELF="$READELF" STRIP="$STRIP" \
35 CC="$BTCC" CXX="$BTCXX" \
36 CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
37  --prefix=/tools \
38  --libdir=/tools/lib${libSuffix} \
39  --build=$host \
40  --host=$target \
41  --target=$target \
42  --enable-deterministic-archives \
43  --disable-compressed-debug-sections \
44  --disable-nls \
45  --disable-werror \
46  --disable-ppl-version-check \
47  --disable-cloog-version-check \
48  --with-lib-path=/tools/lib \
49  $multilib_options
51 make -j${jobs} MAKEINFO="true"
52 make -j${jobs} MAKEINFO="true" install
54 # Make a new ld(1) containing another search path,
55 # this is handled by 16-toolchain (called from musl's recipe)
56 make -C ld clean
57 make -C ld LIB_PATH=/usr/lib${libSuffix}:/lib
58 cp -f ld/ld-new /tools/bin
60 # Unset some imported variables from file
61 unset AR AS LD RANLIB READELF STRIP
63 cleanup()
65     cd -- "$TMPDIR" && rm -rf binutils-*