1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

Merge pull request #5042 from alyssais/pthread

Enable pthreads for new libraries
This commit is contained in:
Eelco Dolstra 2021-07-28 12:31:01 +02:00 committed by GitHub
commit 7816ef6c51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -15,7 +15,7 @@ libexpr_CXXFLAGS += -I src/libutil -I src/libstore -I src/libfetchers -I src/lib
libexpr_LIBS = libutil libstore libfetchers
libexpr_LDFLAGS = -lboost_context
libexpr_LDFLAGS = -lboost_context -pthread
ifdef HOST_LINUX
libexpr_LDFLAGS += -ldl
endif