summaryrefslogtreecommitdiffstats
path: root/build-toolchain
blob: 6431908c71cf7c60259cead687aa6759bb2128cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
set -e

BASEDIR=$(pwd)

mkdir -p $BASEDIR/toolchain/clang
cd $BASEDIR/toolchain/clang

# build llvm and clang binaries
cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD="X86;ARM" \
      -DLLVM_EXTERNAL_CLANG_SOURCE_DIR=../../external/clang \
      -DCMAKE_C_FLAGS="-O2" ../../external/llvm/
make -j $(nproc)

cd $BASEDIR

#TODO: copy include header (now in /usr/include)
# include patch for binutils
# enable optimization for llvm (more stuff?)
# test with gcc-4.8 binaries if there are errors
# document renaming of binaries of cross compiler build and export flag
# review other prebuilt tools from misc, tools, devtools and sdk
# search for bin directories in external and remove binaries