forked from xt-sys/xtchain
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
ef1065278b | |||
391a58dffc | |||
bd4b7763d4 | |||
33ce9e38d2 | |||
409aa4ffb4 |
@ -18,12 +18,12 @@ GENERIC="generic-w64-mingw32"
|
|||||||
|
|
||||||
# CMake Settings
|
# CMake Settings
|
||||||
CMAKEDIR="${SRCDIR}/cmake"
|
CMAKEDIR="${SRCDIR}/cmake"
|
||||||
CMAKETAG="v3.29.3"
|
CMAKETAG="v3.31.3"
|
||||||
CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
|
CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
|
||||||
|
|
||||||
# LLVM Settings
|
# LLVM Settings
|
||||||
LLVMDIR="${SRCDIR}/llvm"
|
LLVMDIR="${SRCDIR}/llvm"
|
||||||
LLVMTAG="llvmorg-18.1.7"
|
LLVMTAG="llvmorg-19.1.6"
|
||||||
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
||||||
|
|
||||||
# Make Settings
|
# Make Settings
|
||||||
@ -46,7 +46,7 @@ NINJAVCS="https://github.com/ninja-build/ninja.git"
|
|||||||
# Wine Settings
|
# Wine Settings
|
||||||
WINEDIR="${SRCDIR}/wine"
|
WINEDIR="${SRCDIR}/wine"
|
||||||
WINETAG="wine-9.8"
|
WINETAG="wine-9.8"
|
||||||
WINEVCS="git://source.winehq.org/git/wine.git"
|
WINEVCS="https://github.com/wine-mirror/wine.git"
|
||||||
|
|
||||||
|
|
||||||
# This function applies a patches to the 3rd party project
|
# This function applies a patches to the 3rd party project
|
||||||
@ -363,7 +363,7 @@ mingw_build_libs()
|
|||||||
# This function compiles and installs MINGW tools
|
# This function compiles and installs MINGW tools
|
||||||
mingw_build_tools()
|
mingw_build_tools()
|
||||||
{
|
{
|
||||||
for TOOL in gendef genidl genlib genpeimg widl; do
|
for TOOL in gendef genidl genpeimg widl; do
|
||||||
for ARCH in ${ARCHS}; do
|
for ARCH in ${ARCHS}; do
|
||||||
echo ">>> Building Mingw-w64 (tools) for ${ARCH} ..."
|
echo ">>> Building Mingw-w64 (tools) for ${ARCH} ..."
|
||||||
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-tools/${TOOL}/build-${ARCH}
|
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-tools/${TOOL}/build-${ARCH}
|
||||||
|
13
patches/cmake/v3.31.3/001-add-xtc-version-suffix.patch
Normal file
13
patches/cmake/v3.31.3/001-add-xtc-version-suffix.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
|
||||||
|
index 818109f0b7..749377d193 100644
|
||||||
|
--- a/Source/CMakeVersion.cmake
|
||||||
|
+++ b/Source/CMakeVersion.cmake
|
||||||
|
@@ -7,7 +7,7 @@ set(CMake_VERSION_IS_DIRTY 0)
|
||||||
|
|
||||||
|
# Start with the full version number used in tags. It has no dev info.
|
||||||
|
set(CMake_VERSION
|
||||||
|
- "${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}.${CMake_VERSION_PATCH}")
|
||||||
|
+ "${CMake_VERSION_MAJOR}.${CMake_VERSION_MINOR}.${CMake_VERSION_PATCH}-XTC")
|
||||||
|
if(DEFINED CMake_VERSION_RC)
|
||||||
|
set(CMake_VERSION "${CMake_VERSION}-rc${CMake_VERSION_RC}")
|
||||||
|
endif()
|
Loading…
Reference in New Issue
Block a user