Skip to content
Snippets Groups Projects
Commit 48ec722e authored by jdh8d's avatar jdh8d
Browse files

Added --enable-reduced-analysis configure option

parent f471a981
Branches
Tags
No related merge requests found
......@@ -25,7 +25,7 @@ install:
cp SMPStaticAnalyzer.plx ${IDAROOT}/plugins
clean:
rm $(OBJS) SMPStaticAnalyzer.plx
rm -f $(OBJS) SMPStaticAnalyzer.plx
.PHONY:
@if [ "${IDAROOT}"X = "X" ]; then echo Please set IDAROOT; exit 1; fi
......
This diff is collapsed.
AC_INIT()
AC_ARG_ENABLE([debugging], [ --enable-debugging enable -g when compiling ])
AC_ARG_ENABLE([reducedanalysis], [ --enable-reducedanalysis reduce the amount of in-depth analysis (useful for large programs that exhaust memory)])
AC_CANONICAL_HOST
EXTRA_CFLAGS=-O3
......@@ -8,5 +13,9 @@ if test "$enable_debugging" = yes; then
EXTRA_CFLAGS=-g
fi
if test "$enable_reducedanalysis" = yes; then
EXTRA_CFLAGS="${EXTRA_CFLAGS} -DSMP_REDUCED_ANALYSIS"
fi
AC_SUBST(EXTRA_CFLAGS)
AC_OUTPUT(Makefile)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment