X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=bootstrap.sh;h=42c2157b4862a164f18747190400275c4b2757ff;hb=cb3ca2b63f9ddb2e070814623a3965c88a84eea7;hp=ca36e37c8bb0882d3372fa7608be542c4b0733ac;hpb=9e2f8bdc3a3a5606d6e8010c9baeff11e63ee1bd;p=awesomized%2Flibmemcached diff --git a/bootstrap.sh b/bootstrap.sh index ca36e37c..42c2157b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2012 Brian Aker +# Copyright (C) 2012-2013 Brian Aker # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -296,42 +296,42 @@ function run_configure () # Arguments for configure local BUILD_CONFIGURE_ARG= - # Set ENV DEBUG in order to enable debugging + # If ENV DEBUG is set we enable both debug and asssert, otherwise we see if this is a VCS checkout and if so enable assert + # Set ENV ASSERT in order to enable assert if $DEBUG; then - BUILD_CONFIGURE_ARG='--enable-debug' + BUILD_CONFIGURE_ARG+=' --enable-debug --enable-assert' + elif [[ -n "$VCS_CHECKOUT" ]]; then + BUILD_CONFIGURE_ARG+=' --enable-assert' fi - # Set ENV ASSERT in order to enable assert - if [[ -n "$ASSERT" ]]; then - local ASSERT_ARG= - ASSERT_ARG='--enable-assert' - BUILD_CONFIGURE_ARG="$ASSERT_ARG $BUILD_CONFIGURE_ARG" + if [[ -n "$CONFIGURE_ARG" ]]; then + BUILD_CONFIGURE_ARG+=" $CONFIGURE_ARG" fi - if [[ -n "$CONFIGURE_ARG" ]]; then - BUILD_CONFIGURE_ARG= "$BUILD_CONFIGURE_ARG $CONFIGURE_ARG" + if [[ -n "$PREFIX_ARG" ]]; then + BUILD_CONFIGURE_ARG+=" $PREFIX_ARG" fi ret=1; # If we are executing on OSX use CLANG, otherwise only use it if we find it in the ENV case $HOST_OS in *-darwin-*) - CC=clang CXX=clang++ $top_srcdir/configure $BUILD_CONFIGURE_ARG || die "Cannot execute CC=clang CXX=clang++ configure $BUILD_CONFIGURE_ARG $PREFIX_ARG" + CC=clang CXX=clang++ $top_srcdir/configure $BUILD_CONFIGURE_ARG || die "Cannot execute CC=clang CXX=clang++ configure $BUILD_CONFIGURE_ARG" ret=$? ;; rhel-5*) command_exists 'gcc44' || die "Could not locate gcc44" - CC=gcc44 CXX=gcc44 $top_srcdir/configure $BUILD_CONFIGURE_ARG $PREFIX_ARG || die "Cannot execute CC=gcc44 CXX=gcc44 configure $BUILD_CONFIGURE_ARG $PREFIX_ARG" + CC=gcc44 CXX=gcc44 $top_srcdir/configure $BUILD_CONFIGURE_ARG || die "Cannot execute CC=gcc44 CXX=gcc44 configure $BUILD_CONFIGURE_ARG" ret=$? ;; *) - $CONFIGURE $BUILD_CONFIGURE_ARG $PREFIX_ARG + $CONFIGURE $BUILD_CONFIGURE_ARG ret=$? ;; esac if [ $ret -ne 0 ]; then - die "Could not execute $CONFIGURE $BUILD_CONFIGURE_ARG $PREFIX_ARG" + die "Could not execute $CONFIGURE $BUILD_CONFIGURE_ARG" fi if [ ! -f 'Makefile' ]; then @@ -367,6 +367,10 @@ function save_BUILD () die "OLD_CONFIGURE_ARG($OLD_CONFIGURE_ARG) was set on push, programmer error!" fi + if [[ -n "$OLD_PREFIX" ]]; then + die "OLD_PREFIX($OLD_PREFIX) was set on push, programmer error!" + fi + if [[ -n "$OLD_MAKE" ]]; then die "OLD_MAKE($OLD_MAKE) was set on push, programmer error!" fi @@ -402,6 +406,10 @@ function restore_BUILD () CONFIGURE_ARG=$OLD_CONFIGURE_ARG fi + if [[ -n "$OLD_PREFIX" ]]; then + PREFIX_ARG=$OLD_PREFIX + fi + if [[ -n "$OLD_MAKE" ]]; then MAKE=$OLD_MAKE fi @@ -412,56 +420,11 @@ function restore_BUILD () OLD_CONFIGURE= OLD_CONFIGURE_ARG= + OLD_PREFIX= OLD_MAKE= OLD_TESTS_ENVIRONMENT= - echo "reset happened" -} - -function push_PREFIX_ARG () -{ - if [[ -n "$OLD_PREFIX_ARG" ]]; then - die "OLD_PREFIX_ARG was set on push, programmer error!" - fi - if [[ -n "$PREFIX_ARG" ]]; then - OLD_PREFIX_ARG=$PREFIX_ARG - PREFIX_ARG= - fi - - if [[ -n "$1" ]]; then - PREFIX_ARG="--prefix=$1" - fi -} - -function pop_PREFIX_ARG () -{ - if [[ -n "$OLD_PREFIX_ARG" ]]; then - PREFIX_ARG=$OLD_PREFIX_ARG - OLD_PREFIX_ARG= - else - PREFIX_ARG= - fi -} - -function push_TESTS_ENVIRONMENT () -{ - if [[ -n "$OLD_TESTS_ENVIRONMENT" ]]; then - die "OLD_TESTS_ENVIRONMENT was set on push, programmer error!" - fi - - if [[ -n "$TESTS_ENVIRONMENT" ]]; then - OLD_TESTS_ENVIRONMENT=$TESTS_ENVIRONMENT - TESTS_ENVIRONMENT= - fi -} - -function pop_TESTS_ENVIRONMENT () -{ - TESTS_ENVIRONMENT= - if [[ -n "$OLD_TESTS_ENVIRONMENT" ]]; then - TESTS_ENVIRONMENT=$OLD_TESTS_ENVIRONMENT - OLD_TESTS_ENVIRONMENT= - fi + export -n CC CXX } function safe_pushd () @@ -512,11 +475,11 @@ function make_valgrind () return 1 fi + save_BUILD + # If we are required to run configure, do so now run_configure_if_required - push_TESTS_ENVIRONMENT - # If we don't have a configure, then most likely we will be missing libtool assert_file 'configure' if [[ -f 'libtool' ]]; then @@ -527,13 +490,15 @@ function make_valgrind () make_target 'check' || return 1 - pop_TESTS_ENVIRONMENT + restore_BUILD } function make_install_system () { local INSTALL_LOCATION=$(mktemp -d /tmp/XXXXXXXXXX) - push_PREFIX_ARG $INSTALL_LOCATION + + save_BUILD + PREFIX_ARG="--prefix=$INSTALL_LOCATION" if [ ! -d $INSTALL_LOCATION ] ; then die "ASSERT temp directory not found '$INSTALL_LOCATION'" @@ -541,17 +506,12 @@ function make_install_system () run_configure #install_buid_dir - push_TESTS_ENVIRONMENT - make_target 'install' make_target 'installcheck' make_target 'uninstall' - pop_TESTS_ENVIRONMENT - pop_PREFIX_ARG - rm -r -f $INSTALL_LOCATION make 'distclean' @@ -559,6 +519,7 @@ function make_install_system () die "ASSERT Makefile should not exist" fi + restore_BUILD safe_popd } @@ -625,7 +586,29 @@ function check_mingw () return 0 } -function make_skeleton_mingw () +function check_clang () +{ + command_exists 'clang' + ret=$? + if [ "$ret" -ne 0 ]; then + return 1 + fi + + return 0 +} + +function check_clang_analyzer () +{ + command_exists 'scan-build' + ret=$? + if [ "$ret" -ne 0 ]; then + return 1 + fi + + return 0 +} + +function make_skeleton () { run_configure ret=$? @@ -642,8 +625,6 @@ function make_skeleton_mingw () if command_exists 'wine'; then TESTS_ENVIRONMENT='wine' fi - elif command_exists 'wineconsole'; then - TESTS_ENVIRONMENT='wineconsole --backend=curses' fi if [[ -n "$TESTS_ENVIRONMENT" ]]; then @@ -662,9 +643,8 @@ function make_skeleton_mingw () function make_for_mingw () { - check_mingw if ! check_mingw; then - die 'mingw64 tools were not found' + return 1 fi # Make sure it is clean @@ -678,9 +658,9 @@ function make_for_mingw () CONFIGURE='mingw64-configure' MAKE='mingw64-make' - CONFIGURE_ARGS='--enable-static' + CONFIGURE_ARGS='--enable-static --disable-shared' - make_skeleton_mingw + make_skeleton ret=$? restore_BUILD @@ -688,6 +668,69 @@ function make_for_mingw () return $ret } +function make_for_clang () +{ + if ! check_clang; then + return 1 + fi + + # Make sure it is clean + if [ -f Makefile -o -f configure ]; then + make_maintainer_clean + fi + + run_autoreconf + + save_BUILD + + CC=clang CXX=clang++ + export CC CXX + + make_skeleton + ret=$? + + make_target 'check' + + restore_BUILD + + return $ret +} + +function make_for_clang_analyzer () +{ + if ! check_clang; then + return 1 + fi + + if ! check_clang_analyzer; then + die 'clang-analyzer was not found' + fi + + # Make sure it is clean + if [ -f Makefile -o -f configure ]; then + make_maintainer_clean + fi + + run_autoreconf + + save_BUILD + + CC=clang CXX=clang++ + export CC CXX + CONFIGURE_ARGS='--enable-debug' + + make_skeleton + ret=$? + + make_target 'clean' 'warn' + + scan-build -o clang-html make -j4 -k + + restore_BUILD + + return $ret +} + # If we are locally testing, we should make sure the environment is setup correctly function check_for_jenkins () { @@ -710,6 +753,8 @@ function make_universe () make_valgrind make_gdb make_rpm + make_for_clang + make_for_clang_analyzer if [ check_mingw -eq 0 ]; then make_for_mingw @@ -815,11 +860,11 @@ function make_install_html () function make_gdb () { + save_BUILD + if command_exists 'gdb'; then run_configure_if_required - push_TESTS_ENVIRONMENT - # Set ENV GDB_COMMAND if [[ -z "$GDB_COMMAND" ]]; then setup_gdb_command @@ -839,8 +884,6 @@ function make_gdb () rm 'gdb.txt' fi - pop_TESTS_ENVIRONMENT - if [ -f '.gdb_history' ]; then rm '.gdb_history' fi @@ -852,6 +895,8 @@ function make_gdb () echo 'gdb was not present' return 1 fi + + restore_BUILD } # $1 target to compile @@ -883,9 +928,9 @@ function make_target () if [ $ret -ne 0 ]; then if [ -n "$2" ]; then - warn "Cannot execute $MAKE $1: $ret" + warn "Failed to execute $MAKE $1: $ret" else - die "Cannot execute $MAKE $1: $ret" + die "Failed to execute $MAKE $1: $ret" fi fi @@ -1057,6 +1102,8 @@ function determine_vcs () VCS_CHECKOUT=svn elif [[ -d '.hg' ]]; then VCS_CHECKOUT=hg + else + VCS_CHECKOUT= fi if [[ -n "$VCS_CHECKOUT" ]]; then @@ -1333,6 +1380,10 @@ function check_make_target() ;; 'make_default') ;; + 'clang') + ;; + 'clang-analyzer') + ;; 'test-*') ;; 'valgrind-*') @@ -1377,7 +1428,7 @@ function bootstrap () # Set ENV PREFIX in order to set --prefix for ./configure if [[ -n "$PREFIX" ]]; then - push_PREFIX_ARG $PREFIX + PREFIX_ARG="--prefix=$PREFIX" fi # We should always have a target by this point @@ -1417,15 +1468,32 @@ function bootstrap () 'make_default') make_default ;; + 'clang') + if ! check_clang; then + die "clang was not found" + fi + + if ! make_for_clang; then + die "Failed to build clang: $?" + fi + ;; + 'clang-analyzer') + if ! check_clang_analyzer; then + die "clang-analyzer was not found" + fi + if ! check_clang; then + die "clang was not found" + fi + + if ! make_for_clang_analyzer; then + die "Failed to build clang-analyzer: $?" + fi + ;; 'mingw') - check_mingw if ! check_mingw; then die "mingw was not found" fi - make_for_mingw - check_ret=$? - if ! make_for_mingw; then die "Failed to build mingw: $?" fi @@ -1474,6 +1542,7 @@ function main () local OLD_CONFIGURE= local OLD_CONFIGURE_ARG= + local OLD_PREFIX= local OLD_MAKE= local OLD_TESTS_ENVIRONMENT= @@ -1620,11 +1689,13 @@ export AUTOHEADER export AUTOM4TE export AUTOMAKE export AUTORECONF +export CONFIGURE_ARG export DEBUG export GNU_BUILD_FLAGS export LIBTOOLIZE export LIBTOOLIZE_OPTIONS export MAKE +export PREFIX_ARG export TESTS_ENVIRONMENT export VERBOSE export WARNINGS