mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-11 21:50:54 +00:00
Changes in libs, passes and tests Makefiles. LDLIBS -> LIBS. LDFLAGS -> LINKFLAGS. CXX is clang++ or g++, not clang and gcc
This commit is contained in:
parent
dea4aeae56
commit
4a2fb18718
4 changed files with 9 additions and 11 deletions
|
@ -1,9 +1,9 @@
|
|||
|
||||
CC = clang
|
||||
CXX = clang
|
||||
CXX = clang++
|
||||
CXXFLAGS = -MD -Wall -Wextra -ggdb
|
||||
CXXFLAGS += -std=c++11 -O0
|
||||
LDLIBS = ../minisat/Options.cc ../minisat/SimpSolver.cc ../minisat/Solver.cc ../minisat/System.cc -lm -lstdc++
|
||||
LIBS = ../minisat/Options.cc ../minisat/SimpSolver.cc ../minisat/Solver.cc ../minisat/System.cc -lm -lstdc++
|
||||
|
||||
|
||||
all: demo_vec demo_bit demo_cmp testbench puzzle3d
|
||||
|
@ -27,4 +27,3 @@ clean:
|
|||
.PHONY: all test clean
|
||||
|
||||
-include *.d
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue