CudaMiner icon indicating copy to clipboard operation
CudaMiner copied to clipboard

Configure for Apple and guard malloc include

Open myshen opened this issue 11 years ago • 4 comments

myshen avatar Feb 06 '14 01:02 myshen

I had been doing this manually each time I updated, good work @myshen. But, what is the commit of sha3.cpp for? How is this related to building on Darwin?

justinmuller avatar Feb 06 '14 02:02 justinmuller

Good question, I screwed up. I've removed the sha3.cpp. I hope I didn't do it the wrong way.

myshen avatar Feb 06 '14 02:02 myshen

OS X doesn't need a malloc include. This is what I've been patching with.

#ifndef __APPLE__
#include <malloc.h>
#endif

coercion avatar Feb 08 '14 21:02 coercion

Updated to use @coercion's method.

myshen avatar Feb 10 '14 16:02 myshen