ObjFW  Check-in [b43e14f47c]

Overview
Comment:platform.h: Add RISC-V
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b43e14f47cfb1bde3aca8ef14b2f06d314140aa476c5ead5e1a0644c2b8b7de8
User & Date: js on 2018-06-27 23:32:07
Other Links: manifest | tags
Context
2018-06-30
00:41
OFApplication: Add property for the active sandbox check-in: 8eedb5a39a user: js tags: trunk
2018-06-27
23:32
platform.h: Add RISC-V check-in: b43e14f47c user: js tags: trunk
03:32
Update config.guess and config.sub check-in: 19e5df0ca4 user: js tags: trunk
Changes

Modified src/platform.h from [e9d4861f7a] to [3b74e6b7fa].

85
86
87
88
89
90
91





92
93
94
95
96
97
98
#  define OF_M68030
# endif
# if defined(__mc68020__) || defined(OF_M68030)
#  define OF_M68020
# endif
# if defined(__mc68010__) || defined(OF_M68020)
#  define OF_M68010





# endif
#endif

#if defined(__APPLE__)
# include <TargetConditionals.h>
# if (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) || \
    (defined(TARGET_OS_SIMULATOR) && TARGET_OS_SIMULATOR)







>
>
>
>
>







85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#  define OF_M68030
# endif
# if defined(__mc68020__) || defined(OF_M68030)
#  define OF_M68020
# endif
# if defined(__mc68010__) || defined(OF_M68020)
#  define OF_M68010
# endif
# if defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
#  define OF_RISCV64
# elif defined(__riscv)
#  define OF_RISCV
# endif
#endif

#if defined(__APPLE__)
# include <TargetConditionals.h>
# if (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) || \
    (defined(TARGET_OS_SIMULATOR) && TARGET_OS_SIMULATOR)