mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-31 23:08:26 -04:00
[arm] add ARM compilation support (MSVC)
* Yay! * Also remove unneeded stdint.h/stdbool.h/inttypes.h
This commit is contained in:
parent
32b5987387
commit
23d71ae0f1
19 changed files with 774 additions and 591 deletions
|
@ -220,7 +220,7 @@ static __inline uint64_t bswap_64(uint64_t x)
|
|||
#elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN
|
||||
# define BB_BIG_ENDIAN 0
|
||||
# define BB_LITTLE_ENDIAN 1
|
||||
#elif defined(__386__) || defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
|
||||
#elif defined(__386__) || defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64) || (defined(_M_ARM))
|
||||
# define BB_BIG_ENDIAN 0
|
||||
# define BB_LITTLE_ENDIAN 1
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue