]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
do_freebsd-cmake.sh: script to cmake on FreeBSD
authorWillem Jan Withagen <wjw@digiware.nl>
Tue, 19 Jul 2016 14:15:02 +0000 (16:15 +0200)
committerWillem Jan Withagen <wjw@digiware.nl>
Wed, 20 Jul 2016 13:57:41 +0000 (15:57 +0200)
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
do_freebsd-cmake.sh [new file with mode: 0755]

diff --git a/do_freebsd-cmake.sh b/do_freebsd-cmake.sh
new file mode 100755 (executable)
index 0000000..c520586
--- /dev/null
@@ -0,0 +1,30 @@
+#!/bin/sh -xve
+NPROC=`sysctl -n hw.ncpu`
+
+if [ x"$1"x = x"--deps"x ]; then
+    # we need bash first otherwise almost nothing will work
+    sudo pkg install bash
+    if [ ! -L /bin/bash ]; then
+        echo linking /bin/bash to /usr/local/bin/bash
+        ln -s /usr/local/bin/bash /bin/bash
+    fi
+    sudo ./install-deps.sh
+fi
+rm -rf build && ./do_cmake.sh "$*" \
+       -D CMAKE_BUILD_TYPE=Debug \
+       -D ENABLE_GIT_VERSION=OFF \
+       -D WITH_BLKID=OFF \
+       -D WITH_FUSE=OFF \
+       -D WITH_RBD=OFF \
+       -D WITH_XFS=OFF \
+       -D WITH_KVS=OFF \
+       -D WITH_MANPAGE=OFF \
+       -D WITH_LIBCEPHFS=OFF \
+       -D WITH_CEPHFS=OFF \
+       -D WITH_RADOSGW=OFF \
+       2>&1 | tee cmake.log 
+
+cd build 
+gmake -j$NPROC V=1 VERBOSE=1 | tee build.log 2>&1
+gmake -j$NPROC check CEPH_BUFFER_NO_BENCH=yes | tee check.log 2>&1
+