Chris Taylor

Results 33 comments of Chris Taylor

You can probably just remove the ARCHIVE line from the CMakeLists.txt

Were you able to resolve the problem or are you still stumped?

It builds for me on an Ubuntu Intel box so not sure why it's failing for you..

Possibly you're running it on an Intel PC that doesn't have SSSE3 instructions?

Ah okay. I think the issue is that the build flags need to be set to include SSSE3 with -m argument, and we should do runtime detection of the feature....

The code already does runtime detection of feature would just need to update the CMakeLists.txt somehow

Yes on ARM platform the start of the buffers need to be aligned to 16 bytes, so the low 4 bits of the pointer should be zero. On Intel you...

The math is different for that case, and it is not implemented in this repo.

I believe it's the "encodeL" path that is commented out in this code: https://github.com/catid/Fast-algorithms-of-Reed-Solomon-erasure-codes

Sorry just noticed your work here. I hope you were able to get through the issue