Skip to content

Commit

Permalink
add __riscv to little endian architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwilj committed Nov 3, 2023
1 parent ffd9467 commit daa9d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core_api/fsw/inc/cfe_endian.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#elif defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN || defined(__LITTLE_ENDIAN__) || defined(__ARMEL__) || \
defined(__THUMBEL__) || defined(__AARCH64EL__) || defined(_MIPSEL) || defined(__MIPSEL) || defined(__MIPSEL__) || \
defined(__i386) || defined(__i386__) || defined(__i686) || defined(__i686__) || defined(__x86_64) || \
defined(__x86_64__)
defined(__x86_64__) || defined(__riscv)
/* It is a little-endian target architecture */
#define SOFTWARE_LITTLE_BIT_ORDER
#else
Expand Down

0 comments on commit daa9d5b

Please sign in to comment.