Displaying 1 result from an estimated 1 matches for "oclvanityminer".
2014 Jun 06
0
Vanitygen on centos linux
...tall_sw
Now we download vanitigen from:
Code:https://github.com/samr7/vanitygen/archive/master.zip
And we need to edit the make file:
Code:export LD_RUN_PATH=/opt/openssl-1.0.1g/lib
LIBS=-lpcre -lcrypto -lm -lpthread
CFLAGS=-ggdb -O3 -Wall -L/opt/openssl-1.0.1g/lib
OBJS=vanitygen.o oclvanitygen.o oclvanityminer.o oclengine.o keyconv.o pattern.o util.o
PROGS=vanitygen keyconv oclvanitygen oclvanityminer
PLATFORM=$(shell uname -s)
ifeq ($(PLATFORM),Darwin)
OPENCL_LIBS=-framework OpenCL
else
OPENCL_LIBS=-lOpenCL
endif
most: vanitygen keyconv
all: $(PROGS)
vanitygen: vanitygen.o pattern.o util.o
$(CC) $...