Package Details: ethminer-cuda 0.19.0-8

Git Clone URL: https://aur.archlinux.org/ethminer-cuda.git (read-only, click to copy)
Package Base: ethminer-cuda
Description: Ethereum miner with OpenCL, CUDA and stratum support.
Upstream URL: https://github.com/ethereum-mining/ethminer
Licenses: GPL3
Conflicts: ethminer, ethminer-git
Provides: ethminer
Submitter: aimileus
Maintainer: mrxx
Last Packager: mrxx
Votes: 7
Popularity: 0.000000
First Submitted: 2018-02-27 10:41 (UTC)
Last Updated: 2022-05-13 10:34 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

mrxx commented on 2021-05-16 17:40 (UTC)

Thanks, nbryskin. Patch applied.

nbryskin commented on 2021-05-11 16:13 (UTC) (edited on 2021-05-11 16:14 (UTC) by nbryskin)

Latest fixes

diff --git a/PKGBUILD b/PKGBUILD
index a420d75..b9b38e0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,6 +24,13 @@ build () {
   # fix https://github.com/ethereum-mining/ethminer/issues/2027
   sed -i '/arch=compute_30/d' libethash-cuda/CMakeLists.txt

+  # fix https://github.com/ethereum-mining/ethminer/issues/2290
+  git cherry-pick 9ceee532cded1983fe0cf6a5cc3be9b39b409705
+
+  # fix https://github.com/ethereum-mining/ethminer/pull/2262
+  git cherry-pick 6f85e225748029ab8888fec090305f2a7405f046
+  git cherry-pick 671949a73c942593a3cf8318bf67fdb76ac91530
+
   mkdir -p build && cd build

   export CC=gcc

mrxx commented on 2020-11-26 01:55 (UTC)

Thanks, Hendrikto. Fixed.

Hendrikto commented on 2020-11-25 21:47 (UTC)

I got the error:

CMake Error at /usr/share/cmake-3.19/Modules/CMakeDetermineCCompiler.cmake:49 (message):
  Could not find compiler set in environment variable CC:

  gcc-9.
Call Stack (most recent call first):
  CMakeLists.txt:22 (project)


CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!

This can be fixed by using CC=gcc.

mrxx commented on 2020-09-05 21:42 (UTC)

Thanks, jaantoots, PKGBUILD updated and CC and CXX set to use gcc-9.

I think there is no need to add gcc to makedepends as it is already pulled in as a dependency of cuda.

jaantoots commented on 2020-09-04 20:59 (UTC)

Missing gcc8 from makedepends.

And until https://github.com/ethereum-mining/ethminer/issues/2027 has been fixed, need to remove that line to build with CUDA 11.0, e.g.:

sed -i '/arch=compute_30/d' libethash-cuda/CMakeLists.txt

vanja_z commented on 2020-06-19 09:15 (UTC)

Thanks!

mrxx commented on 2020-06-09 20:19 (UTC)

vanja_z, thanks for pointing out the typo (which actually existed since the first commit, hadn't to to anything with the latest fix). I've corrected it to 'CXX'.

vanja_z commented on 2020-06-08 15:40 (UTC) (edited on 2020-06-08 15:42 (UTC) by vanja_z)

Hi, the fix doesn't work for me, you should have:

export CXX=g++-8

not

export CCX=g++-8