Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

fix bug in fedora building, use pkg to find find the right library name #195

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion make/mshadow.mk
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ endif
ifeq ($(USE_BLAS), openblas)
MSHADOW_LDFLAGS += -lopenblas
else ifeq ($(USE_BLAS), atlas)
MSHADOW_LDFLAGS += -lcblas
MSHADOW_LDFLAGS += $(shell pkg-config --libs atlas)
else ifeq ($(USE_BLAS), blas)
MSHADOW_LDFLAGS += -lblas
else ifeq ($(USE_BLAS), apple)
Expand Down