Browse Source

fixed linking error for newer compilers

master
orignal 1 year ago
parent
commit
a57505d40b
  1. 2
      algorithm/fresh.c
  2. 2
      algorithm/qubitcoin.c
  3. 4
      algorithm/whirlcoin.c
  4. 2
      miner.h

2
algorithm/fresh.c

@ -49,7 +49,7 @@ typedef struct {
sph_echo512_context echo2; sph_echo512_context echo2;
} FreshHash_context_holder; } FreshHash_context_holder;
FreshHash_context_holder base_contexts; static FreshHash_context_holder base_contexts;
void init_freshHash_contexts() void init_freshHash_contexts()
{ {

2
algorithm/qubitcoin.c

@ -50,7 +50,7 @@ typedef struct {
sph_echo512_context echo1; sph_echo512_context echo1;
} Qhash_context_holder; } Qhash_context_holder;
Qhash_context_holder base_contexts; static Qhash_context_holder base_contexts;
void init_Qhash_contexts() void init_Qhash_contexts()

4
algorithm/whirlcoin.c

@ -44,7 +44,7 @@ typedef struct {
sph_whirlpool1_context whirlpool4; sph_whirlpool1_context whirlpool4;
} Whash_context_holder; } Whash_context_holder;
Whash_context_holder base_contexts; static Whash_context_holder base_contexts;
void init_whirlcoin_hash_contexts() void init_whirlcoin_hash_contexts()
@ -157,4 +157,4 @@ bool scanhash_whirlcoin(struct thr_info *thr, const unsigned char __maybe_unused
return ret; return ret;
} }
*/ */

2
miner.h

@ -246,7 +246,7 @@ enum drv_driver {
/* Use DRIVER_PARSE_COMMANDS to generate extern device_drv prototypes */ /* Use DRIVER_PARSE_COMMANDS to generate extern device_drv prototypes */
#ifndef _MSC_VER #ifndef _MSC_VER
DRIVER_PARSE_COMMANDS(DRIVER_PROTOTYPE) extern DRIVER_PARSE_COMMANDS(DRIVER_PROTOTYPE)
#endif #endif
// helper to check for empty or NULL strings // helper to check for empty or NULL strings

Loading…
Cancel
Save