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
94bc11f021
commit
51bf1c871e
2
Makefile
2
Makefile
|
@ -23,7 +23,7 @@ TARGETS = yosys yosys-config
|
||||||
all: top-all
|
all: top-all
|
||||||
|
|
||||||
CXXFLAGS = -Wall -Wextra -ggdb -I"$(shell pwd)" -I${DESTDIR}/include -MD -D_YOSYS_ -fPIC -include kernel/posix_compatibility.h
|
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
|
LDLIBS = -lstdc++ -lreadline -lm -ldl
|
||||||
|
|
||||||
export PATH := ${DESTDIR}/bin:$(PATH)
|
export PATH := ${DESTDIR}/bin:$(PATH)
|
||||||
|
|
Loading…
Reference in New Issue