Post
Topic
Board Alternatif Kripto-Paralar
Re: Bilmeyenler için Vps Mining , Riecoin
by
CC2
on 19/02/2014, 09:22:48 UTC
Anlatımını birebir taip ettim Ubuntu 13.10 x64 digitalocean 2cpu 2 gb ram

nano Makefile yapınca bu geliyor:

CXX = g++
CC = cc
CXXFLAGS = -Wall -Wextra -std=c++0x -O2 -fomit-frame-pointer -ffast-math

CFLAGS = -Wall -Wextra -O2 -fomit-frame-pointer -ffast-math
# add these for more speed! (if your cpu can do them)
#-msse2 -msse3 -mssse3 -msse4a -msse2avx -msse4a -msse4.1 -msse4.2 -mavx


OSVERSION := $(shell uname -s)
LIBS = -lcrypto -lssl -pthread -lgmp -lgmpxx  -ldl

ifeq ($(OSVERSION),Linux)
        LIBS += -lrt
        CFLAGS += -march=native
        CXXFLAGS += -march=native
endif




ilgili satırları düzeltip make -f Makefile yapınca:

root@no2:~/xptMiner# make -f Makefile
g++ -c -Wall -Wextra -std=c++0x -O2 -fomit-frame-pointer -ffast-math  -march=native -I/usr/local/include -I/usr/include -IxptMiner/includes/ -IxptMiner/OpenCL xptMiner/ticker.cpp -o xptMiner/ticker.o
xptMiner/ticker.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include "ticker.h"
 ^
make: *** [xptMiner/ticker.o] Error 1
root@no2:~/xptMiner#  CPU you selected does not support x86-64 instruction set
CPU: command not found


bu hatayı bir türlü çözemedim.

Teşekkürler.