1
Fork 0

Add more missing when statements (in addition to )

This commit is contained in:
FourteenBrush 2024-09-21 16:53:36 +02:00
commit 340dc9ce2e
No known key found for this signature in database
GPG key ID: DF8312C105596025

View file

@ -74,9 +74,15 @@ Odin_Arch_Type :: enum int {
wasm64p32,
}
@builtin
ODIN_OS_STRING: string
@builtin
ODIN_ARCH: Odin_Arch_Type
@builtin
ODIN_ARCH_STRING: string
Odin_Build_Mode_Type :: enum int {
Executable,
Dynamic,
@ -110,6 +116,9 @@ Odin_Platform_Subtarget_Type :: enum int {
iOS,
}
@builtin
ODIN_ENDIAN_STRING: string
@builtin
ODIN_PLATFORM_SUBTARGET: Odin_Platform_Subtarget_Type
@ -168,3 +177,21 @@ ODIN_NO_RTTI: bool
@builtin
ODIN_COMPILE_TIMESTAMP: int
@builtin
ODIN_NO_DYNAMIC_LITERALS: bool
@builtin
ODIN_USE_SEPARATE_MODULES: bool
@builtin
ODIN_TEST: bool
@builtin
ODIN_FOREIGN_ERROR_PROCEDURES: bool
@builtin
ODIN_BUILD_PROJECT_NAME: string
@builtin
ODIN_VALGRIND_SUPPORT: bool