|
From: kosmirror <kos...@us...> - 2025-08-06 22:32:05
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 3c4ee41109de309f7d7765c3eb1c9b48b1f0f1a5 (commit)
from d4df09a2c3ef4b138840cde3467e66a1ffd9814f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3c4ee41109de309f7d7765c3eb1c9b48b1f0f1a5
Author: darc <da...@pr...>
Date: Wed Aug 6 13:35:07 2025 -0500
Define byte order for architecture in Dreamcast's CMake file
-----------------------------------------------------------------------
Summary of changes:
utils/cmake/Platform/dreamcast.cmake | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/utils/cmake/Platform/dreamcast.cmake b/utils/cmake/Platform/dreamcast.cmake
index 530369a7..22bfd4ba 100644
--- a/utils/cmake/Platform/dreamcast.cmake
+++ b/utils/cmake/Platform/dreamcast.cmake
@@ -11,4 +11,8 @@ endif()
set(CMAKE_SYSTEM_VERSION 1)
set(CMAKE_SYSTEM_PROCESSOR SH4)
set(CMAKE_SIZEOF_VOID_P 4)
+set(CMAKE_C_BYTE_ORDER LITTLE_ENDIAN)
+set(CMAKE_CXX_BYTE_ORDER LITTLE_ENDIAN)
+set(CMAKE_OBJC_BYTE_ORDER LITTLE_ENDIAN)
+set(CMAKE_OBJCXX_BYTE_ORDER LITTLE_ENDIAN)
set(PLATFORM_DREAMCAST TRUE)
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|