2011-06-29 02:30:50 +02:00
|
|
|
#!/bin/sh
|
2012-03-21 18:28:03 +01:00
|
|
|
#
|
2012-04-17 17:36:46 +02:00
|
|
|
# Detects OS we're compiling on and outputs a file specified by the first
|
|
|
|
# argument, which in turn gets read while processing Makefile.
|
2012-03-21 18:28:03 +01:00
|
|
|
#
|
2012-04-17 17:36:46 +02:00
|
|
|
# The output will set the following variables:
|
2012-08-27 08:45:35 +02:00
|
|
|
# CC C Compiler path
|
|
|
|
# CXX C++ Compiler path
|
2012-03-21 18:28:03 +01:00
|
|
|
# PLATFORM_LDFLAGS Linker flags
|
2014-07-22 07:41:54 +02:00
|
|
|
# JAVA_LDFLAGS Linker flags for RocksDBJava
|
2015-10-09 20:41:40 +02:00
|
|
|
# JAVA_STATIC_LDFLAGS Linker flags for RocksDBJava static build
|
2012-03-30 22:15:49 +02:00
|
|
|
# PLATFORM_SHARED_EXT Extension for shared libraries
|
|
|
|
# PLATFORM_SHARED_LDFLAGS Flags for building shared library
|
|
|
|
# PLATFORM_SHARED_CFLAGS Flags for compiling objects for shared library
|
2012-03-21 18:28:03 +01:00
|
|
|
# PLATFORM_CCFLAGS C compiler flags
|
|
|
|
# PLATFORM_CXXFLAGS C++ compiler flags. Will contain:
|
2012-08-27 08:45:35 +02:00
|
|
|
# PLATFORM_SHARED_VERSIONED Set to 'true' if platform supports versioned
|
|
|
|
# shared libraries, empty otherwise.
|
|
|
|
#
|
|
|
|
# The PLATFORM_CCFLAGS and PLATFORM_CXXFLAGS might include the following:
|
|
|
|
#
|
2012-03-21 18:28:03 +01:00
|
|
|
# -DLEVELDB_PLATFORM_POSIX if cstdatomic is present
|
|
|
|
# -DLEVELDB_PLATFORM_NOATOMIC if it is not
|
2014-02-08 03:12:30 +01:00
|
|
|
# -DSNAPPY if the Snappy library is present
|
|
|
|
# -DLZ4 if the LZ4 library is present
|
2015-08-28 00:40:42 +02:00
|
|
|
# -DZSTD if the ZSTD library is present
|
2014-07-07 19:53:31 +02:00
|
|
|
# -DNUMA if the NUMA library is present
|
2012-08-27 08:45:35 +02:00
|
|
|
#
|
2013-11-17 08:44:39 +01:00
|
|
|
# Using gflags in rocksdb:
|
|
|
|
# Our project depends on gflags, which requires users to take some extra steps
|
|
|
|
# before they can compile the whole repository:
|
|
|
|
# 1. Install gflags. You may download it from here:
|
|
|
|
# https://code.google.com/p/gflags/
|
|
|
|
# 2. Once install, add the include path/lib path for gflags to CPATH and
|
|
|
|
# LIBRARY_PATH respectively. If installed with default mode, the
|
|
|
|
# lib and include path will be /usr/local/lib and /usr/local/include
|
2015-01-27 19:30:35 +01:00
|
|
|
# Mac user can do this by having brew installed and running brew install gflags
|
2012-03-21 18:28:03 +01:00
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
OUTPUT=$1
|
|
|
|
if test -z "$OUTPUT"; then
|
2012-08-27 08:45:35 +02:00
|
|
|
echo "usage: $0 <output-filename>" >&2
|
2012-04-17 17:36:46 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2011-06-29 02:30:50 +02:00
|
|
|
|
2013-11-18 20:40:16 +01:00
|
|
|
# we depend on C++11
|
2014-02-10 20:06:25 +01:00
|
|
|
PLATFORM_CXXFLAGS="-std=c++11"
|
2013-11-18 20:40:16 +01:00
|
|
|
# we currently depend on POSIX platform
|
2015-10-14 10:14:53 +02:00
|
|
|
COMMON_FLAGS="-DROCKSDB_PLATFORM_POSIX -DROCKSDB_LIB_IO_POSIX"
|
2013-11-18 20:40:16 +01:00
|
|
|
|
2013-01-14 21:39:24 +01:00
|
|
|
# Default to fbcode gcc on internal fb machines
|
2014-09-19 18:27:16 +02:00
|
|
|
if [ -z "$ROCKSDB_NO_FBCODE" -a -d /mnt/gvfs/third-party ]; then
|
2013-11-18 07:05:00 +01:00
|
|
|
FBCODE_BUILD="true"
|
2015-01-23 20:22:20 +01:00
|
|
|
# If we're compiling with TSAN we need pic build
|
|
|
|
PIC_BUILD=$COMPILE_WITH_TSAN
|
2015-01-23 23:51:27 +01:00
|
|
|
if [ -z "$ROCKSDB_FBCODE_BUILD_WITH_481" ]; then
|
|
|
|
source "$PWD/build_tools/fbcode_config.sh"
|
|
|
|
else
|
|
|
|
# we need this to build with MySQL. Don't use for other purposes.
|
|
|
|
source "$PWD/build_tools/fbcode_config4.8.1.sh"
|
|
|
|
fi
|
2013-01-14 21:39:24 +01:00
|
|
|
fi
|
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
# Delete existing output, if it exists
|
2014-05-11 06:01:25 +02:00
|
|
|
rm -f "$OUTPUT"
|
|
|
|
touch "$OUTPUT"
|
2011-06-29 02:30:50 +02:00
|
|
|
|
2012-08-27 08:45:35 +02:00
|
|
|
if test -z "$CC"; then
|
|
|
|
CC=cc
|
|
|
|
fi
|
|
|
|
|
2011-11-30 11:59:40 +01:00
|
|
|
if test -z "$CXX"; then
|
|
|
|
CXX=g++
|
|
|
|
fi
|
|
|
|
|
2011-06-29 02:30:50 +02:00
|
|
|
# Detect OS
|
2012-03-21 18:28:03 +01:00
|
|
|
if test -z "$TARGET_OS"; then
|
|
|
|
TARGET_OS=`uname -s`
|
|
|
|
fi
|
|
|
|
|
2015-02-27 00:19:17 +01:00
|
|
|
if test -z "$TARGET_ARCHITECTURE"; then
|
|
|
|
TARGET_ARCHITECTURE=`uname -m`
|
|
|
|
fi
|
|
|
|
|
2015-02-04 06:43:06 +01:00
|
|
|
if test -z "$CLANG_SCAN_BUILD"; then
|
|
|
|
CLANG_SCAN_BUILD=scan-build
|
|
|
|
fi
|
|
|
|
|
build: do not relink every single binary just for a timestamp
Summary:
Prior to this change, "make check" would always waste a lot of
time relinking 60+ binaries. With this change, it does that
only when the generated file, util/build_version.cc, changes,
and that happens only when the date changes or when the
current git SHA changes.
This change makes some other improvements: before, there was no
rule to build a deleted util/build_version.cc. If it was somehow
removed, any attempt to link a program would fail.
There is no longer any need for the separate file,
build_tools/build_detect_version. Its functionality is
now in the Makefile.
* Makefile (DEPFILES): Don't filter-out util/build_version.cc.
No need, and besides, removing that dependency was wrong.
(date, git_sha, gen_build_version): New helper variables.
(util/build_version.cc): New rule, to create this file
and update it only if it would contain new information.
* build_tools/build_detect_platform: Remove file.
* db/db_impl.cc: Now, print only date (not the time).
* util/build_version.h (rocksdb_build_compile_time): Remove
declaration. No longer used.
Test Plan:
- Run "make check" twice, and note that the second time no linking is performed.
- Remove util/build_version.cc and ensure that any "make"
command regenerates it before doing anything else.
- Run this: strings librocksdb.a|grep _build_.
That prints output including the following:
rocksdb_build_git_date:2015-02-19
rocksdb_build_git_sha:2.8.fb-1792-g3cb6cc0
Reviewers: ljin, sdong, igor
Reviewed By: igor
Subscribers: dhruba
Differential Revision: https://reviews.facebook.net/D33591
2015-02-19 22:11:10 +01:00
|
|
|
if test -z "$CLANG_ANALYZER"; then
|
2015-02-27 18:31:29 +01:00
|
|
|
CLANG_ANALYZER=$(which clang++ 2> /dev/null)
|
2015-02-04 06:43:06 +01:00
|
|
|
fi
|
|
|
|
|
fPIC in x64 environment
Summary:
Check https://github.com/facebook/rocksdb/pull/15 for context.
Apparently [1], we need -fPIC in x64 environments (this is added only in non-fbcode).
In fbcode, I removed -fPIC per @dhruba's suggestion, since it introduces perf regression. I'm not sure what would are the implications of doing that, but looks like it works, and when releasing to the third-party, we're disabling -fPIC either way [2].
Would love a suggestion from someone who knows more about this
[1] http://eli.thegreenplace.net/2011/11/11/position-independent-code-pic-in-shared-libraries-on-x64/
[2] https://our.intern.facebook.com/intern/wiki/index.php/Database/RocksDB/Third_Party
Test Plan: make check works
Reviewers: dhruba, emayanke, kailiu
Reviewed By: dhruba
CC: leveldb, dhruba, reconnect.grayhat
Differential Revision: https://reviews.facebook.net/D14337
2013-11-26 06:21:01 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS ${CFLAGS}"
|
2012-08-27 08:45:35 +02:00
|
|
|
CROSS_COMPILE=
|
2012-03-21 18:28:03 +01:00
|
|
|
PLATFORM_CCFLAGS=
|
2013-01-15 03:37:01 +01:00
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS"
|
2012-03-30 22:15:49 +02:00
|
|
|
PLATFORM_SHARED_EXT="so"
|
2015-06-24 01:32:59 +02:00
|
|
|
PLATFORM_SHARED_LDFLAGS="-Wl,--no-as-needed -shared -Wl,-soname -Wl,"
|
2012-03-30 22:15:49 +02:00
|
|
|
PLATFORM_SHARED_CFLAGS="-fPIC"
|
2015-04-07 22:22:22 +02:00
|
|
|
PLATFORM_SHARED_VERSIONED=true
|
2012-03-21 18:28:03 +01:00
|
|
|
|
2013-04-11 19:54:35 +02:00
|
|
|
# generic port files (working on all platform by #ifdef) go directly in /port
|
2014-05-11 06:01:25 +02:00
|
|
|
GENERIC_PORT_FILES=`cd "$ROCKSDB_ROOT"; find port -name '*.cc' | tr "\n" " "`
|
2013-04-11 19:54:35 +02:00
|
|
|
|
2012-03-21 18:28:03 +01:00
|
|
|
# On GCC, we pick libc's memcmp over GCC's memcmp via -fno-builtin-memcmp
|
|
|
|
case "$TARGET_OS" in
|
2011-06-29 02:30:50 +02:00
|
|
|
Darwin)
|
|
|
|
PLATFORM=OS_MACOSX
|
2013-11-13 05:05:28 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DOS_MACOSX"
|
2012-03-30 22:15:49 +02:00
|
|
|
PLATFORM_SHARED_EXT=dylib
|
|
|
|
PLATFORM_SHARED_LDFLAGS="-dynamiclib -install_name "
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/darwin/darwin_specific.cc
|
2011-06-29 02:30:50 +02:00
|
|
|
;;
|
2014-04-04 22:11:44 +02:00
|
|
|
IOS)
|
|
|
|
PLATFORM=IOS
|
2014-04-15 22:39:26 +02:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DOS_MACOSX -DIOS_CROSS_COMPILE -DROCKSDB_LITE"
|
2014-04-04 22:11:44 +02:00
|
|
|
PLATFORM_SHARED_EXT=dylib
|
|
|
|
PLATFORM_SHARED_LDFLAGS="-dynamiclib -install_name "
|
|
|
|
CROSS_COMPILE=true
|
2015-04-07 22:22:22 +02:00
|
|
|
PLATFORM_SHARED_VERSIONED=
|
2014-04-04 22:11:44 +02:00
|
|
|
;;
|
2011-06-29 02:30:50 +02:00
|
|
|
Linux)
|
|
|
|
PLATFORM=OS_LINUX
|
2013-08-16 05:53:21 +02:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DOS_LINUX"
|
2013-01-15 03:37:01 +01:00
|
|
|
if [ -z "$USE_CLANG" ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp"
|
|
|
|
fi
|
[RocksDB] Added nano second stopwatch and new perf counters to track block read cost
Summary: The pupose of this diff is to expose per user-call level precise timing of block read, so that we can answer questions like: a Get() costs me 100ms, is that somehow related to loading blocks from file system, or sth else? We will answer that with EXACTLY how many blocks have been read, how much time was spent on transfering the bytes from os, how much time was spent on checksum verification and how much time was spent on block decompression, just for that one Get. A nano second stopwatch was introduced to track time with higher precision. The cost/precision of the stopwatch is also measured in unit-test. On my dev box, retrieving one time instance costs about 30ns, on average. The deviation of timing results is good enough to track 100ns-1us level events. And the overhead could be safely ignored for 100us level events (10000 instances/s), for example, a viewstate thrift call.
Test Plan: perf_context_test, also testing with viewstate shadow traffic.
Reviewers: dhruba
Reviewed By: dhruba
CC: leveldb, xjin
Differential Revision: https://reviews.facebook.net/D12351
2013-06-04 08:09:15 +02:00
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread -lrt"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/linux/linux_specific.cc
|
2011-06-29 02:30:50 +02:00
|
|
|
;;
|
|
|
|
SunOS)
|
|
|
|
PLATFORM=OS_SOLARIS
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_SOLARIS"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread -lrt"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/sunos/sunos_specific.cc
|
2011-06-29 02:30:50 +02:00
|
|
|
;;
|
2011-07-27 03:46:25 +02:00
|
|
|
FreeBSD)
|
|
|
|
PLATFORM=OS_FREEBSD
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_FREEBSD"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/freebsd/freebsd_specific.cc
|
2011-07-27 03:46:25 +02:00
|
|
|
;;
|
2012-03-05 19:35:46 +01:00
|
|
|
NetBSD)
|
|
|
|
PLATFORM=OS_NETBSD
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_NETBSD"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread -lgcc_s"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/netbsd/netbsd_specific.cc
|
2012-03-05 19:35:46 +01:00
|
|
|
;;
|
|
|
|
OpenBSD)
|
|
|
|
PLATFORM=OS_OPENBSD
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_OPENBSD"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -pthread"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/openbsd/openbsd_specific.cc
|
2012-03-05 19:35:46 +01:00
|
|
|
;;
|
|
|
|
DragonFly)
|
|
|
|
PLATFORM=OS_DRAGONFLYBSD
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_DRAGONFLYBSD"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread"
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/dragonfly/dragonfly_specific.cc
|
2012-03-21 18:28:03 +01:00
|
|
|
;;
|
2015-04-24 04:17:57 +02:00
|
|
|
Cygwin)
|
|
|
|
PLATFORM=CYGWIN
|
2015-06-12 22:54:29 +02:00
|
|
|
PLATFORM_SHARED_CFLAGS=""
|
2015-04-24 04:17:57 +02:00
|
|
|
PLATFORM_CXXFLAGS="-std=gnu++11"
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DCYGWIN"
|
|
|
|
if [ -z "$USE_CLANG" ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp"
|
|
|
|
fi
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lpthread -lrt"
|
|
|
|
# PORT_FILES=port/linux/linux_specific.cc
|
|
|
|
;;
|
2012-03-21 18:28:03 +01:00
|
|
|
OS_ANDROID_CROSSCOMPILE)
|
2012-08-27 08:45:35 +02:00
|
|
|
PLATFORM=OS_ANDROID
|
2013-01-14 21:39:24 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -fno-builtin-memcmp -D_REENTRANT -DOS_ANDROID -DLEVELDB_PLATFORM_POSIX"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS " # All pthread features are in the Android C library
|
2013-04-11 19:54:35 +02:00
|
|
|
# PORT_FILES=port/android/android.cc
|
2012-08-27 08:45:35 +02:00
|
|
|
CROSS_COMPILE=true
|
2012-03-05 19:35:46 +01:00
|
|
|
;;
|
2011-06-29 02:30:50 +02:00
|
|
|
*)
|
2012-08-27 08:45:35 +02:00
|
|
|
echo "Unknown platform!" >&2
|
2011-06-29 02:30:50 +02:00
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
2015-04-24 04:17:57 +02:00
|
|
|
PLATFORM_CXXFLAGS="$PLATFORM_CXXFLAGS ${CXXFLAGS}"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$PLATFORM_LDFLAGS"
|
2015-10-09 20:41:40 +02:00
|
|
|
JAVA_STATIC_LDFLAGS="$PLATFORM_LDFLAGS"
|
2014-07-22 07:41:54 +02:00
|
|
|
|
2013-11-18 07:05:00 +01:00
|
|
|
if [ "$CROSS_COMPILE" = "true" -o "$FBCODE_BUILD" = "true" ]; then
|
2012-03-21 18:28:03 +01:00
|
|
|
# Cross-compiling; do not try any compilation tests.
|
2013-11-18 07:05:00 +01:00
|
|
|
# Also don't need any compilation tests if compiling on fbcode
|
2014-01-06 20:53:19 +01:00
|
|
|
true
|
2011-06-29 02:30:50 +02:00
|
|
|
else
|
2013-12-11 07:34:19 +01:00
|
|
|
# Test whether fallocate is available
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <fcntl.h>
|
2015-04-14 02:56:12 +02:00
|
|
|
#include <linux/falloc.h>
|
2013-12-11 07:34:19 +01:00
|
|
|
int main() {
|
|
|
|
int fd = open("/dev/null", 0);
|
2015-01-15 23:15:43 +01:00
|
|
|
fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE, 0, 1024);
|
2013-12-11 07:34:19 +01:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
2013-12-30 14:33:52 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DROCKSDB_FALLOCATE_PRESENT"
|
2013-12-11 07:34:19 +01:00
|
|
|
fi
|
|
|
|
|
2012-03-21 18:28:03 +01:00
|
|
|
# Test whether Snappy library is installed
|
|
|
|
# http://code.google.com/p/snappy/
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <snappy.h>
|
|
|
|
int main() {}
|
2011-06-29 02:30:50 +02:00
|
|
|
EOF
|
2012-03-21 18:28:03 +01:00
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DSNAPPY"
|
2013-11-18 07:05:00 +01:00
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lsnappy"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -lsnappy"
|
2012-03-21 18:28:03 +01:00
|
|
|
fi
|
|
|
|
|
2013-10-24 16:43:14 +02:00
|
|
|
# Test whether gflags library is installed
|
2015-09-14 23:30:17 +02:00
|
|
|
# http://gflags.github.io/gflags/
|
2014-05-09 02:25:13 +02:00
|
|
|
# check if the namespace is gflags
|
2015-04-22 21:47:50 +02:00
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null << EOF
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
using namespace gflags;
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
2014-05-09 02:25:13 +02:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DGFLAGS=gflags"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lgflags"
|
2015-04-20 19:55:17 +02:00
|
|
|
else
|
2015-04-22 21:47:50 +02:00
|
|
|
# check if namespace is google
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null << EOF
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
using namespace google;
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
2015-04-20 19:55:17 +02:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DGFLAGS=google"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lgflags"
|
|
|
|
fi
|
2013-10-24 16:43:14 +02:00
|
|
|
fi
|
|
|
|
|
2012-06-28 08:41:33 +02:00
|
|
|
# Test whether zlib library is installed
|
|
|
|
$CXX $CFLAGS $COMMON_FLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <zlib.h>
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DZLIB"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lz"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -lz"
|
2012-06-28 08:41:33 +02:00
|
|
|
fi
|
|
|
|
|
2012-06-29 04:26:43 +02:00
|
|
|
# Test whether bzip library is installed
|
|
|
|
$CXX $CFLAGS $COMMON_FLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <bzlib.h>
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DBZIP2"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lbz2"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -lbz2"
|
2012-06-29 04:26:43 +02:00
|
|
|
fi
|
|
|
|
|
2014-02-08 03:12:30 +01:00
|
|
|
# Test whether lz4 library is installed
|
|
|
|
$CXX $CFLAGS $COMMON_FLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <lz4.h>
|
|
|
|
#include <lz4hc.h>
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DLZ4"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -llz4"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -llz4"
|
2014-02-08 03:12:30 +01:00
|
|
|
fi
|
|
|
|
|
2015-08-28 00:40:42 +02:00
|
|
|
# Test whether zstd library is installed
|
|
|
|
$CXX $CFLAGS $COMMON_FLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <zstd.h>
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DZSTD"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lzstd"
|
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -lzstd"
|
|
|
|
fi
|
|
|
|
|
2014-07-07 19:53:31 +02:00
|
|
|
# Test whether numa is available
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null -lnuma 2>/dev/null <<EOF
|
|
|
|
#include <numa.h>
|
|
|
|
#inlcude <numaif.h>
|
|
|
|
int main() {}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DNUMA"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -lnuma"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -lnuma"
|
2014-07-07 19:53:31 +02:00
|
|
|
fi
|
|
|
|
|
2015-04-24 02:48:18 +02:00
|
|
|
# Test whether jemalloc is available
|
|
|
|
if echo 'int main() {}' | $CXX $CFLAGS -x c++ - -o /dev/null -ljemalloc \
|
|
|
|
2>/dev/null; then
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -ljemalloc"
|
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -ljemalloc"
|
|
|
|
else
|
|
|
|
# jemalloc is not available. Let's try tcmalloc
|
|
|
|
if echo 'int main() {}' | $CXX $CFLAGS -x c++ - -o /dev/null \
|
|
|
|
-ltcmalloc 2>/dev/null; then
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS -ltcmalloc"
|
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS -ltcmalloc"
|
|
|
|
fi
|
2012-03-21 18:28:03 +01:00
|
|
|
fi
|
Use malloc_usable_size() for accounting block cache size
Summary:
Currently, when we insert something into block cache, we say that the block cache capacity decreased by the size of the block. However, size of the block might be less than the actual memory used by this object. For example, 4.5KB block will actually use 8KB of memory. So even if we configure block cache to 10GB, our actually memory usage of block cache will be 20GB!
This problem showed up a lot in testing and just recently also showed up in MongoRocks production where we were using 30GB more memory than expected.
This diff will fix the problem. Instead of counting the block size, we will count memory used by the block. That way, a block cache configured to be 10GB will actually use only 10GB of memory.
I'm using non-portable function and I couldn't find info on portability on Google. However, it seems to work on Linux, which will cover majority of our use-cases.
Test Plan:
1. fill up mongo instance with 80GB of data
2. restart mongo with block cache size configured to 10GB
3. do a table scan in mongo
4. memory usage before the diff: 12GB. memory usage after the diff: 10.5GB
Reviewers: sdong, MarkCallaghan, rven, yhchiang
Reviewed By: yhchiang
Subscribers: dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D40635
2015-06-26 20:48:09 +02:00
|
|
|
|
|
|
|
# Test whether malloc_usable_size is available
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF
|
|
|
|
#include <malloc.h>
|
|
|
|
int main() {
|
|
|
|
size_t res = malloc_usable_size(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
if [ "$?" = 0 ]; then
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -DROCKSDB_MALLOC_USABLE_SIZE"
|
|
|
|
fi
|
2011-06-29 02:30:50 +02:00
|
|
|
fi
|
|
|
|
|
2015-02-27 00:19:17 +01:00
|
|
|
# TODO(tec): Fix -Wshorten-64-to-32 errors on FreeBSD and enable the warning.
|
|
|
|
# -Wshorten-64-to-32 breaks compilation on FreeBSD i386
|
|
|
|
if ! [ "$TARGET_OS" = FreeBSD -a "$TARGET_ARCHITECTURE" = i386 ]; then
|
|
|
|
# Test whether -Wshorten-64-to-32 is available
|
|
|
|
$CXX $CFLAGS -x c++ - -o /dev/null -Wshorten-64-to-32 2>/dev/null <<EOF
|
|
|
|
int main() {}
|
2014-11-11 22:47:22 +01:00
|
|
|
EOF
|
2015-02-27 00:19:17 +01:00
|
|
|
if [ "$?" = 0 ]; then
|
2014-11-11 22:47:22 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -Wshorten-64-to-32"
|
2015-02-27 00:19:17 +01:00
|
|
|
fi
|
2014-11-11 22:47:22 +01:00
|
|
|
fi
|
|
|
|
|
2012-06-08 10:11:14 +02:00
|
|
|
# shall we use HDFS?
|
|
|
|
|
|
|
|
if test "$USE_HDFS"; then
|
|
|
|
if test -z "$JAVA_HOME"; then
|
|
|
|
echo "JAVA_HOME has to be set for HDFS usage."
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-10-26 21:52:46 +02:00
|
|
|
HDFS_CCFLAGS="$HDFS_CCFLAGS -I$JAVA_HOME/include -I$JAVA_HOME/include/linux -DUSE_HDFS"
|
2015-04-10 00:10:53 +02:00
|
|
|
HDFS_LDFLAGS="$HDFS_LDFLAGS -lhdfs -L$JAVA_HOME/jre/lib/amd64"
|
2012-10-26 21:52:46 +02:00
|
|
|
HDFS_LDFLAGS="$HDFS_LDFLAGS -L$JAVA_HOME/jre/lib/amd64/server -L$GLIBC_RUNTIME_PATH/lib"
|
|
|
|
HDFS_LDFLAGS="$HDFS_LDFLAGS -ldl -lverify -ljava -ljvm"
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS $HDFS_CCFLAGS"
|
|
|
|
PLATFORM_LDFLAGS="$PLATFORM_LDFLAGS $HDFS_LDFLAGS"
|
2014-07-22 07:41:54 +02:00
|
|
|
JAVA_LDFLAGS="$JAVA_LDFLAGS $HDFS_LDFLAGS"
|
2012-06-08 10:11:14 +02:00
|
|
|
fi
|
|
|
|
|
2015-02-27 00:19:17 +01:00
|
|
|
if [ "$TARGET_OS" = FreeBSD -a "$TARGET_ARCHITECTURE" = i386 ]; then
|
|
|
|
# Intel SSE instructions breaks compilation on FreeBSD i386
|
|
|
|
unset USE_SSE
|
|
|
|
fi
|
|
|
|
|
2014-12-15 11:29:41 +01:00
|
|
|
if test "$USE_SSE"; then
|
|
|
|
# if Intel SSE instruction set is supported, set USE_SSE=1
|
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -msse -msse4.2 "
|
|
|
|
elif test -z "$PORTABLE"; then
|
2014-12-19 18:06:45 +01:00
|
|
|
COMMON_FLAGS="$COMMON_FLAGS -march=native "
|
2014-12-15 11:29:41 +01:00
|
|
|
fi
|
2012-10-17 20:59:44 +02:00
|
|
|
|
2012-03-21 18:28:03 +01:00
|
|
|
PLATFORM_CCFLAGS="$PLATFORM_CCFLAGS $COMMON_FLAGS"
|
|
|
|
PLATFORM_CXXFLAGS="$PLATFORM_CXXFLAGS $COMMON_FLAGS"
|
|
|
|
|
2013-03-07 20:11:30 +01:00
|
|
|
VALGRIND_VER="$VALGRIND_VER"
|
|
|
|
|
2014-10-02 20:59:22 +02:00
|
|
|
ROCKSDB_MAJOR=`build_tools/version.sh major`
|
|
|
|
ROCKSDB_MINOR=`build_tools/version.sh minor`
|
|
|
|
ROCKSDB_PATCH=`build_tools/version.sh patch`
|
|
|
|
|
2014-05-11 06:01:25 +02:00
|
|
|
echo "CC=$CC" >> "$OUTPUT"
|
|
|
|
echo "CXX=$CXX" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM=$PLATFORM" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_LDFLAGS=$PLATFORM_LDFLAGS" >> "$OUTPUT"
|
2014-07-22 07:41:54 +02:00
|
|
|
echo "JAVA_LDFLAGS=$JAVA_LDFLAGS" >> "$OUTPUT"
|
2015-10-09 20:41:40 +02:00
|
|
|
echo "JAVA_STATIC_LDFLAGS=$JAVA_STATIC_LDFLAGS" >> "$OUTPUT"
|
2014-05-11 06:01:25 +02:00
|
|
|
echo "VALGRIND_VER=$VALGRIND_VER" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_CCFLAGS=$PLATFORM_CCFLAGS" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_CXXFLAGS=$PLATFORM_CXXFLAGS" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_SHARED_CFLAGS=$PLATFORM_SHARED_CFLAGS" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_SHARED_EXT=$PLATFORM_SHARED_EXT" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_SHARED_LDFLAGS=$PLATFORM_SHARED_LDFLAGS" >> "$OUTPUT"
|
|
|
|
echo "PLATFORM_SHARED_VERSIONED=$PLATFORM_SHARED_VERSIONED" >> "$OUTPUT"
|
|
|
|
echo "EXEC_LDFLAGS=$EXEC_LDFLAGS" >> "$OUTPUT"
|
|
|
|
echo "JEMALLOC_INCLUDE=$JEMALLOC_INCLUDE" >> "$OUTPUT"
|
|
|
|
echo "JEMALLOC_LIB=$JEMALLOC_LIB" >> "$OUTPUT"
|
2014-10-02 20:59:22 +02:00
|
|
|
echo "ROCKSDB_MAJOR=$ROCKSDB_MAJOR" >> "$OUTPUT"
|
|
|
|
echo "ROCKSDB_MINOR=$ROCKSDB_MINOR" >> "$OUTPUT"
|
|
|
|
echo "ROCKSDB_PATCH=$ROCKSDB_PATCH" >> "$OUTPUT"
|
2015-02-04 06:43:06 +01:00
|
|
|
echo "CLANG_SCAN_BUILD=$CLANG_SCAN_BUILD" >> "$OUTPUT"
|
|
|
|
echo "CLANG_ANALYZER=$CLANG_ANALYZER" >> "$OUTPUT"
|