mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
cf46907256
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").
22 lines
306 B
Makefile
22 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)
|