Overview
Comment: | Add platform define for Elbrus 2000 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3a9ef7d5ccb0dbf8e2f68cc3717725bb |
User & Date: | js on 2020-12-12 22:36:13 |
Other Links: | manifest | tags |
Context
2020-12-15
| ||
19:16 | ofhttp: Avoid passing nil to OF_LOCALIZED check-in: 1e07e91324 user: js tags: trunk | |
2020-12-12
| ||
22:36 | Add platform define for Elbrus 2000 check-in: 3a9ef7d5cc user: js tags: trunk | |
22:31 | Remove OF_*_ASM defines check-in: c859e2230c user: js tags: trunk | |
Changes
Modified src/platform.h from [40ddf7ef54] to [7c77ac8783].
︙ | ︙ | |||
94 95 96 97 98 99 100 101 102 103 104 105 106 107 | # 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 | > > | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | # define OF_RISC_V_64 #elif defined(__riscv) # define OF_RISC_V #elif defined(__s390x__) # define OF_S390X #elif defined(__s390__) # define OF_S390 #elif defined(__e2k__) # define OF_ELBRUS_2000 #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 |
︙ | ︙ |