From 4a1e3c2d5c6651fbdf4781a8204d3c4c0bc7a815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 3 Jul 2017 13:29:02 +0200 Subject: [PATCH] Update "CUDA disabled" message --- ethminer/MinerAux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethminer/MinerAux.h b/ethminer/MinerAux.h index 2f8842c57..857ca9812 100644 --- a/ethminer/MinerAux.h +++ b/ethminer/MinerAux.h @@ -522,9 +522,9 @@ public: )) exit(1); - EthashCUDAMiner::setParallelHash(m_parallelHash); + EthashCUDAMiner::setParallelHash(m_parallelHash); #else - cerr << "Selected CUDA mining without having compiled with -DETHASHCUDA=1 or -DBUNDLE=cudaminer" << endl; + cerr << "CUDA support disabled. Configure project build with -DETHASHCUDA=ON" << endl; exit(1); #endif }