blob: 3e6b7b7b47f77f46843de5f3423f29f212ee39a1 (
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
|
#!/bin/sh
set -eu
# ensure that we're in the repo root
if [ ! -d .git ]; then
echo please cd to the repo\'s main directory
exit
fi
export PREFIX="$(pwd)/toolchain/prefix/"
export PATH="$(pwd)/toolchain/prefix/bin/:$PATH"
BUILDDIR="$(pwd)/toolchain/binutils-build/"
SYSROOT="$(pwd)/sysroot/"
mkdir -p $PREFIX
mkdir -p $BUILDDIR
cd $BUILDDIR
../binutils/configure \
--target=x86_64-camellia \
--prefix="$PREFIX" \
--with-sysroot \
--disable-nls \
--disable-werror
make -j4
make install
|