Merge pull request #18 from josuah/yosys-experimental

provide a fallback for systems without RLIMIT_AS
This commit is contained in:
Miodrag Milanović 2022-07-27 14:08:06 +02:00 committed by GitHub
commit 7cc11f7f0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -137,11 +137,11 @@ endif
# LIBS := -ldl -lrt
LIBS += -lm
ifneq ($(OS), FreeBSD)
ifneq ($(OS), $(filter $(OS), FreeBSD OpenBSD))
LIBS += -ldl
endif
ifneq ($(findstring Darwin, $(shell uname)), Darwin)
ifneq ($(OS), $(filter $(OS), FreeBSD OpenBSD Darwin))
LIBS += -lrt
endif