Results 167 comments of pooler

For SHA-256 there is plenty of documentation available online. When I first started I think I simply used ArtForz's code (see `sha256_transform()`) as a base, and went from there.

What systems (requiring the patch) have you tested this on?

Can you build cpuminer on that system with just this patch? If `sys/time.h` isn't available, where is `gettimeofday()` declared?

Compatibility macros should probably go in `compat.h`.

Do you have a file named `install.sh` either in the project directory or somewhere Automake would look?

Judging from your log it seems to be working fine. It's just very slow, but I would expect that from an algorithm as heavy as `scrypt:1048576`.

The simplest way to know if it's working is to wait and see if shares get accepted or rejected. Whether you are likely to find a share anytime soon depends...

> checking for json_loads in -ljansson... yes > [...] > cpu-miner.c:36:21: fatal error: jansson.h: No such file or directory Is Jansson properly installed on your system? It would appear that...

@brucestir, chances are gcc is not looking for the header file in the right place. If you can locate the file, try telling gcc where to find it with the...

@brucestir, maybe try this: ``` $ CPPFLAGS='-I/usr/include/jansson' ./configure $ make ```