mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-29 19:00:06 +00:00
Minimally support compiling Odin on FreeBSD arm64
This is enough to get Odin itself compiling and the demo running.
This commit is contained in:
@@ -3009,6 +3009,8 @@ gb_inline u32 gb_thread_current_id(void) {
|
||||
thread_id = gettid();
|
||||
#elif defined(GB_SYSTEM_HAIKU)
|
||||
thread_id = find_thread(NULL);
|
||||
#elif defined(GB_SYSTEM_FREEBSD)
|
||||
thread_id = pthread_getthreadid_np();
|
||||
#else
|
||||
#error Unsupported architecture for gb_thread_current_id()
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user