diff options
author | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-10 20:12:20 +0100 |
---|---|---|
committer | Siesh1oo <siesh1oo@siesh1oo.no> | 2014-03-12 14:00:40 +0100 |
commit | 51bf1c871e89167228c406649201e608fd618d5c (patch) | |
tree | bc553bb97875c4db59723cc5a3a3fba6dfec52b7 | |
parent | 94bc11f0216010e54a8a4dd1fd390af97181f627 (diff) | |
download | yosys-51bf1c871e89167228c406649201e608fd618d5c.tar.gz yosys-51bf1c871e89167228c406649201e608fd618d5c.tar.bz2 yosys-51bf1c871e89167228c406649201e608fd618d5c.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
@@ -23,7 +23,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) |