Skip to content

Commit

Permalink
Fix fuzzer library linkage (missing dictionary.o)
Browse files Browse the repository at this point in the history
  • Loading branch information
eustas authored Feb 25, 2017
1 parent cdd1971 commit a9d21c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ endif
all : $(OBJS) $(EXECUTABLES) $(ARCHIVES)

$(ARCHIVES) : $(ARCHIVE_OBJS) $(OBJS) deps
$(AR) $(ARFLAGS) $(SRCDIR)/$@.a $(OBJS) $(ENCOBJ) $(DECOBJ) $(SRCDIR)/$@.o
$(AR) $(ARFLAGS) $(SRCDIR)/$@.a $(OBJS) \
$(COMMONOBJ) $(ENCOBJ) $(DECOBJ) $(SRCDIR)/$@.o

$(EXECUTABLES) : $(EXE_OBJS) deps
$(CXX) $(LFLAGS) $(OBJS) $(COMMONOBJ) $(ENCOBJ) $(DECOBJ) $(SRCDIR)/$@.o -o $@
Expand Down

0 comments on commit a9d21c7

Please sign in to comment.