Pages:
Author

Topic: BFGMiner 5.5.0: CPU/GPU/FPGA/ASIC mining software, GBT+Stratum, RPC, Linux/Win64 - page 20. (Read 834514 times)

member
Activity: 84
Merit: 10
I am trying to add my antminer 3+ device and I am using this line it isn't working can anyone please help.

-S bitmain:auto --set btm:model=S3 --set btm:layout=32:8 --set btm:timeout=3
--set btm:clock=350 --set btm:reg_data=0d82 --set btm:voltage=x0725
legendary
Activity: 1736
Merit: 1006
If it's in /usr/local, it didn't come from Ubuntu. Probably was installed with BFGMiner before.

i did compile the last bfgminer for the futurebit moonlander sticks so it could be. ill try tomorrow to just remove those files and start over.
legendary
Activity: 2576
Merit: 1186
If it's in /usr/local, it didn't come from Ubuntu. Probably was installed with BFGMiner before.
legendary
Activity: 1736
Merit: 1006
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make




libjansson-dev is already installed and i have   libcurl4-openssl-dev instead of libcurl4-gnutls-dev?

tried it anyway, same error


Code:
  CCLD     bfgminer
bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2
I don't know how to fix this properly.
As a workaround, try adding --without-system-libbase58 to your configure options.

Details: GCC is finding your libbase58 in /usr/local/lib, and adding -L/usr/local/lib to the linker options. However, this causes the libblkmaker in /usr/local/lib to be used as well, which doesn't work because it's the older version. This is less likely to occur if I swap the order of the two libraries, but it doesn't really fix it. I could also specify the full path to the library, but there seems to be no portable way to get the filename right. Sad

what if i just deleted it?

is it because ubuntu 14.04 has an old package that you need upgraded?
legendary
Activity: 2576
Merit: 1186
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make




libjansson-dev is already installed and i have   libcurl4-openssl-dev instead of libcurl4-gnutls-dev?

tried it anyway, same error


Code:
  CCLD     bfgminer
bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2
I don't know how to fix this properly.
As a workaround, try adding --without-system-libbase58 to your configure options.

Details: GCC is finding your libbase58 in /usr/local/lib, and adding -L/usr/local/lib to the linker options. However, this causes the libblkmaker in /usr/local/lib to be used as well, which doesn't work because it's the older version. This is less likely to occur if I swap the order of the two libraries, but it doesn't really fix it. I could also specify the full path to the library, but there seems to be no portable way to get the filename right. Sad
legendary
Activity: 1736
Merit: 1006
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make




libjansson-dev is already installed and i have   libcurl4-openssl-dev instead of libcurl4-gnutls-dev?

tried it anyway, same error


Code:
  CCLD     bfgminer
bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2
I cannot reproduce this problem.
Can you get in touch and provide me with remote access maybe?

its a pretty basic lunux mint with ubuntu 14.04.
i installed all the packages in the readme and i only made 2 changes. i added

Code:
 
BFG_DRIVER(,FutureBit,scrypt,no,[
need_lowl_vcom=yes
has_asic=yes
])
to configure.ac

and

Code:
if USE_FUTUREBIT
bfgminer_SOURCES += driver-futurebit.c
endif

to Makefile.am

i run
./autogen.sh
./configure CFLAGS=-O3 --enable-scrypt --enable-futurebit --disable-other-drivers
make


you can remote in if you want.. not 100% sure how to set it up tho.. i have openssh installed.

i was going to try to start from scratch and see if i missed something.

legendary
Activity: 2576
Merit: 1186
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make




libjansson-dev is already installed and i have   libcurl4-openssl-dev instead of libcurl4-gnutls-dev?

tried it anyway, same error


Code:
  CCLD     bfgminer
bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2
I cannot reproduce this problem.
Can you get in touch and provide me with remote access maybe?
legendary
Activity: 1736
Merit: 1006
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make




libjansson-dev is already installed and i have   libcurl4-openssl-dev instead of libcurl4-gnutls-dev?

tried it anyway, same error


Code:
  CCLD     bfgminer
bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2
member
Activity: 238
Merit: 10
for aarons6 :

I try to build "bfgminer futurebit driver" as you try and I had same errors ... (raspberry pi with wheezy)

I just type that commands and compilation goes weel just after:


Code:
sudo apt-get update
sudo apt-get install libcurl4-gnutls-dev libjansson-dev
make

legendary
Activity: 1274
Merit: 1000
Code:
Package: bfgminer
Version: 5.4.2-1
Depends: libc, libcurl, libpthread, jansson, libevent2, libncurses, libmicrohttpd, libusb-1.0
Source: /home/luke-jr/Projects/Education/Tonal/BitCoin/bfgminer/openwrt/bfgminer
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: "Luke Dashjr"
Architecture: brcm2708
Installed-Size: 300537
Filename: bfgminer_5.4.2-1_brcm2708.ipk
Size: 300307
MD5Sum: 42a52222609b6c087885296a45be3af9
SHA256sum: 2031f5a1928e237ac4cc2d9e9ef378660b095ec1c4657f3569e362992d4bc6b1
Description:  Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C

I update it over openwrt and get this





Code:
Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for bfgminer:
 *      jansson *       libmicrohttpd *
 * opkg_install_cmd: Cannot install package bfgminer.
 

 I know what to do , before i used to be able to get it all off the BFG site it's np .
 
 just wondering if your a ware of it. or it's intended that way now .

No, jansson and libmicrohttpd have never been included in the BFGMiner repositories...

Which OpenWrt version are you using, and does the BFGMiner repo match it?
Note I just added 15.05, but if you still have 12.09, you should use the 12.09 repo instead.

I got it i knew what to do, i had to add custom feeds to the version i used  or what ever they call them, it was on a PI2 i had it running, i went back to ubuntu 15 server on my PI3,wanted to test open wrt, it was running BFG 5.4.2  on a pi2 with openwrt under https://downloads.openwrt.org/latest/brcm2708/bcm2709/ Smiley .
legendary
Activity: 2576
Merit: 1186
Code:
Package: bfgminer
Version: 5.4.2-1
Depends: libc, libcurl, libpthread, jansson, libevent2, libncurses, libmicrohttpd, libusb-1.0
Source: /home/luke-jr/Projects/Education/Tonal/BitCoin/bfgminer/openwrt/bfgminer
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: "Luke Dashjr"
Architecture: brcm2708
Installed-Size: 300537
Filename: bfgminer_5.4.2-1_brcm2708.ipk
Size: 300307
MD5Sum: 42a52222609b6c087885296a45be3af9
SHA256sum: 2031f5a1928e237ac4cc2d9e9ef378660b095ec1c4657f3569e362992d4bc6b1
Description:  Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C

I update it over openwrt and get this

Code:
Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for bfgminer:
 *      jansson *       libmicrohttpd *
 * opkg_install_cmd: Cannot install package bfgminer.
 

 I know what to do , before i used to be able to get it all off the BFG site it's np .
 
 just wondering if your a ware of it. or it's intended that way now .

No, jansson and libmicrohttpd have never been included in the BFGMiner repositories...

Which OpenWrt version are you using, and does the BFGMiner repo match it?
Note I just added 15.05, but if you still have 12.09, you should use the 12.09 repo instead.
legendary
Activity: 1274
Merit: 1000
Code:
Package: bfgminer
Version: 5.4.2-1
Depends: libc, libcurl, libpthread, jansson, libevent2, libncurses, libmicrohttpd, libusb-1.0
Source: /home/luke-jr/Projects/Education/Tonal/BitCoin/bfgminer/openwrt/bfgminer
License: GPL-3.0+
LicenseFiles: COPYING
Section: utils
Maintainer: "Luke Dashjr"
Architecture: brcm2708
Installed-Size: 300537
Filename: bfgminer_5.4.2-1_brcm2708.ipk
Size: 300307
MD5Sum: 42a52222609b6c087885296a45be3af9
SHA256sum: 2031f5a1928e237ac4cc2d9e9ef378660b095ec1c4657f3569e362992d4bc6b1
Description:  Modular Bitcoin ASIC/FPGA/GPU/CPU miner in C

