X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=configure.in;h=a174f70d0f7ac067694e5c118fbbcd7bc5b690c6;hb=216ec19eb92c224f54cdbe848c6ffd0082d2d54d;hp=63d36be5829b5c2df1220f836d78446d3f078a70;hpb=837b1cd3b4178729a201c7aaace566b0ee599543;p=libfirm diff --git a/configure.in b/configure.in index 63d36be58..a174f70d0 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,8 @@ AC_PREREQ(2.50) dnl if other files should be generated just add them to ac_output_files ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \ ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \ - ir/ana/Makefile ir/tr/Makefile ir/st/Makefile ir/stat/Makefile \ + ir/ana/Makefile ir/tr/Makefile ir/ana2/Makefile ir/stat/Makefile \ + ir/opt/Makefile ir/external/Makefile \ testprograms/Makefile firmjni/Makefile firmjni/testprograms/Makefile \ libfirm.doxygen" @@ -35,6 +36,7 @@ dnl check for additional include dirs AC_ARG_WITH(includedir, [ --with-includedir=add colon seperated list of directories to include search path], CPPFLAGS=$CPPFLAGS" -I"`echo $withval|sed 's;\:; -I;g'`, T_FLAG="") +dnl check for additional library dirs AC_ARG_WITH(libdir, [ --with-libdir=add colon seperated list of directories to linker search path], LDFLAGS=$LDFLAGS" -L"`echo $withval|sed 's;\:; -L;g'`, T_FLAG="") @@ -52,15 +54,15 @@ else fi]) AC_SUBST(enable_debug_libfirm) +dnl disable inlining +dnl ---------------- AC_ARG_ENABLE(inlining, [ --disable-inlining disable inline C-extension], -[enable_inlining=yes], [if test "$enableval" = yes; then AC_DEFINE(USE_INLINING) -fi] +fi], +AC_DEFINE(USE_INLINING) ) -AC_SUBST(enable_inlining) - dnl set profiling dnl ------------- @@ -93,6 +95,18 @@ fi], [enable_firm_jni=no]) AC_SUBST(enable_firm_jni) +dnl set heap analyses support +dnl ------------------------- +AC_ARG_ENABLE(heapanalysis, [ --enable-heapanalysis Compile with heap analysis.], + [enable_heapanalysis=$enableval], [enable_heapanalysis="no"]) +if test "$enable_heapanalysis" = "no"; then + AC_MSG_RESULT([heapanalysis disabled]) +else + AC_DEFINE(DO_HEAPANALYSIS) + AC_MSG_RESULT([heapanalysis enabled]) +fi +AC_SUBST(enable_heapanalysis) + dnl disable linking of libiberty parts (xmalloc, xprintf, obstack, ...) dnl ---------------------- AC_ARG_ENABLE(libiberty,