Skip to content

Commit

Permalink
Do not force compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlonluca committed Apr 16, 2020
1 parent 401ec2a commit d3e9614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# https://bitbucket.org/brunobraga/logcat-colorize/issues
#

CC=g++
#CC=g++
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
CCFLAGS += -lboost_regex -lboost_program_options -std=c++0x
Expand All @@ -40,7 +40,7 @@ endif
INSTALLDIR=$(DESTDIR)/$(PREFIX)/bin

$(EXEC): $(DEPS)
$(CC) $(DEPS) -o $(EXEC) $(CCFLAGS)
$(CXX) $(DEPS) -o $(EXEC) $(CCFLAGS)

$(INSTALLDIR):
mkdir -pv $(INSTALLDIR)
Expand Down

0 comments on commit d3e9614

Please sign in to comment.