linux: add build notes for fedora 22
This commit is contained in:
parent
5be1521294
commit
7500af78eb
33
INSTALL
33
INSTALL
@ -8,4 +8,35 @@ need to be installed on your system for autogen.sh to work)
|
||||
where your CUDA 6.5 toolkit is installed (usually /usr/local/cuda,
|
||||
but some distros may have a different default location)
|
||||
|
||||
See README.txt
|
||||
|
||||
** How to compile on Fedora 22 (2015) **
|
||||
|
||||
# Step 1: gcc and dependencies
|
||||
dnf install gcc gcc-c++ automake
|
||||
dnf install jansson-devel openssl-devel libcurl-devel
|
||||
|
||||
# Step 2: nvidia drivers (Download common linux drivers from nvidia site)
|
||||
dnf install kernel-devel
|
||||
modprobe -r nouveau
|
||||
./NVIDIA-Linux-x86_64-346.72.run
|
||||
|
||||
# Step 3: CUDA SDK (Download from nvidia archive)
|
||||
dnf install cuda-repo-fedora20-6-5-prod-6.5-19.x86_64.rpm
|
||||
dnf install cuda-minimal-build-6-5.x86_64
|
||||
|
||||
# add the nvcc binary path to the system
|
||||
ln -s /usr/local/cuda-6.5 /usr/local/cuda
|
||||
echo 'export PATH=$PATH:/usr/local/cuda/bin' > /etc/profile.d/cuda.sh
|
||||
|
||||
# add the cudart library path to the system
|
||||
echo /usr/local/cuda/lib64 > /etc/ld.so.conf.d/cuda.conf
|
||||
ldconfig
|
||||
|
||||
# Step 4: Fix the toolkit warning with gcc 5.1
|
||||
edit the file /usr/local/cuda/include/host_config.h
|
||||
and comment/delete the line 82 : #error -- unsupported GNU version! gcc 4.9
|
||||
|
||||
./build.sh
|
||||
|
||||
./ccminer -n
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user