ARM: Be aware of ARMEL and ARMEL
* My BeagleBone gcc defines __ARMEL__ but not __ARM__ which breaks the native tool builds * As ARM was originally Little Endian, we assume __ARM__ means as such. * Look for Big Endian ARM and define the needed big endian preprocessors
This commit is contained in:
@@ -428,7 +428,7 @@ extern void ktrace_vprintf(const char *format, va_list args);
|
||||
# define B_MAX_CPU_COUNT 8
|
||||
#elif __M68K__
|
||||
# define B_MAX_CPU_COUNT 1
|
||||
#elif __ARM__
|
||||
#elif __ARM__ || __ARMEL__ || __ARMEB__
|
||||
# define B_MAX_CPU_COUNT 1
|
||||
#elif __MIPSEL__
|
||||
# define B_MAX_CPU_COUNT 1
|
||||
|
||||
Reference in New Issue
Block a user