Enhance db_bench

Summary:
Add --benchmarks=updaterandom for read-modify-write workloads. This is different
from --benchmarks=readrandomwriterandom in a few ways. First, an "operation" is the
combined time to do the read & write rather than treating them as two ops. Second,
the same key is used for the read & write.

Change RandomGenerator to support rows larger than 1M. That was using "assert"
to fail and assert is compiled-away when -DNDEBUG is used.

Add more options to db_bench
--duration - sets the number of seconds for tests to run. When not set the
operation count continues to be the limit. This is used by random operation
tests.

--use_snapshot - when set GetSnapshot() is called prior to each random read.
This is to measure the overhead from using snapshots.

--get_approx - when set GetApproximateSizes() is called prior to each random
read. This is to measure the overhead for a query optimizer.

Task ID: #

Blame Rev:

Test Plan:
run db_bench

Revert Plan:

Database Impact:

Memcache Impact:

Other Notes:

EImportant:

- begin *PUBLIC* platform impact section -
Bugzilla: #
- end platform impact -

Reviewers: dhruba

Reviewed By: dhruba

Differential Revision: https://reviews.facebook.net/D9267
main
Mark Callaghan 12 years ago
parent e93dc3c0b8
commit 5a8c8845a9
  1. 1852
      db/.nfs00000000066c9ebb00000002
  2. 171
      db/db_bench.cc
  3. 2
      e
  4. 128
      o

File diff suppressed because it is too large Load Diff

