Changed Makefile to use CXX instead of g++
- is more standardised - closes #882
This commit is contained in:
parent
b50198afb5
commit
7ef91bd607
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user