yahoo / mdbm

MDBM a very fast memory-mapped key/value store.
BSD 3-Clause "New" or "Revised" License
993 stars 111 forks source link

Explicitly link C++ stdlib preventing linking issues for straight C user... #35

Closed eam closed 9 years ago

eam commented 9 years ago

If -lstdc++ isn't explicitly linked then the resulting mdbm.so will have linker errors if used with a plain C compiler (versus say g++). mdbm.so really does depend on stdc++ so it should link it explicitly.

yahoocla commented 9 years ago

CLA is valid!

timrc-git commented 9 years ago

Thanks for the patch!