jonathanmcdermid / Clovis

MIT License
4 stars 2 forks source link

Compiling for Linux #3

Closed rchastain closed 2 years ago

rchastain commented 2 years ago

Hello!

FYI I could compile Clovis 1.2 for Linux 64.

I replaced #include <intrin.h> with #include <x86intrin.h>.

I replaced __popcnt64(bitboard) with _popcnt64(bitboard).

And in three files I replaced "UCI.h" with "uci.h".

After that I could compile with a simple make.

Good luck with that new engine which has a beautiful name. ;)

Regards.

Roland

jonathanmcdermid commented 2 years ago

Thanks a ton for the help/feedback! I have seen how other engines manage OS differences and will add compatibility in a future release.

rchastain commented 2 years ago

You are welcome. ;) I close the issue.