Overview
Comment: | platform.h: Add SuperH |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
43af96a7c89ab9e32db1e60929109c9e |
User & Date: | js on 2024-07-27 23:48:34 |
Other Links: | manifest | tags |
Context
2024-07-28
| ||
14:45 | Add support for Windows-1250 encoding check-in: 4d82cae50d user: js tags: trunk | |
2024-07-27
| ||
23:48 | platform.h: Add SuperH check-in: 43af96a7c8 user: js tags: trunk | |
23:33 | forwardingTargetForSelector: for LoongArch 64/ELF check-in: 573f1ca9aa user: js tags: trunk | |
Changes
Modified src/platform.h from [427b9aeec0] to [74c3d2b202].
︙ | ︙ | |||
97 98 99 100 101 102 103 104 105 106 107 108 109 110 | # define OF_RISCV64 #elif defined(__riscv) # define OF_RISCV #elif defined(__s390x__) # define OF_S390X #elif defined(__s390__) # define OF_S390 #elif defined(__e2k__) # define OF_ELBRUS_2000 #elif defined(__loongarch64) # define OF_LOONGARCH64 #endif #if defined(__APPLE__) | > > | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | # define OF_RISCV64 #elif defined(__riscv) # define OF_RISCV #elif defined(__s390x__) # define OF_S390X #elif defined(__s390__) # define OF_S390 #elif defined(__sh__) # define OF_SUPERH #elif defined(__e2k__) # define OF_ELBRUS_2000 #elif defined(__loongarch64) # define OF_LOONGARCH64 #endif #if defined(__APPLE__) |
︙ | ︙ |