basho / eleveldb

Erlang LevelDB API
262 stars 177 forks source link

- made code compile even if size_t not being long integer #136

Closed franzhaas closed 9 years ago

franzhaas commented 9 years ago

I changed the usage of size_t to unsigned long, and changed the 8G constant to LL.

seancribbs commented 9 years ago

Are you compiling on a 32-bit platform?

franzhaas commented 9 years ago

Yes I am.

seancribbs commented 9 years ago

Sorry, we explicitly don't support 32-bit. Our fork of leveldb uses various x86-64 features. Even if this makes eleveldb compile on your platform, the resulting linked library will probably be broken.