Skip to content

Commit

Permalink
FreeBSD: do_freebsd.sh
Browse files Browse the repository at this point in the history
 - rearrange and and more checks before building
 - introduce CEPH_DEV to add test/code/debugging when DEVeloping

Signed-off-by: Willem Jan Withagen <[email protected]>
  • Loading branch information
wjwithagen committed Nov 22, 2016
1 parent eb8b4c8 commit 84cc0dd
Showing 1 changed file with 38 additions and 11 deletions.
49 changes: 38 additions & 11 deletions do_freebsd.sh
Original file line number Diff line number Diff line change
@@ -1,22 +1,49 @@
#!/bin/sh -xve
NPROC=`sysctl -n hw.ncpu`

# we need bash first otherwise almost nothing will work
if [ ! -L /bin/bash ]; then
echo install bash and link /bin/bash to /usr/local/bin/bash
echo Run:
echo sudo pkg install bash
echo ln -s /usr/local/bin/bash /bin/bash
exit 1
fi
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
if ! grep -q ENODATA /usr/include/errno.h; then
echo Need ENODATA in /usr/include/errno.h for cython compilations
echo Please add it manually after ENOATTR with value 87
echo '#define ENOATTR 87'
exit 1
fi
if [ -x /usr/bin/getopt ] && [ x"`/usr/bin/getopt -v`"x == x" --"x ]; then
echo fix getopt path
echo Native FreeBSD getopt is not compatible with the Linux getopt that is
echo expected with Ceph.
echo Easiest is to rename/remove /usr/bin/getopt.
echo mv /usr/bin/getopt /usr/bin/getopt.freebsd
exit 1
fi

if [ x"$CEPH_DEV"x != xx ]; then
BUILDOPTS="$BUILDOPTS V=1 VERBOSE=1"
CXX_FLAGS_DEBUG="-DCEPH_DEV"
C_FLAGS_DEBUG="-DCEPH_DEV"
fi

# To test with a new release Clang, use with cmake:
# -D CMAKE_CXX_COMPILER="/usr/local/bin/clang++-devel" \
# -D CMAKE_C_COMPILER="/usr/local/bin/clang-devel" \

rm -rf build && ./do_cmake.sh "$*" \
-D CMAKE_BUILD_TYPE=Debug \
-D CMAKE_CXX_FLAGS_DEBUG="-O0 -g" \
-D CMAKE_C_FLAGS_DEBUG="-O0 -g" \
-D CMAKE_CXX_FLAGS_DEBUG="$CXX_FLAGS_DEBUG -O0 -g" \
-D CMAKE_C_FLAGS_DEBUG="$C_FLAGS_DEBUG -O0 -g" \
-D ENABLE_GIT_VERSION=OFF \
-D WITH_BLKID=OFF \
-D WITH_LTTNG=OFF \
-D WITH_BLKID=OFF \
-D WITH_FUSE=OFF \
-D WITH_RBD=OFF \
-D WITH_XFS=OFF \
Expand All @@ -28,6 +55,6 @@ rm -rf build && ./do_cmake.sh "$*" \
2>&1 | tee cmake.log

cd build
gmake -j$NPROC V=1 VERBOSE=1
gmake -j$NPROC check CEPH_BUFFER_NO_BENCH=yes
gmake -j$NPROC $BUILDOPTS
gmake check

0 comments on commit 84cc0dd

Please sign in to comment.