Open Source Blitz Rating List: Sloppy

Discussion of computer chess matches and engine tournaments.

Moderators: hgm, Rebel, chrisw

UncombedCoconut
Posts: 319
Joined: Fri Dec 18, 2009 11:40 am
Location: Naperville, IL

Re: Open Source Blitz Rating List: Sloppy

Post by UncombedCoconut »

Well, that's quite strange. Without more context for the error it's hard to tell what happened on your system.
When I tried, the linking command was

Code: Select all

g++ -lm -lpthread -ldl  -DHAS_POPCNT -o scorpio attack.o scorpio.o eval.o hash.o moves.o parallel.o probe.o search.o see.o magics.o util.o
(I did modify the makefile to add -DHAS_POPCNT -- nothing more.)

I identified the -lpthread -ldl as important because pthread_create() is in libpthread, and dlopen() and dlsym() are in libdl.