From 43da83a0909a23254cba7f2aac1b1e7a492151b9 Mon Sep 17 00:00:00 2001 From: Yuri Date: Fri, 15 Jul 2016 12:11:59 -0700 Subject: [PATCH] Changed compiler from g++ to the standard makefile variable CXX. --- src/bitmsghash/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitmsghash/Makefile b/src/bitmsghash/Makefile index 88744524..723233ac 100644 --- a/src/bitmsghash/Makefile +++ b/src/bitmsghash/Makefile @@ -10,10 +10,10 @@ powtest: ./testpow.py bitmsghash.so: bitmsghash.o - g++ bitmsghash.o -shared -fPIC -lpthread -lcrypto $(LDFLAGS) -o bitmsghash.so + ${CXX} bitmsghash.o -shared -fPIC -lpthread -lcrypto $(LDFLAGS) -o bitmsghash.so bitmsghash.o: - g++ -Wall -O3 -march=native -fPIC $(CCFLAGS) -c bitmsghash.cpp + ${CXX} -Wall -O3 -march=native -fPIC $(CCFLAGS) -c bitmsghash.cpp clean: rm -f bitmsghash.o bitmsghash.so