4

Nvidia Gt 630 cuda 5.5 running CGminer not. Cuda examples fine. Should CGminer work or is there limitations to it?

sudo ./autogen.sh --disable-cpumining --enable-opencl && make

Configuration Options Summary:

  libcurl(GBT+getwork).: Enabled: -lcurl  
  curses.TUI...........: FOUND: -lncurses

  Avalon.ASICs.........: Disabled
  BlackArrow.ASICs.....: Disabled
  BFL.ASICs............: Disabled
  BitForce.FPGAs.......: Disabled
  BitFury.ASICs........: Disabled
  Hashfast.ASICs.......: Disabled
  Icarus.ASICs/FPGAs...: Disabled
  Klondike.ASICs.......: Disabled
  KnC.ASICs............: Disabled
  ModMiner.FPGAs.......: Disabled
configure: error: No mining configured in
Hennes
  • 64,768
  • 7
  • 111
  • 168
Jorma
  • 51
  • 1
  • 2
  • 1
    Its important to note. That even when this question was asked that CGMiner had already removed GPU mining from the current release. – Ramhound Oct 01 '14 at 10:47

1 Answers1

0

You did not configure any miners. There is check for enabled miners in .configure file.

All yours show Disabled state.

Disabled state is set if appropriate variable was not set to yes.

Variable is set to no by default unless you supply a key for it to .configure script (for example --enable-avalon ).

So, your solution is to enable at least one miner:

--enable-avalon
--enable-bab
--enable-bflsc
--enable-bitforce
--enable-bitfury
--enable-cointerra
--enable-bitmine_A1
--enable-drillbit
--enable-hashfast
--enable-icarus
--enable-klondike
--enable-knc
--enable-avalon2
--enable-minion
--enable-modminer
VL-80
  • 4,475
  • 2
  • 28
  • 38