mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-11 03:33:36 +00:00
Makefile: Move CXX print to echo-cxx
This commit is contained in:
parent
56f66596b0
commit
344ca18239
4
Makefile
4
Makefile
|
@ -364,7 +364,6 @@ EXE = .exe
|
|||
else ifneq ($(CONFIG),none)
|
||||
$(error Invalid CONFIG setting '$(CONFIG)'. Valid values: clang, gcc, emcc, mxe, msys2-32, msys2-64)
|
||||
else
|
||||
$(info Using provided C++ compiler, '$(CXX)'.)
|
||||
CXXFLAGS += -std=$(CXXSTD) -Os
|
||||
ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H $(ABC_ARCHFLAGS)"
|
||||
endif
|
||||
|
@ -1121,6 +1120,9 @@ echo-git-rev:
|
|||
echo-abc-rev:
|
||||
@echo "$(ABCREV)"
|
||||
|
||||
echo-cxx:
|
||||
@echo "$(CXX)"
|
||||
|
||||
-include libs/*/*.d
|
||||
-include frontends/*/*.d
|
||||
-include passes/*/*.d
|
||||
|
|
Loading…
Reference in a new issue