diff options
author | Claire Wolf <clifford@clifford.at> | 2020-05-08 10:40:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 10:40:25 +0200 |
commit | aafaeb66dfd839b8223059884d2741dadc9e2d92 (patch) | |
tree | 48cf60b873d95e76ada28276e045f1d178d45953 | |
parent | 8ec3b6db1c07cc157fdf2955ed5daefb22126cf2 (diff) | |
parent | c9befa769ff2cf36aca6b38e5015bb5bc26ab857 (diff) | |
download | yosys-aafaeb66dfd839b8223059884d2741dadc9e2d92.tar.gz yosys-aafaeb66dfd839b8223059884d2741dadc9e2d92.tar.bz2 yosys-aafaeb66dfd839b8223059884d2741dadc9e2d92.zip |
Merge pull request #2038 from nakengelhardt/no-libdir-flag
Remove yosys libdir from LDFLAGS (and fix a typo)
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -82,7 +82,6 @@ YOSYS_SRC := $(dir $(firstword $(MAKEFILE_LIST))) VPATH := $(YOSYS_SRC) CXXFLAGS := $(CXXFLAGS) -Wall -Wextra -ggdb -I. -I"$(YOSYS_SRC)" -MD -D_YOSYS_ -fPIC -I$(PREFIX)/include -LDFLAGS := $(LDFLAGS) -L$(LIBDIR) LDLIBS := $(LDLIBS) -lstdc++ -lm PLUGIN_LDFLAGS := @@ -371,7 +370,7 @@ BOOST_PYTHON_LIB ?= $(shell \ endif ifeq ($(BOOST_PYTHON_LIB),) -$(error BOOST_PYTHON_LIB could not be detected. Please define manualy) +$(error BOOST_PYTHON_LIB could not be detected. Please define manually) endif ifeq ($(OS), Darwin) |