increase the version number of Dragora
[dragora.git] / stages / 0 / 01-binutils
blobf8706e3278afacf19f4f3ca6ba8525542b4f8c5f
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 ../binutils-${version}/configure \
31 AR="ar" AS="as" CC="$BTCC" CXX="$BTCXX" \
32 CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
33  --prefix="$crossdir" \
34  --host=$host \
35  --target=$target \
36  --enable-deterministic-archives \
37  --disable-compressed-debug-sections \
38  --disable-werror \
39  --disable-nls \
40  --disable-ppl-version-check \
41  --disable-cloog-version-check \
42  --with-sysroot="${crossdir}/$target" \
43  $multilib_options
45 make -j${jobs} MAKEINFO="true"
46 make -j${jobs} MAKEINFO="true" install
48 cleanup()
50     cd -- "$TMPDIR" && rm -rf binutils-*