X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=autogen.sh;h=bd74be34a1e5426965deae14a0b82c1deb219575;hp=33d8fcda2342ad7cb91deba510f6fd24b54f4a26;hb=8fe63cd4f16e1e7cdf528ff053f8eb4da7848455;hpb=f274ece0f76b5709408821e317e87aef76123db6 diff --git a/autogen.sh b/autogen.sh index 33d8fcda2..bd74be34a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -25,7 +25,7 @@ if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then fi if which gtkdocize >/dev/null 2>/dev/null; then - gtkdocize --docdir docs/ + gtkdocize --docdir docs/ --flavour no-tmpl gtkdocargs=--enable-gtk-doc else echo "You don't have gtk-doc installed, and thus won't be able to generate the documentation." @@ -54,14 +54,26 @@ args="$args \ fi if [ "x$1" = "xc" ]; then - ./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args + ./configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args make clean +elif [ "x$1" = "xg" ]; then + ./configure CFLAGS='-g -Og -ftrapv' --enable-compat-libs --enable-kdbus $args + make clean +elif [ "x$1" = "xa" ]; then + ./configure CFLAGS='-g -O0 -Wsuggest-attribute=pure -Wsuggest-attribute=const -ftrapv' --enable-compat-libs --enable-kdbus $args + make clean +elif [ "x$1" = "xl" ]; then + ./configure CC=clang CFLAGS='-g -O0 -ftrapv -Wno-cast-align -Wno-gnu' --enable-compat-libs --enable-kdbus $args + make clean +elif [ "x$1" = "xs" ]; then + scan-build ./configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args + scan-build make else echo echo "----------------------------------------------------------------" echo "Initialized build system. For a common configuration please run:" echo "----------------------------------------------------------------" echo - echo "./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args" + echo "./configure CFLAGS='-g -O0 -ftrapv' --enable-compat-libs --enable-kdbus $args" echo fi