Add xtadkgen tool and bump LLVM version to 22.1.2
All checks were successful
Builds / XTchain (minimal, windows) (push) Successful in 2m14s
Builds / XTchain (minimal, linux) (push) Successful in 2m34s
Builds / XTchain (full, linux) (push) Successful in 59m54s
Builds / XTchain (full, windows) (push) Successful in 1h24m50s

This commit is contained in:
2026-04-01 22:50:52 +02:00
parent 921e5b0b92
commit 94cef5522d
2 changed files with 168 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
# LLVM Settings
LLVMDIR="${SRCDIR}/llvm"
LLVMTAG="llvmorg-22.1.0"
LLVMTAG="llvmorg-22.1.2"
LLVMVCS="https://github.com/llvm/llvm-project.git"
# Mtools Settings
@@ -408,7 +408,7 @@ xtchain_build()
echo ">>> Building XTchain tools ..."
mkdir -p ${BINDIR}/bin
mkdir -p ${BINDIR}/lib/xtchain
for EXEC in bin2c diskimg exetool xtcspecc; do
for EXEC in bin2c diskimg exetool xtadkgen xtcspecc; do
if [ ! -e ${BINDIR}/bin/${EXEC} ]; then
${CCOMPILER} ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}
fi