ccurl
ccurl copied to clipboard
C port of the Curl library
When I try to install (following the README) ccurl-cli I get this error: > [ 10%] Linking C executable ccurld /usr/bin/ld: cannot find -lstatic collect2: error: ld returned 1 exit...
It seems there is no reference for the variable `int i = 0;`. Is it fine to consider remove it? Or does it have any purpose elsewhere? https://github.com/iotaledger/ccurl/blob/94d74a492a7ff9494c73b7be2dcf80f3ce4d453f/src/lib/curl.c#L74
I have tried to run the PoW using graphic card, but I keep getting this error: W: ocl_pfn_notify error: [CL_DEVICE_NOT_AVAILABLE] : OpenCL Error : Error: Build Program driver returned (517)...
Fix to issue #39. Before this PR, the code does not compile correctly on ARM due to a difference in CHAR implementation between x86 and ARM. x86 implementation treat CHAR...
using libccurl to process a tx takes significantly more time on Intel Core i5 Graphics then without using GPU support. I checked libccurl with a AMD Card, and it is...
There are lots of compiler errors when enabling compiling test programs.
Does not compile correctly on ARM due to a difference in CHAR implementation between x86 and ARM. x86 implementation treat CHAR as SIGNED CHAR, whereas ARM treats CHAR as UNSIGNED...
Hello! I am using this library with ccurl.interface.js. I have noticed that nodes started rejecting transactions due to incorrect timestamp, and I am wondering if this is the culprit I...
If you are using the pure C implementation pearl_diver.c the signature for is_found_fast() causes loss of precision on it's return value. https://github.com/iotaledger/ccurl/blob/94d74a492a7ff9494c73b7be2dcf80f3ce4d453f/src/lib/pearl_diver.c#L154 I have a case where the final lastMeasurement...
This patch enables Node.js module authors to define `ccurl` as one of their dependencies in their `package.json`. It's then build for the current platform and Node version on installation time...