forked from ossf/fuzz-introspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_all.sh
More file actions
executable file
·92 lines (78 loc) · 3.19 KB
/
build_all.sh
File metadata and controls
executable file
·92 lines (78 loc) · 3.19 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright 2021 Fuzz Introspector Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
set -ex
BASE=$PWD
BUILD_BASE=$BASE/build
if [ -d $BUILD_BASE ]; then
echo "Reusing set up (LLVM Source). Updating the LLVM plugin"
rm -rf $BUILD_BASE/llvm-project/llvm/include/llvm/Transforms/FuzzIntrospector
rm -rf $BUILD_BASE/llvm-project/llvm/lib/Transforms/FuzzIntrospector
cp -rf ${BASE}/frontends/llvm/include/llvm/Transforms/FuzzIntrospector/ $BUILD_BASE/llvm-project/llvm/include/llvm/Transforms/FuzzIntrospector
cp -rf ${BASE}/frontends/llvm/lib/Transforms/FuzzIntrospector $BUILD_BASE/llvm-project/llvm/lib/Transforms/FuzzIntrospector
cd $BUILD_BASE/llvm-build
cmake -G "Unix Makefiles" -DLLVM_ENABLE_PROJECTS="clang;compiler-rt" \
-DLLVM_BINUTILS_INCDIR=../binutils/include \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86" ../llvm-project/llvm/
make -j $(nproc) llvm-headers
make -j $(nproc)
make install -j$(nproc)
cp -r /usr/local/include /guest
cp -r /usr/local/lib /guest
cp -r /usr/local/bin /guest
else
echo "Cloning and building binutild-gdb and LLVM from scratch."
mkdir $BUILD_BASE
# Build binutils
cd $BUILD_BASE
git clone --depth 1 https://github.com/bminor/binutils-gdb binutils
# Remove some directories we don't need
cd binutils
rm -rf ./gcc
rm -rf ./gdb
cd ../
# Build gold
mkdir build
cd ./build
../binutils/configure --enable-gold --enable-plugins --disable-werror
make -j $(nproc) all-gold
# Now build LLVM
cd ${BUILD_BASE}
# git clone https://github.com/llvm/llvm-project/ --reference /src/llvm-project
cp -r /src/llvm-project ./
cd llvm-project/
# git checkout llvmorg-21.1.0-rc3
echo "Applying diffs to insert Fuzz Introspector plugin in the LLVM pipeline"
$BASE/frontends/llvm/patch-llvm.sh
# Now copy over the LLVM code we have
# This includes our inspector pass and the files included.
cp -rf ${BASE}/frontends/llvm/include/llvm/Transforms/FuzzIntrospector/ ${BUILD_BASE}/llvm-project/llvm/include/llvm/Transforms/FuzzIntrospector
cp -rf ${BASE}/frontends/llvm/lib/Transforms/FuzzIntrospector ${BUILD_BASE}/llvm-project/llvm/lib/Transforms/FuzzIntrospector
# Build LLVM
cd ${BUILD_BASE}
mkdir llvm-build
cd llvm-build
cmake -G "Unix Makefiles" -DLLVM_ENABLE_PROJECTS="clang;compiler-rt" \
-DLLVM_BINUTILS_INCDIR=../binutils/include \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86" ../llvm-project/llvm/
make -j $(nproc) llvm-headers
make -j $(nproc)
make install -j$(nproc)
cp -r /usr/local/include /guest
cp -r /usr/local/lib /guest
cp -r /usr/local/bin /guest
fi