amchess / ShashChess

A try to implement Alexander Shashin's theory on a Stockfish's derived chess engine
GNU General Public License v3.0
131 stars 28 forks source link

List of dependencies to compile in Linux? #10

Closed emdio closed 4 years ago

emdio commented 4 years ago

I'm trying to compile ShashChess in a Linux machine, and the lack of info on dependencies is making it a bit harder than it should be.

I solved the first issue by installing libcurl4-gnutls-dev, but now I get a new one ("/usr/bin/ld: cannot find -lws2_32").

So maybe it'd be a good idea to add library dependencies to the README file.

amchess commented 4 years ago

You have to eliminate "-lws2_32" in MakeFile because it's only for window

emdio commented 4 years ago

Nice, that did the trick.