Browse Source

Don't build VIA on apple since -a auto bombs instead of gracefully ignoring VIA failing.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
b0bfd816d6
  1. 2
      miner.h

2
miner.h

@ -72,7 +72,7 @@ void *alloca (size_t); @@ -72,7 +72,7 @@ void *alloca (size_t);
#define WANT_X8632_SSE2 1
#endif
#if defined(__i386__) || defined(__x86_64__)
#if (defined(__i386__) || defined(__x86_64__)) && !defined(__APPLE__)
#define WANT_VIA_PADLOCK 1
#endif

Loading…
Cancel
Save