ruricolist / overlord

Build system in Common Lisp
MIT License
60 stars 2 forks source link

Is this correct? #26

Closed K1D77A closed 2 years ago

K1D77A commented 2 years ago
image

Is this correct behaviour? I am using cl-yesql.

Thanks.

ruricolist commented 2 years ago

That's the intended behavior. A persistent thread pool with one thread per core is created during the first build to read metadata from the file system. You can suppress it with (setf (overlord:use-threads-p) nil).

K1D77A commented 2 years ago

Thanks :)