From 2beccf0bb21e2f1e844db69bd87a5fa0e8a53f46 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 21 Mar 2013 00:00:30 -0500 Subject: [PATCH] Add Blackfin CPU detection. Use blackfin detection in endian detection. --- include/boost/predef/architecture.h | 1 + include/boost/predef/endian.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/predef/architecture.h b/include/boost/predef/architecture.h index b6adfdd..c7d0f24 100644 --- a/include/boost/predef/architecture.h +++ b/include/boost/predef/architecture.h @@ -11,6 +11,7 @@ http://www.boost.org/LICENSE_1_0.txt) #include #include #include +#include #include #include #include diff --git a/include/boost/predef/endian.h b/include/boost/predef/endian.h index eb3fa5f..deb2381 100644 --- a/include/boost/predef/endian.h +++ b/include/boost/predef/endian.h @@ -144,7 +144,8 @@ information and acquired knowledge: # endif # if BOOST_ARCH_AMD64 || \ BOOST_ARCH_IA64 || \ - BOOST_ARCH_X86 + BOOST_ARCH_X86 || \ + BOOST_ARCH_BLACKFIN # undef BOOST_ENDIAN_LITTLE_BYTE # define BOOST_ENDIAN_LITTLE_BYTE BOOST_VERSION_NUMBER_AVAILABLE # endif