python: amd64 support
This commit is contained in:
parent
56343cafcf
commit
2dbdfe8ac7
2 changed files with 1 additions and 3 deletions
|
@ -17,8 +17,6 @@ main(int argc, char **argv)
|
|||
setfcr(getfcr()&~(1<<0));
|
||||
#elif defined(Tarm)
|
||||
setfsr(getfsr()&~(1<<16));
|
||||
#else
|
||||
Error define code for disabling fp exceptions for your arch.
|
||||
#endif
|
||||
|
||||
memset(&ta, 0, sizeof ta);
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
typedef struct Threadarg Threadarg;
|
||||
|
||||
#if defined(T386) || defined(Talpha) || defined(Tarm) || defined(Tpower)
|
||||
#if defined(T386) || defined(Talpha) || defined(Tarm) || defined(Tpower) || defined(Tamd64)
|
||||
#undef WORDS_BIGENDIAN
|
||||
#elif defined(Tmips) || defined(Tsparc)
|
||||
#define WORDS_BIGENDIAN
|
||||
|
|
Loading…
Reference in a new issue