From: Siesh1oo Date: Mon, 10 Mar 2014 19:12:20 +0000 (+0100) Subject: - Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here X-Git-Tag: yosys-0.3.0~57^2~1^2~6^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d56fbc150e5dcdefb1709d82aee91c9bb0d1227;p=yosys.git - Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here --- diff --git a/Makefile b/Makefile index ad68ee1e3..75a8f42bb 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ TARGETS = yosys yosys-config all: top-all CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSYS_ -fPIC -include kernel/posix_compatibility.h -LDFLAGS = -I${DESTDIR}/lib +LDFLAGS = -L${DESTDIR}/lib LDLIBS = -lstdc++ -lreadline -lm -ldl export PATH := ${DESTDIR}/bin:$(PATH)