diff options
author | Ciro Santilli <ciro.santilli@arm.com> | 2018-11-21 16:27:28 +0000 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@arm.com> | 2018-11-27 11:46:23 +0000 |
commit | 90dfafa2c4333a4d9aff7e296554c68752880825 (patch) | |
tree | 3f2250550f0f88be957e311777b2fbf108fbcaf5 | |
parent | ecf68dfff4a23c785b523d096554d09dfa295cbd (diff) | |
download | gem5-90dfafa2c4333a4d9aff7e296554c68752880825.tar.xz |
systemc: set endianess to fix build for ARM host
ARM architectures were not covered in the endianess #if cases, which
lead the build to fail on an arm host with message:
error The file boost/detail/endian.hpp needs to be set up for your CPU
type.
Change-Id: Id012cf37810da113174a51746e290e25138739cb
Reviewed-on: https://gem5-review.googlesource.com/c/14595
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
-rw-r--r-- | src/systemc/ext/utils/endian.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/systemc/ext/utils/endian.hh b/src/systemc/ext/utils/endian.hh index fcf47e824..86e05ccaf 100644 --- a/src/systemc/ext/utils/endian.hh +++ b/src/systemc/ext/utils/endian.hh @@ -67,7 +67,8 @@ || defined(_M_ALPHA) || defined(__amd64) \ || defined(__amd64__) || defined(_M_AMD64) \ || defined(__x86_64) || defined(__x86_64__) \ - || defined(_M_X64) || defined(__bfin__) + || defined(_M_X64) || defined(__bfin__) \ + || defined(__arm__) || defined(__aarch64__) # define SC_BOOST_LITTLE_ENDIAN # define SC_BOOST_BYTE_ORDER 1234 |