endian.hpp /usr/include/gecode/third-party/boost/detail/limits.hpp //Copyright2005CalebEpstein //Copyright2006JohnMaddock //Copyright2010ReneRivera //DistributedundertheBoostSoftwareLicense,Version1.0.(Seeaccompany- //ingfileLICENSE_1_0.txtorcopyathttp://www.boost.org/LICENSE_1_0.txt) /* *Copyright(c)1997 *SiliconGraphicsComputerSystems,Inc. * *Permissiontouse,copy,modify,distributeandsellthissoftware *anditsdocumentationforanypurposeisherebygrantedwithoutfee, *providedthattheabovecopyrightnoticeappearinallcopiesand *thatboththatcopyrightnoticeandthispermissionnoticeappear *insupportingdocumentation.SiliconGraphicsmakesno *representationsaboutthesuitabilityofthissoftwareforany *purpose.Itisprovided"asis"withoutexpressorimpliedwarranty. */ /* *Copyrightnoticereproducedfrom<gecode/third-party/boost/detail/limits.hpp>,from *whichthiscodewasoriginallytaken. * *ModifiedbyCalebEpsteintouse<endian.h>withGNUlibcandto *definedtheBOOST_ENDIANmacro. */ #ifndefBOOST_DETAIL_ENDIAN_HPP #defineBOOST_DETAIL_ENDIAN_HPP //GNUlibcoffersthehelpfulheader<endian.h>whichdefines //__BYTE_ORDER #ifdefined(__GLIBC__) #include<endian.h> #if(__BYTE_ORDER==__LITTLE_ENDIAN) #defineBOOST_LITTLE_ENDIAN #elif(__BYTE_ORDER==__BIG_ENDIAN) #defineBOOST_BIG_ENDIAN #elif(__BYTE_ORDER==__PDP_ENDIAN) #defineBOOST_PDP_ENDIAN #else #errorUnknownmachineendiannessdetected. #endif #defineBOOST_BYTE_ORDER__BYTE_ORDER #elifdefined(_BIG_ENDIAN)&&!defined(_LITTLE_ENDIAN)||\ defined(__BIG_ENDIAN__)&&!defined(__LITTLE_ENDIAN__)||\ defined(_STLP_BIG_ENDIAN)&&!defined(_STLP_LITTLE_ENDIAN) #defineBOOST_BIG_ENDIAN #defineBOOST_BYTE_ORDER4321 #elifdefined(_LITTLE_ENDIAN)&&!defined(_BIG_ENDIAN)||\ defined(__LITTLE_ENDIAN__)&&!defined(__BIG_ENDIAN__)||\ defined(_STLP_LITTLE_ENDIAN)&&!defined(_STLP_BIG_ENDIAN) #defineBOOST_LITTLE_ENDIAN #defineBOOST_BYTE_ORDER1234 #elifdefined(__sparc)||defined(__sparc__)\ ||defined(_POWER)||defined(__powerpc__)\ ||defined(__ppc__)||defined(__hpux)||defined(__hppa)\ ||defined(_MIPSEB)||defined(_POWER)\ ||defined(__s390__) #defineBOOST_BIG_ENDIAN #defineBOOST_BYTE_ORDER4321 #elifdefined(__i386__)||defined(__alpha__)\ ||defined(__ia64)||defined(__ia64__)\ ||defined(_M_IX86)||defined(_M_IA64)\ ||defined(_M_ALPHA)||defined(__amd64)\ ||defined(__amd64__)||defined(_M_AMD64)\ ||defined(__x86_64)||defined(__x86_64__)\ ||defined(_M_X64)||defined(__bfin__) #defineBOOST_LITTLE_ENDIAN #defineBOOST_BYTE_ORDER1234 #else #errorThefileboost/detail/endian.hppneedstobesetupforyourCPUtype. #endif #endif