add --benchmarks=levelstats option to db_bench, prevent "nan" in stats output

Summary:
Add --benchmarks=levelstats option to report per-level stats (#files, #bytes)
Change readwhilewriting test to report response time for writes but exclude
them from the stats merged by all threads.
Prevent "NaN" in stats output by preventing division by 0.
Remove "o" file I committed by mistake.

Task ID: #

Blame Rev:

Test Plan:
make check

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/D9513
main
Mark Callaghan 12 years ago
parent 02c459805b
commit 72d14eafd3
  1. 30
      db/db_bench.cc
  2. 22
      db/db_impl.cc
  3. 128
      o

@ -36,12 +36,16 @@
// readrandom -- read N times in random order // readrandom -- read N times in random order
// readmissing -- read N missing keys in random order // readmissing -- read N missing keys in random order
// readhot -- read N times in random order from 1% section of DB // readhot -- read N times in random order from 1% section of DB
// readwhilewriting -- 1 writer, N threads doing random reads
// readrandomwriterandom - N threads doing random-read, random-write
// updaterandom -- N threads doing read-modify-write for random keys
// seekrandom -- N random seeks // seekrandom -- N random seeks
// crc32c -- repeated crc32c of 4K of data // crc32c -- repeated crc32c of 4K of data
// acquireload -- load N*1000 times // acquireload -- load N*1000 times
// Meta operations: // Meta operations:
// compact -- Compact the entire DB // compact -- Compact the entire DB
// stats -- Print DB stats // stats -- Print DB stats
// levelstats -- Print the number of files and bytes per level
// sstables -- Print sstable info // sstables -- Print sstable info
// heapprofile -- Dump a heap profile (if supported by this port) // heapprofile -- Dump a heap profile (if supported by this port)
static const char* FLAGS_benchmarks = static const char* FLAGS_benchmarks =
@ -57,6 +61,7 @@ static const char* FLAGS_benchmarks =
"readrandom," "readrandom,"
"readseq," "readseq,"
"readreverse," "readreverse,"
"readwhilewriting,"
"readrandomwriterandom," // mix reads and writes based on FLAGS_readwritepercent "readrandomwriterandom," // mix reads and writes based on FLAGS_readwritepercent
"updaterandom," // read-modify-write for random keys "updaterandom," // read-modify-write for random keys
"randomwithverify," // random reads and writes with some verification "randomwithverify," // random reads and writes with some verification
@ -336,6 +341,7 @@ class Stats {
double last_report_finish_; double last_report_finish_;
HistogramImpl hist_; HistogramImpl hist_;
std::string message_; std::string message_;
bool exclude_from_merge_;
public: public:
Stats() { Start(-1); } Stats() { Start(-1); }
@ -353,9 +359,14 @@ class Stats {
finish_ = start_; finish_ = start_;
last_report_finish_ = start_; last_report_finish_ = start_;
message_.clear(); message_.clear();
// When set, stats from this thread won't be merged with others.
exclude_from_merge_ = false;
} }
void Merge(const Stats& other) { void Merge(const Stats& other) {
if (other.exclude_from_merge_)
return;
hist_.Merge(other.hist_); hist_.Merge(other.hist_);
done_ += other.done_; done_ += other.done_;
bytes_ += other.bytes_; bytes_ += other.bytes_;
@ -377,6 +388,7 @@ class Stats {
} }
void SetId(int id) { id_ = id; } void SetId(int id) { id_ = id; }
void SetExcludeFromMerge() { exclude_from_merge_ = true; }
void FinishedSingleOp(DB* db) { void FinishedSingleOp(DB* db) {
if (FLAGS_histogram) { if (FLAGS_histogram) {
@ -842,6 +854,8 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
HeapProfile(); HeapProfile();
} else if (name == Slice("stats")) { } else if (name == Slice("stats")) {
PrintStats("leveldb.stats"); PrintStats("leveldb.stats");
} else if (name == Slice("levelstats")) {
PrintStats("leveldb.levelstats");
} else if (name == Slice("sstables")) { } else if (name == Slice("sstables")) {
PrintStats("leveldb.sstables"); PrintStats("leveldb.sstables");
} else { } else {
@ -936,10 +950,12 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
} }
shared.mu.Unlock(); shared.mu.Unlock();
for (int i = 1; i < n; i++) { // Stats for some threads can be excluded.
arg[0].thread->stats.Merge(arg[i].thread->stats); Stats merge_stats;
for (int i = 0; i < n; i++) {
merge_stats.Merge(arg[i].thread->stats);
} }
arg[0].thread->stats.Report(name); merge_stats.Report(name);
for (int i = 0; i < n; i++) { for (int i = 0; i < n; i++) {
delete arg[i].thread; delete arg[i].thread;
@ -1298,6 +1314,10 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
} else { } else {
// Special thread that keeps writing until other threads are done. // Special thread that keeps writing until other threads are done.
RandomGenerator gen; RandomGenerator gen;
// Don't merge stats from this thread with the readers.
thread->stats.SetExcludeFromMerge();
while (true) { while (true) {
{ {
MutexLock l(&thread->shared->mu); MutexLock l(&thread->shared->mu);
@ -1314,10 +1334,8 @@ unique_ptr<char []> GenerateKeyFromInt(int v)
fprintf(stderr, "put error: %s\n", s.ToString().c_str()); fprintf(stderr, "put error: %s\n", s.ToString().c_str());
exit(1); exit(1);
} }
thread->stats.FinishedSingleOp(db_);
} }
// Do not count any of the preceding work/delay in stats.
thread->stats.Start(thread->tid);
} }
} }

@ -2214,6 +2214,23 @@ bool DBImpl::GetProperty(const Slice& property, std::string* value) {
*value = buf; *value = buf;
return true; return true;
} }
} else if (in == "levelstats") {
char buf[1000];
snprintf(buf, sizeof(buf),
"Level Files Size(MB)\n"
"--------------------\n");
value->append(buf);
for (int level = 0; level < NumberLevels(); level++) {
snprintf(buf, sizeof(buf),
"%3d %8d %8.0f\n",
level,
versions_->NumLevelFiles(level),
versions_->NumLevelBytes(level) / 1048576.0);
value->append(buf);
}
return true;
} else if (in == "stats") { } else if (in == "stats") {
char buf[1000]; char buf[1000];
uint64_t total_bytes = 0; uint64_t total_bytes = 0;
@ -2254,9 +2271,10 @@ bool DBImpl::GetProperty(const Slice& property, std::string* value) {
stats_[level].bytes_readnp1 / 1048576.0, stats_[level].bytes_readnp1 / 1048576.0,
bytes_new / 1048576.0, bytes_new / 1048576.0,
amplify, amplify,
(bytes_read / 1048576.0) / (stats_[level].micros / 1000000.0), // +1 to avoid division by 0
(bytes_read / 1048576.0) / ((stats_[level].micros+1) / 1000000.0),
(stats_[level].bytes_written / 1048576.0) / (stats_[level].bytes_written / 1048576.0) /
(stats_[level].micros / 1000000.0), ((stats_[level].micros+1) / 1000000.0),
stats_[level].files_in_leveln, stats_[level].files_in_leveln,
stats_[level].files_in_levelnp1, stats_[level].files_in_levelnp1,
stats_[level].files_out_levelnp1, stats_[level].files_out_levelnp1,

128
o

@ -1,128 +0,0 @@
/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