mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 11:50:10 +02:00
Use the following configure command:
$ ./configure --with-fuzzer --with-fuzzer-lib=/path/to/libFuzzer.a \
CC=clang CXX=clang++
Places an irssi-fuzz in src/fe-fuzz/ after build.
Also can specify SANFLAGS to override the chosen sanitizer flags
(defaults to "-g -fsanitize=address -fsanitize-coverage=trace-pc-guard").
21 lines
306 B
Makefile
21 lines
306 B
Makefile
if BUILD_TEXTUI
|
|
TEXTUI=fe-text
|
|
endif
|
|
|
|
if BUILD_IRSSIBOT
|
|
BOTUI=fe-none
|
|
endif
|
|
|
|
if BUILD_IRSSIFUZZER
|
|
FUZZERUI=fe-fuzz
|
|
endif
|
|
|
|
if HAVE_PERL
|
|
PERLDIR=perl
|
|
endif
|
|
|
|
pkginc_srcdir=$(pkgincludedir)/src
|
|
pkginc_src_HEADERS = \
|
|
common.h
|
|
|
|
SUBDIRS = lib-config core irc fe-common $(PERLDIR) $(TEXTUI) $(BOTUI) $(FUZZERUI)
|