diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-28 09:14:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-28 09:14:44 +0200 |
| commit | 23852c16be2ed8ae1618c1d951c9904eb40a4198 (patch) | |
| tree | fadb69f8a4ea78d5bc69b68e47e6af5bda25fa39 | |
| parent | 4c6b824658593e26595495e53e389f4b0fdc6cac (diff) | |
| parent | fa6e07d976871a9f1639bfadae708948fdb76a61 (diff) | |
Merge pull request #3647 from Feoramund/fix-core-data-comments
Make `ODIN_OS`, `ODIN_BUILD_MODE` comments congruent to underlying data
| -rw-r--r-- | base/runtime/core.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/runtime/core.odin b/base/runtime/core.odin index 66099e787..4b6a1949e 100644 --- a/base/runtime/core.odin +++ b/base/runtime/core.odin @@ -481,7 +481,9 @@ Raw_Soa_Pointer :: struct { Linux, Essence, FreeBSD, + Haiku, OpenBSD, + NetBSD, WASI, JS, Freestanding, @@ -508,6 +510,7 @@ Odin_Arch_Type :: type_of(ODIN_ARCH) Odin_Build_Mode_Type :: enum int { Executable, Dynamic, + Static, Object, Assembly, LLVM_IR, |