diff options
author | Willem Jan Withagen <wjw@digiware.nl> | 2016-10-12 11:06:00 +0200 |
---|---|---|
committer | Willem Jan Withagen <wjw@digiware.nl> | 2016-10-12 11:06:00 +0200 |
commit | ea708e749bfe151f9e28b80b80ae3be1fdb0f55d (patch) | |
tree | a5dcd255b58508bd3f57765422c9e62931a543a1 /do_freebsd.sh | |
parent | Merge pull request #11427 from ifed01/wip-bluestore-fix-test (diff) | |
download | ceph-ea708e749bfe151f9e28b80b80ae3be1fdb0f55d.tar.xz ceph-ea708e749bfe151f9e28b80b80ae3be1fdb0f55d.zip |
do_freebsd.sh: Set options for debug building.
And that requires that the options need to be passed on completely
to the cmake program as well. Thus adding """'s around the option
argument with do_cmake.sh as well
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
Diffstat (limited to 'do_freebsd.sh')
-rwxr-xr-x | do_freebsd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/do_freebsd.sh b/do_freebsd.sh index 56c1dc2b114..f9e3029cd15 100755 --- a/do_freebsd.sh +++ b/do_freebsd.sh @@ -13,6 +13,7 @@ fi 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 ENABLE_GIT_VERSION=OFF \ -D WITH_BLKID=OFF \ -D WITH_FUSE=OFF \ |