From 7ef91bd607bf06eff9f67a7266f84b5fe5c0d315 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Sat, 25 Feb 2017 22:33:31 +0100 Subject: [PATCH] Changed Makefile to use CXX instead of g++ - is more standardised - closes #882 --- src/bitmsghash/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bitmsghash/Makefile b/src/bitmsghash/Makefile index 56a6a3a9..c4fb4ab5 100644 --- a/src/bitmsghash/Makefile +++ b/src/bitmsghash/Makefile @@ -15,10 +15,10 @@ powtest: ./testpow.py bitmsghash.so: bitmsghash.o - g++ bitmsghash.o -shared -fPIC -lcrypto $(LDFLAGS) + ${CXX} bitmsghash.o -shared -fPIC -lcrypto $(LDFLAGS) 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 bitmsghash*.dll