X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=userspace-rcu%2Fliburcu-stable-0.7.sh;fp=userspace-rcu%2Fliburcu-stable-0.7.sh;h=0000000000000000000000000000000000000000;hb=8a67d4900aa6758edac048c9b4681614ea76133e;hp=52fbba46d6a725450dab36a2d3afbeb017a3a89d;hpb=c01d9b1161812326f5921f8e4e3ad5c71a3e3704;p=lttng-ci.git diff --git a/userspace-rcu/liburcu-stable-0.7.sh b/userspace-rcu/liburcu-stable-0.7.sh deleted file mode 100755 index 52fbba4..0000000 --- a/userspace-rcu/liburcu-stable-0.7.sh +++ /dev/null @@ -1,78 +0,0 @@ -# Create build directory -rm -rf $WORKSPACE/build -mkdir -p $WORKSPACE/build - -PREFIX="$WORKSPACE/build" - -./bootstrap - -CONF_OPTS="" - -case "$conf" in -static) - echo "Static build" - CONF_OPTS="--enable-static --disable-shared" - ;; -tls_fallback) - echo "Using pthread_getspecific() to emulate TLS" - CONF_OPTS="--disable-compiler-tls" - ;; -*) - echo "Standard build" - CONF_OPTS="" - ;; -esac - -# Build type -# oot : out-of-tree build -# dist: build via make dist -# * : normal tree build -# -# Make sure to move to the build_path and configure -# before continuing - -BUILD_PATH=$WORKSPACE -case "$build" in - oot) - echo "Out of tree build" - BUILD_PATH=$WORKSPACE/oot - mkdir -p $BUILD_PATH - cd $BUILD_PATH - $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS - ;; - dist) - echo "Distribution out of tree build" - BUILD_PATH=`mktemp -d` - - # Initial configure and generate tarball - ./configure - make dist - - mkdir -p $BUILD_PATH - cp *.tar.* $BUILD_PATH/ - cd $BUILD_PATH - - # Ignore level 1 of tar - tar xvf *.tar.* --strip 1 - - $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS - ;; - *) - BUILD_PATH=$WORKSPACE - echo "Standard tree build" - $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS - ;; -esac - -make -make install -make clean - -# Cleanup rpath and libtool .la files -find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; -find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; - -# Cleanup temp directory of dist build -if [ $build = "dist" ]; then - rm -rf $BUILD_PATH -fi