It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
# cellminer - Bitcoin miner for the Cell Broadband Engine Architecture
# Copyright © 2011 Robert Leslie
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (version 2) as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
DEFINE = -DUNROLL_SHA256
DEFINE += -Dinline="inline __attribute__((always_inline))"
#DEFINE += -DDEBUG
OPTIMIZE = -O3 -fno-strict-aliasing -funroll-loops
MACHINE = -mcpu=cell #-maltivec
DEBUG = -Wall -Werror
CFLAGS = $(DEFINE) $(OPTIMIZE) $(MACHINE) $(DEBUG) $(INCLUDEPATH)
LDFLAGS = $(LIBPATH) -fno-use-linker-plugin
CC = gcc
worker.a: worker.o sha256.o util.o
$(AR) rc $@ $?
test: test.o sha256.o util.o
$(CC) -o $@ $(LDFLAGS) $^
%.s: %.c Makefile
$(CC) -o $@ $(CFLAGS) -c $< -S
%-debug.s: %.c Makefile
$(CC) -o $@ $(CFLAGS) -c $< -S -g
.PHONY: clean
clean:
-rm -f *.a *.o test
depend.auto: *.[ch]
@$(CC) $(MACHINE) -MM *.c >$@
*.o: Makefile
include depend.auto
make -C ext
make[1]: Entering directory `/root/cellminer/ext'
make -C spu
make[2]: Entering directory `/root/cellminer/ext/spu'
spu-gcc -DUNROLL_SHA256 -Dinline="inline __attribute__((always_inline))" -O3 -fno-strict-aliasing -funroll-loops -mno-safe-hints -Wall -Werror -c -o worker.o worker.c
spu-gcc: fatal error: -fuse-linker-plugin, but liblto_plugin.so not found
compilation terminated.
make[2]: *** [worker.o] Error 1
make[2]: Leaving directory `/root/cellminer/ext/spu'
make[1]: *** [spu/worker.elf] Error 2
make[1]: Leaving directory `/root/cellminer/ext'
make: *** [ext/cellminer.so] Error 2