mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-12-22 15:58:53 +00:00
Apple silicon: force W^X, enable hardware AES
This commit is contained in:
parent
5bfd021e8f
commit
a38ce601fd
@ -62,9 +62,13 @@ namespace randomx {
|
||||
cpuid(info, 0x00000007);
|
||||
avx2_ = (info[1] & (1 << 5)) != 0;
|
||||
}
|
||||
#elif defined(__aarch64__) && defined(HWCAP_AES)
|
||||
#elif defined(__aarch64__)
|
||||
#if defined(HWCAP_AES)
|
||||
long hwcaps = getauxval(AT_HWCAP);
|
||||
aes_ = (hwcaps & HWCAP_AES) != 0;
|
||||
#elif defined(__APPLE__)
|
||||
aes_ = true;
|
||||
#endif
|
||||
#endif
|
||||
//TODO POWER8 AES
|
||||
}
|
||||
|
@ -36,6 +36,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#include "jit_compiler_fallback.hpp"
|
||||
#endif
|
||||
|
||||
#if defined(__OpenBSD__) || defined(__NetBSD__)
|
||||
#if defined(__OpenBSD__) || defined(__NetBSD__) || (defined(__APPLE__) && defined(__aarch64__))
|
||||
#define RANDOMX_FORCE_SECURE
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user