diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:12:20 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-11 19:43:59 +0100 |
commit | 4d56fbc150e5dcdefb1709d82aee91c9bb0d1227 (patch) | |
tree | 6be5b0555d40cc07308cc6976c11d5cf46c12e36 | |
parent | 4958559456c849811f213cb1b9e2beea61916e3c (diff) | |
download | yosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.tar.gz yosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.tar.bz2 yosys-4d56fbc150e5dcdefb1709d82aee91c9bb0d1227.zip |
- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |