diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:12:20 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:12:20 +0100 |
commit | 113f129b348c48fff67242fe65906b3821ae7bd4 (patch) | |
tree | b99e191be54bfbdc7c9d08c158e3a2e1fe128e3a | |
parent | 4d56e23e318a6739ec06ce74d81dfa1d940aef0f (diff) | |
download | yosys-113f129b348c48fff67242fe65906b3821ae7bd4.tar.gz yosys-113f129b348c48fff67242fe65906b3821ae7bd4.tar.bz2 yosys-113f129b348c48fff67242fe65906b3821ae7bd4.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 = 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) |