forked from tpruvot/ccminer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix automake and remove useless files, update build.sh
- use foreign AM_INIT_AUTOMAKE to skip COPYING file (which is LICENCE.txt) http://www.gnu.org/software/automake/manual/html_node/Public-Macros.html - use subdir-objects option to fix automake on ubuntu 14.04
- Loading branch information
Showing
17 changed files
with
21 additions
and
13,131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
|
||
It is advised to run ./autogen.sh before./configure (autoconf and automake | ||
You can use ./build.sh to configure and build with default options. | ||
|
||
It is advised to run ./autogen.sh before ./configure (autoconf and automake | ||
need to be installed on your system for autogen.sh to work) | ||
|
||
./configure has an option named --with-cuda that allows you to specify | ||
where your CUDA 5.5 toolkit is installed (usually /usr/local/cuda-5.5, | ||
where your CUDA 6.5 toolkit is installed (usually /usr/local/cuda, | ||
but some distros may have a different default location) | ||
|
||
See README.txt |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
# Simple script to create the Makefile and build | ||
|
||
# export PATH="$PATH:/usr/local/cuda/bin/" | ||
|
||
make distclean || echo clean | ||
|
||
rm -f Makefile.in | ||
rm -f config.status | ||
./autogen.sh || echo done | ||
|
||
# CFLAGS="-O2" ./configure | ||
./configure.sh | ||
|
||
make -j 4 |
Oops, something went wrong.