Skip to content

Commit

Permalink
Makefile: Move CXX print to echo-cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystalDelusion committed Mar 8, 2024
1 parent 56f6659 commit 344ca18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 344ca18

Please sign in to comment.