Overview
| Comment: | platform.h: Add define for S390(x) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
44878855a86fa3f820eb77b9ec8b210a |
| User & Date: | js on 2020-05-02 16:27:39 |
| Other Links: | manifest | tags |
Context
|
2020-05-02
| ||
| 19:08 | More readable defines for source file names (check-in: d16a70ac20 user: js tags: trunk) | |
| 16:27 | platform.h: Add define for S390(x) (check-in: 44878855a8 user: js tags: trunk) | |
| 15:25 | OFSPXSocket: Make async connect work (check-in: 6a6f7fb146 user: js tags: trunk) | |
Changes
Modified src/platform.h from [5334ff113e] to [40ddf7ef54].
| ︙ | ︙ | |||
86 87 88 89 90 91 92 | # endif # if defined(__mc68020__) || defined(OF_M68030) # define OF_M68020 # endif # if defined(__mc68010__) || defined(OF_M68020) # define OF_M68010 # endif | | | | | > > > | | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# endif
# if defined(__mc68020__) || defined(OF_M68030)
# define OF_M68020
# endif
# if defined(__mc68010__) || defined(OF_M68020)
# define OF_M68010
# endif
#elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64
# define OF_RISC_V_64
#elif defined(__riscv)
# define OF_RISC_V
#elif defined(__s390x__)
# define OF_S390X
#elif defined(__s390__)
# define OF_S390
#endif
#if defined(__APPLE__)
# include <TargetConditionals.h>
# if (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) || \
(defined(TARGET_OS_SIMULATOR) && TARGET_OS_SIMULATOR)
# define OF_IOS
|
| ︙ | ︙ |