Skip to content
This repository has been archived by the owner on Jul 29, 2018. It is now read-only.

Building

apemanzilla edited this page Jan 9, 2016 · 3 revisions

Building

You can build the latest source code of JCLMiner easily thanks to Gradle. Follow the instructions below depending on your operating system. You will need to have git, JDK, and OpenCL (Usually provided by your graphics card drivers) installed.

Windows

First, clone the repository using git. Make sure to include the --recursive option or you will have problems later.

git clone --recursive https://github.com/apemanzilla/JCLMiner.git

Enter the repository.

cd JCLMiner

Use the Gradle wrapper to build the code. It will take some time to run!

gradlew build

If all went well, you should find compressed archives containing the binaries in build/distributions.

Linux / Mac OSX

First, clone the repository using git. Make sure to include the --recursive option or you will have problems later.

git clone --recursive https://github.com/apemanzilla/JCLMiner.git

Enter the repository.

cd JCLMiner

Make the Gradle wrapper executable.

chmod +x gradlew

Use the Gradle wrapper to build the code. It will take some time to run!

./gradlew build

If all went well, you should find compressed archives containing the binaries in build/distributions.

Clone this wiki locally