5

When I build RocksDB using make static_lib that produces a 200MB+ librocksdb.a file, but when I install the same version through a package manager (compared to both Brew and apt), the .a file is only about 11MB. What am I missing?

Size of the library when building from source using make static_lib:

ubuntu@local:~/rocksdb-4.1$ du -sh librocksdb.a
238M    librocksdb.a

Size of the library installed using sudo apt-get install librocksdb-dev on Xenial:

ubuntu@local:~/rocksdb-4.1$ du -sh /usr/lib/librocksdb.a
11M /usr/lib/librocksdb.a

Why is there such a big difference?

jeffreyveon
  • 13,400
  • 18
  • 79
  • 129

1 Answers1

6

Probably the smaller achive is stripped of debug information.

You can use the strip command to remove symbols.

Cheers and hth. - Alf
  • 142,714
  • 15
  • 209
  • 331