mirror of https://github.com/YosysHQ/yosys.git
- Makefile: fix typo in LDFLAGS: obviously -L, not -I is required here
This commit is contained in:
parent
cb4293624e
commit
1cd7fbb6b8
2
Makefile
2
Makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue