Skip to content

Commit 698c76f

Browse files
committed
[Misc] fix build
1 parent d542835 commit 698c76f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.gitignore

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ setup.log
3232
# executables
3333
llfuzz
3434
check_corpus
35+
cov
36+
pattern-check
37+
clean
38+
alive-tv
39+
llmutate
40+
distance
41+
fuzzer
3542

3643
# llvm files
3744
*.bc
@@ -67,10 +74,4 @@ memo/
6774

6875
llfuzz-out
6976
*.tar
70-
compile_flags.txt
71-
cov
72-
pattern-check
73-
clean
74-
alive-tv
75-
llmutate
76-
distance
77+
compile_flags.txt

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ MAKE=@make
22
DUNE=@dune
33
LN=@ln -sf
44
RM=@rm
5-
EXE=llfuzz
5+
EXE=fuzzer
66

77
.PHONY: clean
88

99
all: fmt
1010
$(DUNE) build
1111
$(LN) _build/default/src/main.exe $(EXE)
12-
$(LN) _build/default/src/program/check_corpus.exe check_corpus
12+
$(LN) _build/default/src/check_corpus.exe check_corpus
13+
$(LN) _build/default/src/llmutate.exe llmutate
1314

1415
test: all
1516
$(DUNE) test

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ eval $(SHELL=bash opam env --switch=$OPTIMUZZ_OPAM_SWITCH)
2626
opam pin https://github.com/prosyslab/logger.git
2727
opam install -j $NCPU dune ctypes domainslib progress ocamlgraph ocamlformat merlin ocp-index ocp-indent ocaml-lsp-server
2828
scripts/llvm20.sh
29-
scrtips/alive.sh
29+
scripts/alive.sh
3030

3131
make
3232
# opam install -j $NCPU llvm.16.0.6+nnp

0 commit comments

Comments
 (0)