Merge pull request #614 from stweil/lept

Fix build for non x86
This commit is contained in:
zdenop 2016-12-26 19:28:06 +01:00 committed by GitHub
commit 25fed52bd5

View File

@ -19,7 +19,7 @@
#include "weightmatrix.h"
#undef NONX86_BUILD
#if defined(ANDROID_BUILD) or defined(__PPC__) or defined(_ARCH_PPC64)
#if !defined(__x86_64__) && !defined(__i386__) && !defined(_WIN32) || defined(ANDROID_BUILD)
#define NONX86_BUILD 1
#endif