Added checks for Linux Alpha & Linux Sparc. Thanks to Steve Willis <steve@redhat.com> for providing the fix.

This commit is contained in:
cls%seawood.org 1998-10-19 18:37:21 +00:00
Родитель 92525e7efb
Коммит 1b12571414
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -353,6 +353,12 @@
#elif __i386__
#define IS_LITTLE_ENDIAN 1
#undef IS_BIG_ENDIAN
#elif __alpha__
#define IS_BIG_ENDIAN 1
#undef IS_LITTLE_ENDIAN
#elif __sparc__
#define IS_BIG_ENDIAN 1
#undef IS_LITTLE_ENDIAN
#else
#error "linux cpu architecture not supported by jscpucfg.h"
#endif