Unverified Commit 7cc11f7f by Miodrag Milanović Committed by GitHub

Merge pull request #18 from josuah/yosys-experimental

provide a fallback for systems without RLIMIT_AS
parents 4e89fc7c b6c0b36c
...@@ -137,11 +137,11 @@ endif ...@@ -137,11 +137,11 @@ endif
# LIBS := -ldl -lrt # LIBS := -ldl -lrt
LIBS += -lm LIBS += -lm
ifneq ($(OS), FreeBSD) ifneq ($(OS), $(filter $(OS), FreeBSD OpenBSD))
LIBS += -ldl LIBS += -ldl
endif endif
ifneq ($(findstring Darwin, $(shell uname)), Darwin) ifneq ($(OS), $(filter $(OS), FreeBSD OpenBSD Darwin))
LIBS += -lrt LIBS += -lrt
endif endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment