erlang-lz4 icon indicating copy to clipboard operation
erlang-lz4 copied to clipboard

LZ4 bindings for Erlang

Results 5 erlang-lz4 issues
Sort by recently updated
recently updated
newest added

I ran into an issue with building a release of a service which uses this library. rebar3 complained during the release build phase that the description string was empty for...

``` > DEBUG=1 rebar3 compile # ... failed with return code 1 and the following output: ld: library not found for -lerl_interface clang: error: linker command failed with exit code...

``` ===> Compiling lz4 make: Entering directory '/var/www/diamond_web/deps/lz4/c_src' cc /var/www/diamond_web/deps/lz4/c_src/lz4hc.o /var/www/diamond_web/deps/lz4/c_src/lz4_nif.o /var/www/diamond_web/deps/lz4/c_src/lz4.o -shared -L /usr/local/lib/erlang/lib/erl_interface-3.11.3/lib -lerl_interface -lei -o /var/www/diamond_web/deps/lz4/c_src/../priv/lz4.so /var/www/diamond_web/deps/lz4/c_src/lz4hc.o: file not recognized: file format not recognized collect2: error: ld...

Hi, Would you please consider publishing a new tag (0.2.5?) from [the version of the software in the develop branch that contains simplification of native code compilation](https://github.com/szktty/erlang-lz4/commits/e7ccf4fc9a806982055f26772522c3543c89d1b5)?

The package in Hex.pm includes OSX (Mach-O) objectfiles. These files break the build on any non-OSX platform. On Linux, I see ``` $ DEBUG=1 mix deps.compile lz4 ===> Expanded command...