Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Jun 22, 2024
1 parent 09e410c commit e64b7c0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions include/bx/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,19 @@
# elif defined(__GLIBC__)
# undef BX_CRT_GLIBC
# define BX_CRT_GLIBC (__GLIBC__ * 10000 + __GLIBC_MINOR__ * 100)
# elif defined(__MINGW32__) || defined(__MINGW64__)
# elif defined(__MINGW32__) \
|| defined(__MINGW64__)
# undef BX_CRT_MINGW
# define BX_CRT_MINGW 1
# elif defined(__apple_build_version__) || defined(__ORBIS__) || defined(__EMSCRIPTEN__) || defined(__llvm__) || defined(__HAIKU__)
# undef BX_CRT_LIBCXX
# define BX_CRT_LIBCXX 1
# elif defined(_MSC_VER)
# undef BX_CRT_MSVC
# define BX_CRT_MSVC 1
# elif defined(__apple_build_version__) \
|| BX_PLATFORM_PS4 \
|| BX_PLATFORM_EMSCRIPTEN \
|| defined(__llvm__)
# undef BX_CRT_LIBCXX
# define BX_CRT_LIBCXX 1
# endif //
#endif // !BX_CRT_NONE

Expand Down

0 comments on commit e64b7c0

Please # to comment.