nuttx/arch/x86_64
YAMAMOTO Takashi 7eef194a93 intel64: Switch int64_t from long long to long
To make it match what the compiler expects.

on nuttx-ci-linux image:
    root@fec5a6192c70:/tools# gcc -dM -E - < /dev/null | grep -E "UINT(32|64)_TYPE"
    #define __UINT64_TYPE__ long unsigned int
    #define __UINT32_TYPE__ unsigned int
    root@fec5a6192c70:/tools#

on macOS:
    spacetanuki% x86_64-elf-gcc -dM -E - < /dev/null | grep -E "UINT(32|64)_TYPE"
    #define __UINT32_TYPE__ unsigned int
    #define __UINT64_TYPE__ long unsigned int
    spacetanuki%
2020-11-19 00:49:56 -08:00
..
include intel64: Switch int64_t from long long to long 2020-11-19 00:49:56 -08:00
src arch/: Add the ARCH_SRC directory to the context and clean_context 2020-10-17 22:46:27 +09:00
Kconfig arch: Add custom arch chip build support 2020-10-20 14:48:16 +08:00