|
From: kosmirror <kos...@us...> - 2025-08-25 13:53:27
|
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 efd7da8be7fa2808899d3bcaa86cd29c3b56262f (commit)
from cbb2ce8297d47ba5c7f02eacf50724a1f301b2a9 (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 efd7da8be7fa2808899d3bcaa86cd29c3b56262f
Author: QuzarDC <qu...@co...>
Date: Mon Aug 25 02:32:28 2025 -0400
cmake: Fix building of libGL by specifying `ar` and `ranlib` wrappers
-----------------------------------------------------------------------
Summary of changes:
utils/cmake/kallistios.toolchain.cmake | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/utils/cmake/kallistios.toolchain.cmake b/utils/cmake/kallistios.toolchain.cmake
index fac0d677..59d8eed1 100644
--- a/utils/cmake/kallistios.toolchain.cmake
+++ b/utils/cmake/kallistios.toolchain.cmake
@@ -58,6 +58,14 @@ set(CMAKE_CXX_COMPILER ${KOS_BASE}/utils/build_wrappers/kos-c++)
set(CMAKE_OBJC_COMPILER ${KOS_BASE}/utils/build_wrappers/kos-cc)
set(CMAKE_OBJCXX_COMPILER ${KOS_BASE}/utils/build_wrappers/kos-c++)
+set(CMAKE_ASM_COMPILER_AR ${KOS_BASE}/utils/build_wrappers/kos-ar)
+set(CMAKE_C_COMPILER_AR ${KOS_BASE}/utils/build_wrappers/kos-ar)
+set(CMAKE_CXX_COMPILER_AR ${KOS_BASE}/utils/build_wrappers/kos-ar)
+
+set(CMAKE_ASM_COMPILER_RANLIB ${KOS_BASE}/utils/build_wrappers/kos-ranlib)
+set(CMAKE_C_COMPILER_RANLIB ${KOS_BASE}/utils/build_wrappers/kos-ranlib)
+set(CMAKE_CXX_COMPILER_RANLIB ${KOS_BASE}/utils/build_wrappers/kos-ranlib)
+
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
# Never use the CMAKE_FIND_ROOT_PATH to find programs with find_program()
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|