I update it over openwrt and get this

Code:
Collected errors:
 * satisfy_dependencies_for: Cannot satisfy the following dependencies for bfgminer:
 *      jansson *       libmicrohttpd *
 * opkg_install_cmd: Cannot install package bfgminer.
 

 I know what to do , before i used to be able to get it all off the BFG site it's np .
 
 just wondering if your a ware of it. or it's intended that way now .
legendary
Activity: 1736
Merit: 1006
trying to compile new version with futurebit.c added in the makefile.am and configure.ac i get this

bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2


i tired to redownload the git and just ./autogen.sh ./configure and make with no modifications and the same error..


Sounds like mixed libblkmaker headers/library somehow.
Can you post your config.log file?

What is futurebit.c?

http://www.mediafire.com/download/hmz9yb6axwh2m99/config.log

i tried it straight from git with no mods and its the same error.
legendary
Activity: 1274
Merit: 1000
legendary
Activity: 2576
Merit: 1186
trying to compile new version with futurebit.c added in the makefile.am and configure.ac i get this

bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2


i tired to redownload the git and just ./autogen.sh ./configure and make with no modifications and the same error..


Sounds like mixed libblkmaker headers/library somehow.
Can you post your config.log file?

What is futurebit.c?
legendary
Activity: 1736
Merit: 1006
trying to compile new version with futurebit.c added in the makefile.am and configure.ac i get this

bfgminer-miner.o: In function `submit_upstream_work_request':
miner.c:(.text+0x25b0): undefined reference to `blkmk_submitm_jansson'
collect2: error: ld returned 1 exit status
make[2]: *** [bfgminer] Error 1
make[2]: Leaving directory `/home/aaron/Downloads/bfgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/aaron/Downloads/bfgminer'
make: *** [all] Error 2


i tired to redownload the git and just ./autogen.sh ./configure and make with no modifications and the same error..

legendary
Activity: 2576
Merit: 1186
NEW VERSION 5.4.2, MARCH 26 2016

Happy Easter!

Human readable changelog:
  • Fix some possible edge case problems with stratum proxying (--stratum-port).
  • openwrt: Binary packages for 15.05 "Chaos Calmer".
  • Fix 2D work support for GBT servers (requires libblkmaker 0.5.3 or newer).

Full changelog:
  • Update official Win32/64 build compiler and libraries:
    • Win64 compiler (GCC) from 4.7.4 to 5.3.0 (Win32 remains at 4.7.4)
    • libcurl from 7.39.0 to 7.47.1
    • libevent from 2.0.21 to 2.1.5-r4
    • libusb from 1.0.18 (Win32) and 1.0.19 (Win64) to 1.0.20
    • libmicrohttpd from 0.9.38_pre33603 to 0.9.48
  • Update libblkmaker to 0.5.3
  • Bugfix: Sanitise lock situation for work2d
  • Bugfix: SSM: Never issue the same work2d twice in a row
  • Bugfix: SSM: Never send mining.notify for stale work2d
  • SSM: Refactor work2d check and job pruning from _stratumsrv_update_notify into stratumsrv_update_notify_str
  • Updates for OpenWrt 15.05
  • Bugfix: Correct work2d handling for GBT servers
legendary
Activity: 1624
Merit: 1130
Bitcoin FTW!
Do I need to install Nvidia Cuda software for this?
I'm getting low hash rates

Old cudaminer is a good bet, i'm not sure that's even current anymore. The last time I checked was in 2013 when my laptop was happily mining away at bitcoin. Old quadro gpu died but I still think cudaminer is supported, or at least covers all gpus from 9800GTX to 980 and Titan X. Not sure about Z and 980Ti, cudaminer may not be supported anymore.
newbie
Activity: 45
Merit: 0
Do I need to install Nvidia Cuda software for this?
I'm getting low hash rates
newbie
Activity: 5
Merit: 0
so you tell me that with gridseed is not possible to mine ETH?
Pages:
Jump to: