forked from tum-i4/macke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.ini
47 lines (36 loc) · 1.73 KB
/
config.ini
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
########################################
# !!! Important notice for all git-users !!!
# Please do not commit your local changes of this file to the repo
# There is a git command for handling config files like this:
#
# git update-index --skip-worktree config.ini
#
# P.S. This can be undone with:
# git update-index --no-skip-worktree config.ini
########################################
[binaries]
# The binary of the shared library with all llvm opt passes needed by macke
# See dependencies section in README.md to get more information
# e.g. "/home/user/git/macke-opt-llvm/bin/libMackeOpt.so" (without "")
libmackeopt: /home/ognawala/macke-opt-llvm/bin/libMackeOpt.so
# The binary of llvm opt, e.g. "/usr/bin/opt" (without "")
llvmopt: /home/ognawala/build/llvm-3.4/Release/bin/opt
# The binary of klee, e.g. "/usr/bin/klee" (without "")
# Warning: the KLEE version must include targeted search, which is missing
# in the vanilla version of KLEE. Again, see dependencies section in README.md
klee: /home/ognawala/build/klee/Release+Asserts/bin/klee
# The binary of llvm-config, e.g. "/usr/bin/llvm-config" (without "")
llvm-config: /usr/bin/llvm-config
# The binary of the shared library with all llvm opt passes needed by the macke fuzzer
# See dependencies section in README.md to get more information
# e.g. "/home/user/git/macke-fuzzer-opt-llvm/bin/libMackeFuzzerOpt.so" (without "")
libmackefuzzopt: /home/kilger/thesis/opt/
# The path, where the afl files can be found
afl-bin: /usr/local/bin/
afl-lib: /usr/local/lib/afl/
# The valgrind binary for coverage analysis
valgrind: /usr/bin/valgrind
[runtime]
# Number of threads used for parallel executation. Without any information
# the number of cpu threads of the current machine is used
threadnum: 1