Overview
Comment: | Add SerenityOS to platform.h |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4853f41b75f5035007cba73ac9d32f1a |
User & Date: | js on 2024-04-24 22:52:08 |
Other Links: | manifest | tags |
Context
2024-04-27
| ||
01:55 | GitHub Actions: Replace macos-latest with macos-12 check-in: 799dbd0e16 user: js tags: trunk | |
2024-04-24
| ||
22:52 | Add SerenityOS to platform.h check-in: 4853f41b75 user: js tags: trunk | |
22:39 | Simplify detection of exception type check-in: 8b0ab1157c user: js tags: trunk | |
Changes
Modified src/platform.h from [b44c54e58f] to [37d4dfa836].
︙ | ︙ | |||
153 154 155 156 157 158 159 160 161 162 163 164 165 166 | # define OF_MSDOS #elif defined(__riscos__) # define OF_ACORN_RISC_OS #elif defined(__MINT__) # define OF_MINT #elif defined(__gnu_hurd__) # define OF_HURD #endif #ifdef __GLIBC__ # define OF_GLIBC #endif #if defined(__ELF__) | > > | 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | # define OF_MSDOS #elif defined(__riscos__) # define OF_ACORN_RISC_OS #elif defined(__MINT__) # define OF_MINT #elif defined(__gnu_hurd__) # define OF_HURD #elif defined(__serenity__) # define OF_SERENITYOS #endif #ifdef __GLIBC__ # define OF_GLIBC #endif #if defined(__ELF__) |
︙ | ︙ |