Skip to content

Commit

Permalink
Merge pull request #614 from stweil/lept
Browse files Browse the repository at this point in the history
Fix build for non x86
  • Loading branch information
zdenop authored Dec 26, 2016
2 parents 21a5c51 + 9a4a321 commit 25fed52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lstm/weightmatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 25fed52

Please sign in to comment.