@ -58,6 +58,7 @@ static const char* FLAGS_benchmarks =
"readseq,"
"readreverse,"
"readrandomwriterandom," // mix reads and writes based on FLAGS_readwritepercent
"updaterandom," // read-modify-write for random keys
"randomwithverify," // random reads and writes with some verification
"fill100K,"
"crc32c,"
@ -87,6 +88,10 @@ static long FLAGS_seed = 0;
// Number of concurrent threads to run.
static int FLAGS_threads = 1;
// Time in seconds for the random-ops tests to run. When 0 then
// FLAGS_num & FLAGS_reads determine the test duration
static int FLAGS_duration = 0;
// Size of each value
static int FLAGS_value_size = 100;
@ -165,6 +170,13 @@ static bool FLAGS_use_fsync = false;
// If true, do not write WAL for write.
static bool FLAGS_disable_wal = false;
// If true, create a snapshot per query when randomread benchmark is used
static bool FLAGS_use_snapshot = false;
// If true, call GetApproximateSizes per query when FLAGS_read_range is > 1
// and randomread benchmark is used
static bool FLAGS_get_approx = false;
// The total number of levels
static unsigned int FLAGS_num_levels = 7;
@ -272,7 +284,7 @@ class RandomGenerator {
// large enough to serve all typical value sizes we want to write.
Random rnd(301);
std::string piece;
while (data_.size() < 1048576) {
while (data_.size() < std::max(1048576, FLAGS_value_size)) {
// Add a short fragment that is as compressible as specified
// by FLAGS_compression_ratio.
test::CompressibleString(&rnd, FLAGS_compression_ratio, 100, &piece);
@ -485,6 +497,37 @@ struct ThreadState {
}
};
class Duration {
public:
Duration(int max_seconds, long max_ops) {
max_seconds_ = max_seconds;
max_ops_= max_ops;
ops_ = 0;
start_at_ = FLAGS_env->NowMicros();
}
bool Done(int increment) {
ops_ += increment;
if (max_seconds_) {
if (!(ops_ % 1000)) {
double now = FLAGS_env->NowMicros();
return ((now - start_at_) / 1000000.0) >= max_seconds_;
} else {
return false;
}
} else {
return ops_ > max_ops_;
}
}
private:
int max_seconds_;
long max_ops_;
long ops_;
double start_at_;
};
class Benchmark {
private:
shared_ptr<Cache> cache_;
@ -781,6 +824,8 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
method = &Benchmark::ReadWhileWriting;
} else if (name == Slice("readrandomwriterandom")) {
method = &Benchmark::ReadRandomWriteRandom;
} else if (name == Slice("updaterandom")) {
method = &Benchmark::UpdateRandom;
} else if (name == Slice("randomwithverify")) {
method = &Benchmark::RandomWithVerify;
} else if (name == Slice("compact")) {
@ -1062,6 +1107,8 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
void DoWrite(ThreadState* thread, bool seq) {
Duration duration(seq ? 0 : FLAGS_duration, writes_);
if (num_ != FLAGS_num) {
char msg[100];
snprintf(msg, sizeof(msg), "(%ld ops)", num_);
@ -1072,7 +1119,8 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
WriteBatch batch;
Status s;
int64_t bytes = 0;
for (int i = 0; i < writes_; i += entries_per_batch_) {
int i = 0;
while (!duration.Done(entries_per_batch_)) {
batch.Clear();
for (int j = 0; j < entries_per_batch_; j++) {
const int k = seq ? i+j : (thread->rand.Next() % FLAGS_num);
@ -1086,6 +1134,7 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
fprintf(stderr, "put error: %s\n", s.ToString().c_str());
exit(1);
}
i += entries_per_batch_;
}
thread->stats.AddBytes(bytes);
}
@ -1119,12 +1168,18 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
void ReadRandom(ThreadState* thread) {
ReadOptions options(FLAGS_verify_checksum, true);
Iterator* iter = db_->NewIterator(options);
Duration duration(FLAGS_duration, reads_);
std::string value;
long found = 0;
for (long i = 0; i < reads_; i++) {
while (!duration.Done(1)) {
const int k = thread->rand.Next() % FLAGS_num;
unique_ptr<char []> key = GenerateKeyFromInt(k);
if (FLAGS_use_snapshot) {
options.snapshot = db_->GetSnapshot();
}
if (FLAGS_read_range < 2) {
if (db_->Get(options, key.get(), &value).ok()) {
found++;
@ -1132,6 +1187,16 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
} else {
Slice skey(key.get());
int count = 1;
if (FLAGS_get_approx) {
unique_ptr<char []> key2 =
GenerateKeyFromInt(k + (int) FLAGS_read_range);
Slice skey2(key2.get());
Range range(skey, skey2);
uint64_t sizes;
db_->GetApproximateSizes(&range, 1, &sizes);
}
for (iter->Seek(skey);
iter->Valid() && count <= FLAGS_read_range;
++count, iter->Next()) {
@ -1139,6 +1204,11 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
}
if (FLAGS_use_snapshot) {
db_->ReleaseSnapshot(options.snapshot);
options.snapshot = nullptr;
}
thread->stats.FinishedSingleOp(db_);
}
delete iter;
@ -1148,9 +1218,10 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
void ReadMissing(ThreadState* thread) {
Duration duration(FLAGS_duration, reads_);
ReadOptions options(FLAGS_verify_checksum, true);
std::string value;
for (long i = 0; i < reads_; i++) {
while (!duration.Done(1)) {
const int k = thread->rand.Next() % FLAGS_num;
unique_ptr<char []> key = GenerateKeyFromInt(k);
db_->Get(options, key.get(), &value);
@ -1159,10 +1230,11 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
void ReadHot(ThreadState* thread) {
Duration duration(FLAGS_duration, reads_);
ReadOptions options(FLAGS_verify_checksum, true);
std::string value;
const long range = (FLAGS_num + 99) / 100;
for (long i = 0; i < reads_; i++) {
while (!duration.Done(1)) {
const int k = thread->rand.Next() % range;
unique_ptr<char []> key = GenerateKeyFromInt(k);
db_->Get(options, key.get(), &value);
@ -1171,10 +1243,11 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
void SeekRandom(ThreadState* thread) {
Duration duration(FLAGS_duration, reads_);
ReadOptions options(FLAGS_verify_checksum, true);
std::string value;
long found = 0;
for (long i = 0; i < reads_; i++) {
while (!duration.Done(1)) {
Iterator* iter = db_->NewIterator(options);
const int k = thread->rand.Next() % FLAGS_num;
unique_ptr<char []> key = GenerateKeyFromInt(k);
@ -1192,7 +1265,9 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
RandomGenerator gen;
WriteBatch batch;
Status s;
for (int i = 0; i < num_; i += entries_per_batch_) {
Duration duration(seq ? 0 : FLAGS_duration, num_);
long i = 0;
while (!duration.Done(entries_per_batch_)) {
batch.Clear();
for (int j = 0; j < entries_per_batch_; j++) {
const int k = seq ? i+j : (thread->rand.Next() % FLAGS_num);
@ -1205,6 +1280,7 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
fprintf(stderr, "del error: %s\n", s.ToString().c_str());
exit(1);
}
++i;
}
}
@ -1402,8 +1478,10 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
int put_weight = 0;
long reads_done = 0;
long writes_done = 0;
Duration duration(FLAGS_duration, readwrites_);
// the number of iterations is the larger of read_ or write_
for (long i = 0; i < readwrites_; i++) {
while (!duration.Done(1)) {
const int k = thread->rand.Next() % FLAGS_num;
unique_ptr<char []> key = GenerateKeyFromInt(k);
if (get_weight == 0 && put_weight == 0) {
@ -1412,6 +1490,21 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
put_weight = 100 - get_weight;
}
if (get_weight > 0) {
if (FLAGS_use_snapshot) {
options.snapshot = db_->GetSnapshot();
}
if (FLAGS_get_approx) {
char key2[100];
snprintf(key2, sizeof(key2), "%016d", k + 1);
Slice skey2(key2);
Slice skey(key2);
Range range(skey, skey2);
uint64_t sizes;
db_->GetApproximateSizes(&range, 1, &sizes);
}
// do all the gets first
Status s = db_->Get(options, key.get(), &value);
if (!s.ok() && !s.IsNotFound()) {
@ -1427,6 +1520,11 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
}
get_weight--;
reads_done++;
if (FLAGS_use_snapshot) {
db_->ReleaseSnapshot(options.snapshot);
}
} else if (put_weight > 0) {
// then do all the corresponding number of puts
// for all the gets we have done earlier
@ -1446,6 +1544,55 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
thread->stats.AddMessage(msg);
}
//
// Read-modify-write for random keys
//
void UpdateRandom(ThreadState* thread) {
ReadOptions options(FLAGS_verify_checksum, true);
RandomGenerator gen;
std::string value;
long found = 0;
Duration duration(FLAGS_duration, readwrites_);
// the number of iterations is the larger of read_ or write_
while (!duration.Done(1)) {
const int k = thread->rand.Next() % FLAGS_num;
unique_ptr<char []> key = GenerateKeyFromInt(k);
if (FLAGS_use_snapshot) {
options.snapshot = db_->GetSnapshot();
}
if (FLAGS_get_approx) {
char key2[100];
snprintf(key2, sizeof(key2), "%016d", k + 1);
Slice skey2(key2);
Slice skey(key2);
Range range(skey, skey2);
uint64_t sizes;
db_->GetApproximateSizes(&range, 1, &sizes);
}
if (db_->Get(options, key.get(), &value).ok()) {
found++;
}
if (FLAGS_use_snapshot) {
db_->ReleaseSnapshot(options.snapshot);
}
Status s = db_->Put(write_options_, key.get(), gen.Generate(value_size_));
if (!s.ok()) {
fprintf(stderr, "put error: %s\n", s.ToString().c_str());
exit(1);
}
thread->stats.FinishedSingleOp(db_);
}
char msg[100];
snprintf(msg, sizeof(msg), "( updates:%ld found:%ld)", readwrites_, found);
thread->stats.AddMessage(msg);
}
void Compact(ThreadState* thread) {
db_->CompactRange(nullptr, nullptr);
}
@ -1515,6 +1662,8 @@ int main(int argc, char** argv) {
FLAGS_reads = n;
} else if (sscanf(argv[i], "--read_range=%d%c", &n, &junk) == 1) {
FLAGS_read_range = n;
} else if (sscanf(argv[i], "--duration=%d%c", &n, &junk) == 1) {
FLAGS_duration = n;
} else if (sscanf(argv[i], "--seed=%ld%c", &l, &junk) == 1) {
FLAGS_seed = l;
} else if (sscanf(argv[i], "--threads=%d%c", &n, &junk) == 1) {
@ -1599,6 +1748,12 @@ int main(int argc, char** argv) {
} else if (sscanf(argv[i], "--disable_wal=%d%c", &n, &junk) == 1 &&
(n == 0 || n == 1)) {
FLAGS_disable_wal = n;
} else if (sscanf(argv[i], "--use_snapshot=%d%c", &n, &junk) == 1 &&
(n == 0 || n == 1)) {
FLAGS_use_snapshot = n;
} else if (sscanf(argv[i], "--get_approx=%d%c", &n, &junk) == 1 &&
(n == 0 || n == 1)) {
FLAGS_get_approx = n;
} else if (sscanf(argv[i], "--hdfs=%s", hdfsname) == 1) {
FLAGS_env = new leveldb::HdfsEnv(hdfsname);
} else if (sscanf(argv[i], "--num_levels=%d%c",

2
e

@ -0,0 +1,2 @@
ar: creating libmemenv.a
ar: creating libleveldb.a

128
o

@ -0,0 +1,128 @@
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -MM db/version_set.cc -o db/version_set.d
make clean
make[1]: Entering directory `/home/mcallaghan/rocksdb'
rm -f db_bench arena_test bloom_test c_test cache_test coding_test histogram_test corruption_test crc32c_test db_test dbformat_test env_test filename_test filter_block_test log_test memenv_test skiplist_test table_test block_test version_edit_test version_set_test reduce_levels_test write_batch_test auto_roll_logger_test filelock_test manifest_dump sst_dump db_stress ldb db_repl_stress db_bench_sqlite3 db_bench_tree_db libleveldb.a libleveldb.so libleveldb.so.1 libleveldb.so.1.5 libmemenv.a */*.o */*/*.o ios-x86/*/*.o ios-arm/*/*.o build_config.mk
rm -rf ios-x86/* ios-arm/*
make[1]: Leaving directory `/home/mcallaghan/rocksdb'
OPT=-DNDEBUG make -j32
make[1]: Entering directory `/home/mcallaghan/rocksdb'
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -shared -Wl,-soname -Wl,libleveldb.so.1 -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC db/builder.cc db/c.cc db/db_filesnapshot.cc db/dbformat.cc db/db_impl.cc db/db_impl_readonly.cc db/db_iter.cc db/db_stats_logger.cc db/filename.cc db/log_reader.cc db/log_writer.cc db/memtable.cc db/memtablelist.cc db/repair.cc db/table_cache.cc db/transaction_log_iterator_impl.cc db/version_edit.cc db/version_set.cc db/version_set_reduce_num_levels.cc db/write_batch.cc table/block_builder.cc table/block.cc table/filter_block.cc table/format.cc table/iterator.cc table/merger.cc table/table_builder.cc table/table.cc table/two_level_iterator.cc util/arena.cc util/auto_roll_logger.cc util/bloom.cc util/build_version.cc util/cache.cc util/coding.cc util/comparator.cc util/crc32c.cc util/env.cc util/env_hdfs.cc util/env_posix.cc util/filter_policy.cc util/hash.cc util/histogram.cc util/ldb_cmd.cc util/logging.cc util/murmurhash.cc util/options.cc util/status.cc port/port_posix.cc -o libleveldb.so.1.5
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/builder.cc -o db/builder.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/c.cc -o db/c.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_filesnapshot.cc -o db/db_filesnapshot.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/dbformat.cc -o db/dbformat.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_impl.cc -o db/db_impl.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_impl_readonly.cc -o db/db_impl_readonly.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_iter.cc -o db/db_iter.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_stats_logger.cc -o db/db_stats_logger.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/filename.cc -o db/filename.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/log_reader.cc -o db/log_reader.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/log_writer.cc -o db/log_writer.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/memtable.cc -o db/memtable.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/memtablelist.cc -o db/memtablelist.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/repair.cc -o db/repair.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/table_cache.cc -o db/table_cache.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/transaction_log_iterator_impl.cc -o db/transaction_log_iterator_impl.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/version_edit.cc -o db/version_edit.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/version_set.cc -o db/version_set.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/version_set_reduce_num_levels.cc -o db/version_set_reduce_num_levels.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/write_batch.cc -o db/write_batch.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/block_builder.cc -o table/block_builder.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/block.cc -o table/block.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/filter_block.cc -o table/filter_block.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/format.cc -o table/format.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/iterator.cc -o table/iterator.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/merger.cc -o table/merger.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/table_builder.cc -o table/table_builder.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/table.cc -o table/table.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/two_level_iterator.cc -o table/two_level_iterator.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/arena.cc -o util/arena.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/auto_roll_logger.cc -o util/auto_roll_logger.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/bloom.cc -o util/bloom.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/build_version.cc -o util/build_version.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/cache.cc -o util/cache.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/coding.cc -o util/coding.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/comparator.cc -o util/comparator.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/crc32c.cc -o util/crc32c.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/env.cc -o util/env.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/env_hdfs.cc -o util/env_hdfs.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/env_posix.cc -o util/env_posix.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/filter_policy.cc -o util/filter_policy.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/hash.cc -o util/hash.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/histogram.cc -o util/histogram.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/ldb_cmd.cc -o util/ldb_cmd.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/logging.cc -o util/logging.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/murmurhash.cc -o util/murmurhash.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/options.cc -o util/options.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/status.cc -o util/status.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c port/port_posix.cc -o port/port_posix.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_bench.cc -o db/db_bench.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/testutil.cc -o util/testutil.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/arena_test.cc -o util/arena_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/testharness.cc -o util/testharness.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/bloom_test.cc -o util/bloom_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/gcc -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -fPIC -c db/c_test.c -o db/c_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/cache_test.cc -o util/cache_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/coding_test.cc -o util/coding_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/histogram_test.cc -o util/histogram_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/corruption_test.cc -o db/corruption_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/crc32c_test.cc -o util/crc32c_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/db_test.cc -o db/db_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/dbformat_test.cc -o db/dbformat_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/env_test.cc -o util/env_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/filename_test.cc -o db/filename_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/filter_block_test.cc -o table/filter_block_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/log_test.cc -o db/log_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c helpers/memenv/memenv_test.cc -o helpers/memenv/memenv_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c helpers/memenv/memenv.cc -o helpers/memenv/memenv.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/skiplist_test.cc -o db/skiplist_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/table_test.cc -o table/table_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c table/block_test.cc -o table/block_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/version_edit_test.cc -o db/version_edit_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/version_set_test.cc -o db/version_set_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/reduce_levels_test.cc -o tools/reduce_levels_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c db/write_batch_test.cc -o db/write_batch_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/auto_roll_logger_test.cc -o util/auto_roll_logger_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c util/filelock_test.cc -o util/filelock_test.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/manifest_dump.cc -o tools/manifest_dump.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/sst_dump.cc -o tools/sst_dump.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/db_stress.cc -o tools/db_stress.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/ldb.cc -o tools/ldb.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include -g -Wall -Werror -Wno-unused-parameter -Wno-sign-compare -I. -I./include -B/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/binutils/binutils-2.21.1/bin/gold -m64 -mtune=generic -fPIC -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/include -DHAVE_JEMALLOC -DOS_LINUX -fPIC -fno-builtin-memcmp -DLEVELDB_PLATFORM_POSIX -DSNAPPY -DZLIB -msse -msse4.2 -DNDEBUG -O2 -fno-omit-frame-pointer -momit-leaf-frame-pointer -std=gnu++0x -fPIC -c tools/db_repl_stress.cc -o tools/db_repl_stress.o
rm -f libmemenv.a
ar -rs libmemenv.a helpers/memenv/memenv.o
rm -f libleveldb.a
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/db_bench.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o db_bench -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/arena_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o arena_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
ar -rs libleveldb.a db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/bloom_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o bloom_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/c_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o c_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/cache_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o cache_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/coding_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o coding_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/histogram_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -ohistogram_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/corruption_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o corruption_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/crc32c_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o crc32c_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/dbformat_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o dbformat_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/env_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o env_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/filename_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o filename_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include table/filter_block_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o filter_block_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/log_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o log_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/skiplist_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o skiplist_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include table/table_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o table_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include table/block_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o block_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/version_edit_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o version_edit_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/version_set_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o version_set_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/reduce_levels_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o reduce_levels_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/write_batch_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o write_batch_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/auto_roll_logger_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o auto_roll_logger_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include util/filelock_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o filelock_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/manifest_dump.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o manifest_dump -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/sst_dump.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o sst_dump -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/db_stress.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o db_stress -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/ldb.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o ldb -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include tools/db_repl_stress.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o db_repl_stress -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include helpers/memenv/memenv_test.o libmemenv.a libleveldb.a ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o memenv_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/centos5.2-native/gcc/gcc-4.7.1-glibc-2.14.1/bin/g++ -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/include -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/include -I./thrift -I./thrift/gen-cpp -I./thrift/lib/cpp -I /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/include db/db_test.o db/builder.o db/c.o db/db_filesnapshot.o db/dbformat.o db/db_impl.o db/db_impl_readonly.o db/db_iter.o db/db_stats_logger.o db/filename.o db/log_reader.o db/log_writer.o db/memtable.o db/memtablelist.o db/repair.o db/table_cache.o db/transaction_log_iterator_impl.o db/version_edit.o db/version_set.o db/version_set_reduce_num_levels.o db/write_batch.o table/block_builder.o table/block.o table/filter_block.o table/format.o table/iterator.o table/merger.o table/table_builder.o table/table.o table/two_level_iterator.o util/arena.o util/auto_roll_logger.o util/bloom.o util/build_version.o util/cache.o util/coding.o util/comparator.o util/crc32c.o util/env.o util/env_hdfs.o util/env_posix.o util/filter_policy.o util/hash.o util/histogram.o util/ldb_cmd.o util/logging.o util/murmurhash.o util/options.o util/status.o port/port_posix.o ./util/testharness.o ./util/testutil.o -Wl,--whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/jemalloc/jemalloc-3.0.0/2f45f3a/lib/libjemalloc.a -Wl,--no-whole-archive /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libunwind/libunwind-1.0.1/91ddd43/lib/libunwind.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/boost/boost-1.48.0/2a0840d/lib -L /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libevent/libevent-1.4.14b/91ddd43/lib -o db_test -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/libgcc/libgcc-4.7.1/afc21dc/lib -L/mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/glibc/glibc-2.14.1/99df8fc/lib -lpthread /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/snappy/snappy-1.0.3/7518bbe/lib/libsnappy.a /mnt/gvfs/third-party/3748fabb2c5e033009597bae1f9ef8bf4b218581/gcc-4.7.1-glibc-2.14.1/zlib/zlib-1.2.5/91ddd43/lib/libz.a -lz
ln -fs libleveldb.so.1.5 libleveldb.so
ln -fs libleveldb.so.1.5 libleveldb.so.1
make[1]: Leaving directory `/home/mcallaghan/rocksdb'
Loading…
Cancel
Save