Skip to content

Commit 5fc6369

Browse files
committed
Fuzzy Fixing
Was able to reproduce the pipeline's fuzzing build error: ``` ./src/options.h:20:10: fatal error: 'default_options_guard.h' file not found ``` The fix for my local environment was to rearange the order of dependencies. Then default_options_guard.h get generated before it's needed. tjk :)
1 parent 5da2360 commit 5fc6369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ fuzzstandalone: fuzz/fuzz-harness.o fuzz-targets
309309
# provides a main in fuzz-harness.c
310310
fuzz-targets: $(FUZZ_TARGETS) $(FUZZER_OPTIONS)
311311

312-
$(FUZZ_TARGETS): $(FUZZ_OBJS) $(allobjs) $(LIBTOM_DEPS)
312+
$(FUZZ_TARGETS): $(LIBTOM_DEPS) $(allobjs) $(FUZZ_OBJS)
313313
$(CXX) $(CXXFLAGS) fuzz/$@.o $(LDFLAGS) $(allobjs) -o $@$(EXEEXT) $(LIBTOM_LIBS) $(LIBS) $(FUZZLIB) @CRYPTLIB@
314314

315315
# fuzzers that use the custom mutator - these expect a SSH network stream

0 commit comments

Comments
 (0)