forked from xt-sys/xtchain
Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
737dda2960
|
|||
0d468bf245
|
|||
b0baae79ba
|
|||
ecd243ed0d
|
|||
b9d0458a65
|
|||
7fb2227034
|
|||
0e49773bf4
|
|||
5684623164
|
|||
14f2f7cf1f
|
|||
37e38daf36
|
|||
b65a92d147
|
|||
173b6d6dd0
|
|||
2da20a4eba
|
|||
c9ef8a6484
|
|||
be63d61cf4
|
|||
9fd40e9617
|
|||
116d309962
|
|||
6845594e6a
|
|||
69ae9afb88
|
|||
3ae3ceaabb
|
|||
361c0a1cdb
|
|||
d6531be5ee
|
|||
771d3783fa
|
|||
2e7c7ec1d7
|
|||
99f0b83ac7
|
|||
9cc7d052dd
|
|||
abefcf8fe2
|
|||
015bc8a666
|
|||
546d8718d2
|
|||
a65685de5c
|
|||
f9af39e058
|
@@ -1,8 +0,0 @@
|
|||||||
kind: pipeline
|
|
||||||
type: exec
|
|
||||||
name: XT Toolchain Pipeline
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Compile XT Toolchain
|
|
||||||
commands:
|
|
||||||
- sh build-linux.sh
|
|
20
.github/workflows/build.yml
vendored
Normal file
20
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
name: Builds
|
||||||
|
run-name: ${{ github.actor }} runs Gitea Actions
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
XTChain:
|
||||||
|
runs-on: oscw
|
||||||
|
container:
|
||||||
|
image: codingworkshop/oscw-runner:latest
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Build XTChain
|
||||||
|
run: CORES=10 ./build-linux.sh
|
||||||
|
- name: Publish binaries
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
env:
|
||||||
|
OSCW_GITHUB_USERNAME: ${{ secrets.OSCW_GITHUB_USERNAME }}
|
||||||
|
OSCW_GITHUB_PASSWORD: ${{ secrets.OSCW_GITHUB_PASSWORD }}
|
||||||
|
run: github_publish $OSCW_GITHUB_USERNAME $OSCW_GITHUB_PASSWORD $(ls xtchain-*-linux.tar.zst)
|
22
README.md
22
README.md
@@ -1,3 +1,23 @@
|
|||||||
|
<p align=center>
|
||||||
|
<a href="https://git.codingworkshop.eu.org/xt-sys/xtchain">
|
||||||
|
<img alt="GIT Repository" src="https://img.shields.io/badge/Source-GIT-purple">
|
||||||
|
</a>
|
||||||
|
<a href="https://git.codingworkshop.eu.org/xt-sys/xtchain/actions">
|
||||||
|
<img alt="Build Status" src="https://codingworkshop.eu.org/actions.php?project=xt-sys/xtchain">
|
||||||
|
</a>
|
||||||
|
<a href="https://git.codingworkshop.eu.org/xt-sys/xtchain/src/branch/master/COPYING.md">
|
||||||
|
<img alt="License" src="https://img.shields.io/badge/License-GPLv3-blue.svg">
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/sponsors/xt-sys/">
|
||||||
|
<img alt="Sponsors" src="https://img.shields.io/badge/Sponsor-%E2%9D%A4-red?logo=GitHub">
|
||||||
|
</a>
|
||||||
|
<a href="https://discord.com/invite/3zgjQDVmAe">
|
||||||
|
<img alt="Discord" src="https://img.shields.io/discord/723186294540206100?label=Chat">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## XT Toolchain
|
## XT Toolchain
|
||||||
This is a LLVM/Clang/LLD based mingw-w64 toolchain. It currently supports C and C++, and provides
|
This is a LLVM/Clang/LLD based mingw-w64 toolchain. It currently supports C and C++, and provides
|
||||||
a variety of tools including IDL, message and resource compilers. The XT Toolchain is also the
|
a variety of tools including IDL, message and resource compilers. The XT Toolchain is also the
|
||||||
@@ -11,10 +31,10 @@ Benefits of a LLVM based MinGW toolchain are:
|
|||||||
|
|
||||||
This software includes:
|
This software includes:
|
||||||
* CMake
|
* CMake
|
||||||
|
* GNU Assembler
|
||||||
* LLVM
|
* LLVM
|
||||||
* Make
|
* Make
|
||||||
* Mingw-w64
|
* Mingw-w64
|
||||||
* NASM
|
|
||||||
* Ninja
|
* Ninja
|
||||||
* Wine
|
* Wine
|
||||||
|
|
||||||
|
166
build-linux.sh
166
build-linux.sh
@@ -16,14 +16,19 @@ WRKDIR="$(pwd)"
|
|||||||
ARCHS="aarch64 armv7 i686 x86_64"
|
ARCHS="aarch64 armv7 i686 x86_64"
|
||||||
GENERIC="generic-w64-mingw32"
|
GENERIC="generic-w64-mingw32"
|
||||||
|
|
||||||
|
# Binutils Settings
|
||||||
|
BINUTILSDIR="${SRCDIR}/binutils"
|
||||||
|
BINUTILSTAG="binutils-2_40"
|
||||||
|
BINUTILSVCS="git://sourceware.org/git/binutils-gdb.git"
|
||||||
|
|
||||||
# CMake Settings
|
# CMake Settings
|
||||||
CMAKEDIR="${SRCDIR}/cmake"
|
CMAKEDIR="${SRCDIR}/cmake"
|
||||||
CMAKETAG="v3.23.1"
|
CMAKETAG="v3.24.2"
|
||||||
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-14.0.6"
|
LLVMTAG="llvmorg-17.0.1"
|
||||||
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
||||||
|
|
||||||
# Make Settings
|
# Make Settings
|
||||||
@@ -34,15 +39,10 @@ MAKEVCS="git://git.savannah.gnu.org/make"
|
|||||||
# Mingw-w64 Settings
|
# Mingw-w64 Settings
|
||||||
MINGWDIR="${SRCDIR}/mingw-w64"
|
MINGWDIR="${SRCDIR}/mingw-w64"
|
||||||
MINGWLIB="ucrt"
|
MINGWLIB="ucrt"
|
||||||
MINGWTAG="v10.0.0"
|
MINGWTAG="master"
|
||||||
MINGWNTV="0x601"
|
MINGWNTV="0x601"
|
||||||
MINGWVCS="https://github.com/mirror/mingw-w64.git"
|
MINGWVCS="https://github.com/mirror/mingw-w64.git"
|
||||||
|
|
||||||
# NASM Settings
|
|
||||||
NASMDIR="${SRCDIR}/nasm"
|
|
||||||
NASMTAG="nasm-2.15.05"
|
|
||||||
NASMVCS="https://github.com/netwide-assembler/nasm.git"
|
|
||||||
|
|
||||||
# Ninja Settings
|
# Ninja Settings
|
||||||
NINJADIR="${SRCDIR}/ninja"
|
NINJADIR="${SRCDIR}/ninja"
|
||||||
NINJATAG="v1.11.0"
|
NINJATAG="v1.11.0"
|
||||||
@@ -79,6 +79,51 @@ apply_patches()
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# This function compiles and installs GNU BINUTILS
|
||||||
|
binutils_build()
|
||||||
|
{
|
||||||
|
echo ">>> Building BINUTILS ..."
|
||||||
|
for ARCH in ${ARCHS}; do
|
||||||
|
[ -z ${CLEAN} ] || rm -rf ${BINUTILSDIR}/build-${ARCH}
|
||||||
|
mkdir -p ${BINUTILSDIR}/build-${ARCH}
|
||||||
|
cd ${BINUTILSDIR}/build-${ARCH}
|
||||||
|
case ${ARCH} in
|
||||||
|
"armv7")
|
||||||
|
TARGET="arm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
TARGET="${ARCH}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
../configure \
|
||||||
|
--target=${TARGET}-w64-mingw32 \
|
||||||
|
--disable-binutils \
|
||||||
|
--disable-gdb \
|
||||||
|
--disable-gprof \
|
||||||
|
--disable-ld \
|
||||||
|
--disable-multilib \
|
||||||
|
--disable-nls \
|
||||||
|
--disable-werror \
|
||||||
|
--with-zlib=yes
|
||||||
|
make -j${CORES}
|
||||||
|
cp ${BINUTILSDIR}/build-${ARCH}/gas/as-new ${BINDIR}/bin/${ARCH}-w64-mingw32-gas
|
||||||
|
done
|
||||||
|
cd ${WRKDIR}
|
||||||
|
}
|
||||||
|
|
||||||
|
# This function downloads GNU BINUTILS from VCS
|
||||||
|
binutils_fetch()
|
||||||
|
{
|
||||||
|
if [ ! -d ${BINUTILSDIR} ]; then
|
||||||
|
echo ">>> Downloading BINUTILS ..."
|
||||||
|
git clone ${BINUTILSVCS} ${BINUTILSDIR}
|
||||||
|
cd ${BINUTILSDIR}
|
||||||
|
git checkout tags/${BINUTILSTAG}
|
||||||
|
apply_patches ${BINUTILSDIR##*/} ${BINUTILSTAG##*-}
|
||||||
|
cd ${WRKDIR}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# This function compiles and installs CMAKE
|
# This function compiles and installs CMAKE
|
||||||
cmake_build()
|
cmake_build()
|
||||||
{
|
{
|
||||||
@@ -136,18 +181,18 @@ llvm_build()
|
|||||||
done
|
done
|
||||||
mkdir -p ${LLVMDIR}/llvm/build
|
mkdir -p ${LLVMDIR}/llvm/build
|
||||||
cd ${LLVMDIR}/llvm/build
|
cd ${LLVMDIR}/llvm/build
|
||||||
cmake \
|
cmake -G Ninja \
|
||||||
-DCMAKE_BUILD_TYPE="Release" \
|
-DCMAKE_BUILD_TYPE="Release" \
|
||||||
-DCMAKE_INSTALL_PREFIX=${BINDIR} \
|
-DCMAKE_INSTALL_PREFIX=${BINDIR} \
|
||||||
-DLLDB_INCLUDE_TESTS=FALSE \
|
-DLLDB_INCLUDE_TESTS=FALSE \
|
||||||
-DLLVM_ENABLE_ASSERTIONS=FALSE \
|
-DLLVM_ENABLE_ASSERTIONS=FALSE \
|
||||||
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld" \
|
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;lldb" \
|
||||||
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
|
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
|
||||||
-DLLVM_LINK_LLVM_DYLIB=ON \
|
-DLLVM_LINK_LLVM_DYLIB=ON \
|
||||||
-DLLVM_TARGETS_TO_BUILD="$(echo ${LLVM_ARCHS[@]} | tr ' ' ';')" \
|
-DLLVM_TARGETS_TO_BUILD="$(echo ${LLVM_ARCHS[@]} | tr ' ' ';')" \
|
||||||
-DLLVM_TOOLCHAIN_TOOLS="llvm-addr2line;llvm-ar;llvm-as;llvm-cov;llvm-cvtres;llvm-dlltool;llvm-ml;llvm-nm;llvm-objdump;llvm-objcopy;llvm-pdbutil;llvm-profdata;llvm-ranlib;llvm-rc;llvm-readelf;llvm-readobj;llvm-strings;llvm-strip;llvm-symbolizer;llvm-windres" \
|
-DLLVM_TOOLCHAIN_TOOLS="llvm-addr2line;llvm-ar;llvm-as;llvm-cov;llvm-cvtres;llvm-dlltool;llvm-lib;llvm-ml;llvm-nm;llvm-objdump;llvm-objcopy;llvm-pdbutil;llvm-profdata;llvm-ranlib;llvm-rc;llvm-readelf;llvm-readobj;llvm-strings;llvm-strip;llvm-symbolizer;llvm-windres" \
|
||||||
..
|
..
|
||||||
make -j${CORES} install/strip
|
ninja install/strip
|
||||||
cd ${WRKDIR}
|
cd ${WRKDIR}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -159,15 +204,17 @@ llvm_build_libs()
|
|||||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/runtimes/build-${ARCH}
|
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/runtimes/build-${ARCH}
|
||||||
mkdir -p ${LLVMDIR}/runtimes/build-${ARCH}
|
mkdir -p ${LLVMDIR}/runtimes/build-${ARCH}
|
||||||
cd ${LLVMDIR}/runtimes/build-${ARCH}
|
cd ${LLVMDIR}/runtimes/build-${ARCH}
|
||||||
cmake \
|
cmake -G Ninja \
|
||||||
-DCMAKE_BUILD_TYPE="Release" \
|
-DCMAKE_BUILD_TYPE="Release" \
|
||||||
-DCMAKE_INSTALL_PREFIX=${BINDIR}/${ARCH}-w64-mingw32 \
|
-DCMAKE_INSTALL_PREFIX="${BINDIR}/${ARCH}-w64-mingw32" \
|
||||||
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
||||||
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||||
-DCMAKE_C_COMPILER_WORKS=1 \
|
-DCMAKE_C_COMPILER_WORKS=1 \
|
||||||
|
-DCMAKE_C_FLAGS_INIT=-mguard=cf \
|
||||||
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
||||||
-DCMAKE_CXX_COMPILER_TARGET=${ARCH}-w64-windows-gnu \
|
-DCMAKE_CXX_COMPILER_TARGET=${ARCH}-w64-windows-gnu \
|
||||||
-DCMAKE_CXX_COMPILER_WORKS=1 \
|
-DCMAKE_CXX_COMPILER_WORKS=1 \
|
||||||
|
-DCMAKE_CXX_FLAGS_INIT=-mguard=cf \
|
||||||
-DCMAKE_CROSSCOMPILING=TRUE \
|
-DCMAKE_CROSSCOMPILING=TRUE \
|
||||||
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
||||||
-DCMAKE_SYSTEM_NAME="Windows" \
|
-DCMAKE_SYSTEM_NAME="Windows" \
|
||||||
@@ -175,13 +222,13 @@ llvm_build_libs()
|
|||||||
-DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" \
|
-DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" \
|
||||||
-DLIBUNWIND_USE_COMPILER_RT=TRUE \
|
-DLIBUNWIND_USE_COMPILER_RT=TRUE \
|
||||||
-DLIBUNWIND_ENABLE_SHARED=TRUE \
|
-DLIBUNWIND_ENABLE_SHARED=TRUE \
|
||||||
-DLIBUNWIND_ENABLE_STATIC=FALSE \
|
-DLIBUNWIND_ENABLE_STATIC=TRUE \
|
||||||
-DLIBCXX_USE_COMPILER_RT=ON \
|
-DLIBCXX_USE_COMPILER_RT=ON \
|
||||||
-DLIBCXX_ENABLE_SHARED=TRUE \
|
-DLIBCXX_ENABLE_SHARED=TRUE \
|
||||||
-DLIBCXX_ENABLE_STATIC=FALSE \
|
-DLIBCXX_ENABLE_STATIC=TRUE \
|
||||||
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF \
|
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF \
|
||||||
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=TRUE \
|
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=TRUE \
|
||||||
-DLIBCXX_CXX_ABI=libcxxabi \
|
-DLIBCXX_CXX_ABI="libcxxabi" \
|
||||||
-DLIBCXX_LIBDIR_SUFFIX="" \
|
-DLIBCXX_LIBDIR_SUFFIX="" \
|
||||||
-DLIBCXX_INCLUDE_TESTS=FALSE \
|
-DLIBCXX_INCLUDE_TESTS=FALSE \
|
||||||
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=FALSE \
|
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=FALSE \
|
||||||
@@ -190,8 +237,8 @@ llvm_build_libs()
|
|||||||
-DLIBCXXABI_LIBDIR_SUFFIX="" \
|
-DLIBCXXABI_LIBDIR_SUFFIX="" \
|
||||||
-DLIBCXXABI_USE_LLVM_UNWINDER=ON \
|
-DLIBCXXABI_USE_LLVM_UNWINDER=ON \
|
||||||
..
|
..
|
||||||
make -j${CORES}
|
ninja
|
||||||
make install
|
ninja install
|
||||||
done
|
done
|
||||||
cd ${WRKDIR}
|
cd ${WRKDIR}
|
||||||
}
|
}
|
||||||
@@ -204,21 +251,28 @@ llvm_build_runtime()
|
|||||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/compiler-rt/build-${ARCH}
|
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||||
mkdir -p ${LLVMDIR}/compiler-rt/build-${ARCH}
|
mkdir -p ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||||
cd ${LLVMDIR}/compiler-rt/build-${ARCH}
|
cd ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||||
cmake \
|
cmake -G Ninja \
|
||||||
-DCMAKE_BUILD_TYPE="Release" \
|
-DCMAKE_BUILD_TYPE="Release" \
|
||||||
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
||||||
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||||
-DCMAKE_C_COMPILER_TARGET="${ARCH}-windows-gnu" \
|
-DCMAKE_C_COMPILER_TARGET="${ARCH}-windows-gnu" \
|
||||||
|
-DCMAKE_C_FLAGS_INIT="-mguard=cf" \
|
||||||
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
||||||
-DCMAKE_INSTALL_PREFIX=${BINDIR}/lib/clang/${LLVMTAG##*-} \
|
-DCMAKE_CXX_FLAGS_INIT="-mguard=cf" \
|
||||||
|
-DCMAKE_FIND_ROOT_PATH="${BINDIR}/${ARCH}-w64-mingw32" \
|
||||||
|
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
|
||||||
|
-DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=$(${BINDIR}/bin/${ARCH}-w64-mingw32-clang --print-resource-dir) \
|
||||||
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
||||||
-DCMAKE_SYSTEM_NAME="Windows" \
|
-DCMAKE_SYSTEM_NAME="Windows" \
|
||||||
|
-DCOMPILER_RT_BUILD_BUILTINS=TRUE \
|
||||||
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=TRUE \
|
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=TRUE \
|
||||||
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=TRUE \
|
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=TRUE \
|
||||||
-DSANITIZER_CXX_ABI=libc++ \
|
-DLLVM_CONFIG_PATH="" \
|
||||||
|
-DSANITIZER_CXX_ABI="libc++" \
|
||||||
../lib/builtins
|
../lib/builtins
|
||||||
make -j${CORES}
|
ninja
|
||||||
make install
|
ninja install
|
||||||
done
|
done
|
||||||
cd ${WRKDIR}
|
cd ${WRKDIR}
|
||||||
}
|
}
|
||||||
@@ -302,6 +356,7 @@ mingw_build_crt()
|
|||||||
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
||||||
--with-sysroot=${BINDIR} \
|
--with-sysroot=${BINDIR} \
|
||||||
--with-default-msvcrt=${MINGWLIB} \
|
--with-default-msvcrt=${MINGWLIB} \
|
||||||
|
--enable-cfguard \
|
||||||
${FLAGS}
|
${FLAGS}
|
||||||
make -j${CORES}
|
make -j${CORES}
|
||||||
make install
|
make install
|
||||||
@@ -347,7 +402,9 @@ mingw_build_libs()
|
|||||||
../configure \
|
../configure \
|
||||||
--host=${ARCH}-w64-mingw32 \
|
--host=${ARCH}-w64-mingw32 \
|
||||||
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
||||||
--libdir=${BINDIR}/${ARCH}-w64-mingw32/lib
|
--libdir=${BINDIR}/${ARCH}-w64-mingw32/lib \
|
||||||
|
CFLAGS="-O2 -mguard=cf" \
|
||||||
|
CXXFLAGS="-O2 -mguard=cf"
|
||||||
make -j${CORES}
|
make -j${CORES}
|
||||||
make install
|
make install
|
||||||
PATH="${ORIGPATH}"
|
PATH="${ORIGPATH}"
|
||||||
@@ -385,32 +442,10 @@ mingw_fetch()
|
|||||||
echo ">>> Downloading MinGW-w64 ..."
|
echo ">>> Downloading MinGW-w64 ..."
|
||||||
git clone ${MINGWVCS} ${MINGWDIR}
|
git clone ${MINGWVCS} ${MINGWDIR}
|
||||||
cd ${MINGWDIR}
|
cd ${MINGWDIR}
|
||||||
|
if [ x"${MINGWTAG}" != x"master" ]; then
|
||||||
git checkout tags/${MINGWTAG}
|
git checkout tags/${MINGWTAG}
|
||||||
apply_patches ${MINGWDIR##*/} ${MINGWTAG}
|
|
||||||
cd ${WRKDIR}
|
|
||||||
fi
|
fi
|
||||||
}
|
apply_patches ${MINGWDIR##*/} ${MINGWTAG}
|
||||||
|
|
||||||
# This function compiles and installs NASM
|
|
||||||
nasm_build()
|
|
||||||
{
|
|
||||||
cd ${NASMDIR}
|
|
||||||
./autogen.sh
|
|
||||||
./configure
|
|
||||||
make -j${CORES}
|
|
||||||
install nasm ndisasm ${BINDIR}/bin/
|
|
||||||
cd ${WRKDIR}
|
|
||||||
}
|
|
||||||
|
|
||||||
# This function downloads NASM from VCS
|
|
||||||
nasm_fetch()
|
|
||||||
{
|
|
||||||
if [ ! -d ${NASMDIR} ]; then
|
|
||||||
echo ">>> Downloading NASM ..."
|
|
||||||
git clone ${NASMVCS} ${NASMDIR}
|
|
||||||
cd ${NASMDIR}
|
|
||||||
git checkout tags/${NASMTAG}
|
|
||||||
apply_patches ${NASMDIR##*/} ${NASMTAG##*-}
|
|
||||||
cd ${WRKDIR}
|
cd ${WRKDIR}
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@@ -448,6 +483,7 @@ wine_build()
|
|||||||
cd ${WINEDIR}/build
|
cd ${WINEDIR}/build
|
||||||
../configure \
|
../configure \
|
||||||
-enable-win64 \
|
-enable-win64 \
|
||||||
|
--without-freetype \
|
||||||
--without-x
|
--without-x
|
||||||
for TOOL in winedump wmc wrc; do
|
for TOOL in winedump wmc wrc; do
|
||||||
make -j${CORES} tools/${TOOL}/all
|
make -j${CORES} tools/${TOOL}/all
|
||||||
@@ -492,7 +528,7 @@ xtchain_build()
|
|||||||
for EXEC in dlltool ld objdump; do
|
for EXEC in dlltool ld objdump; do
|
||||||
ln -sf ../${GENERIC}/bin/${EXEC}-wrapper ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
ln -sf ../${GENERIC}/bin/${EXEC}-wrapper ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||||
done
|
done
|
||||||
for EXEC in windres xtcspecc; do
|
for EXEC in exetool windres xtcspecc; do
|
||||||
if [ ! -e ${BINDIR}/bin/${EXEC} ]; then
|
if [ ! -e ${BINDIR}/bin/${EXEC} ]; then
|
||||||
gcc ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}
|
gcc ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}
|
||||||
fi
|
fi
|
||||||
@@ -507,16 +543,12 @@ xtchain_build()
|
|||||||
# Exit immediately on any failure
|
# Exit immediately on any failure
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Check if script launched as root
|
|
||||||
if [ "$(whoami)" = "root" ]; then
|
|
||||||
echo "This script cannot be run as root!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check number of CPU cores available
|
# Check number of CPU cores available
|
||||||
: ${CORES:=$(sysctl -n hw.ncpu 2>/dev/null)}
|
if [[ ! -n ${CORES} ]]; then
|
||||||
: ${CORES:=$(nproc 2>/dev/null)}
|
: ${CORES:=$(sysctl -n hw.ncpu 2>/dev/null)}
|
||||||
: ${CORES:=1}
|
: ${CORES:=$(nproc 2>/dev/null)}
|
||||||
|
: ${CORES:=1}
|
||||||
|
fi
|
||||||
|
|
||||||
# Create working directories
|
# Create working directories
|
||||||
mkdir -p ${BINDIR}
|
mkdir -p ${BINDIR}
|
||||||
@@ -531,12 +563,6 @@ llvm_fetch
|
|||||||
# Build and install LLVM
|
# Build and install LLVM
|
||||||
llvm_build
|
llvm_build
|
||||||
|
|
||||||
# Download NASM
|
|
||||||
nasm_fetch
|
|
||||||
|
|
||||||
# Build and install NASM
|
|
||||||
nasm_build
|
|
||||||
|
|
||||||
# Download Mingw-W64
|
# Download Mingw-W64
|
||||||
mingw_fetch
|
mingw_fetch
|
||||||
|
|
||||||
@@ -558,6 +584,12 @@ mingw_build_libs
|
|||||||
# Build and install Mingw-W64 tools
|
# Build and install Mingw-W64 tools
|
||||||
mingw_build_tools
|
mingw_build_tools
|
||||||
|
|
||||||
|
# Download Binutils
|
||||||
|
binutils_fetch
|
||||||
|
|
||||||
|
# Build and install Binutils
|
||||||
|
binutils_build
|
||||||
|
|
||||||
# Download Wine
|
# Download Wine
|
||||||
wine_fetch
|
wine_fetch
|
||||||
|
|
||||||
@@ -585,12 +617,12 @@ ninja_build
|
|||||||
# Remove unneeded files to save disk space
|
# Remove unneeded files to save disk space
|
||||||
echo ">>> Removing unneeded files to save disk space ..."
|
echo ">>> Removing unneeded files to save disk space ..."
|
||||||
rm -rf ${BINDIR}/{doc,include,share/{bash-completion,emacs,info,locale,man,vim}}
|
rm -rf ${BINDIR}/{doc,include,share/{bash-completion,emacs,info,locale,man,vim}}
|
||||||
rm -rf ${BINDIR}/bin/{clang-{check,exdef-mapping,import-test,offload-*,rename,scan-deps},hmaptool,ld64.lld,wasm-ld}
|
rm -rf ${BINDIR}/bin/amdgpu-arch,{clang-{check,exdef-mapping,import-test,offload-*,rename,scan-deps},diagtool,hmaptool,ld64.lld,modularize,nxptx-arch,wasm-ld}
|
||||||
|
|
||||||
# Save XT Toolchain version
|
# Save XT Toolchain version
|
||||||
cd ${WRKDIR}
|
cd ${WRKDIR}
|
||||||
: ${XTCVER:=$(git describe --exact-match --tags 2>/dev/null)}
|
: ${XTCVER:=$(git describe --exact-match --tags 2>/dev/null)}
|
||||||
: ${XTCVER:=DEV}
|
: ${XTCVER:=DEVEL}
|
||||||
echo "${XTCVER}" > ${BINDIR}/Version
|
echo "${XTCVER}" > ${BINDIR}/Version
|
||||||
|
|
||||||
# Prepare archive
|
# Prepare archive
|
||||||
|
32
patches/binutils/2_40/001-fix-compilation.patch
Normal file
32
patches/binutils/2_40/001-fix-compilation.patch
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
diff --git a/gas/Makefile.in b/gas/Makefile.in
|
||||||
|
index 8319181b472..e4386b38621 100644
|
||||||
|
--- a/gas/Makefile.in
|
||||||
|
+++ b/gas/Makefile.in
|
||||||
|
@@ -2231,7 +2231,7 @@ de-stage3:
|
||||||
|
|
||||||
|
doc/asconfig.texi: doc/$(CONFIG).texi doc/$(am__dirstamp)
|
||||||
|
$(AM_V_at)rm -f doc/asconfig.texi
|
||||||
|
- $(AM_V_GEN)cp $(srcdir)/doc/$(CONFIG).texi doc/asconfig.texi
|
||||||
|
+ $(AM_V_GEN)cp -p $(srcdir)/doc/$(CONFIG).texi doc/asconfig.texi
|
||||||
|
$(AM_V_at)chmod u+w doc/asconfig.texi
|
||||||
|
|
||||||
|
# Maintenance
|
||||||
|
diff --git a/gas/doc/.dirstamp b/gas/doc/.dirstamp
|
||||||
|
deleted file mode 100644
|
||||||
|
index e69de29bb2d..00000000000
|
||||||
|
diff --git a/gas/doc/local.mk b/gas/doc/local.mk
|
||||||
|
index f611a50913c..de13e3ca8b8 100644
|
||||||
|
--- a/gas/doc/local.mk
|
||||||
|
+++ b/gas/doc/local.mk
|
||||||
|
@@ -41,7 +41,7 @@ TEXI2DVI = texi2dvi -I "$(srcdir)/%D%" -I %D% -I "$(srcdir)/../libiberty" \
|
||||||
|
|
||||||
|
%D%/asconfig.texi: %D%/$(CONFIG).texi %D%/$(am__dirstamp)
|
||||||
|
$(AM_V_at)rm -f %D%/asconfig.texi
|
||||||
|
- $(AM_V_GEN)cp $(srcdir)/%D%/$(CONFIG).texi %D%/asconfig.texi
|
||||||
|
+ $(AM_V_GEN)cp -p $(srcdir)/%D%/$(CONFIG).texi %D%/asconfig.texi
|
||||||
|
$(AM_V_at)chmod u+w %D%/asconfig.texi
|
||||||
|
|
||||||
|
CPU_DOCS = \
|
||||||
|
--
|
||||||
|
2.39.2
|
||||||
|
|
60
patches/binutils/2_40/002-add-arm-architectures.patch
Normal file
60
patches/binutils/2_40/002-add-arm-architectures.patch
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
From ec231dd4c9ceb09140178b79e30ed0917bb2c955 Mon Sep 17 00:00:00 2001
|
||||||
|
From: belliash <belliash@codingworkshop.eu.org>
|
||||||
|
Date: Sat, 25 Mar 2023 19:33:33 +0100
|
||||||
|
Subject: [PATCH] test2
|
||||||
|
|
||||||
|
---
|
||||||
|
bfd/config.bfd | 8 +++++++-
|
||||||
|
gas/configure.tgt | 3 ++-
|
||||||
|
2 files changed, 9 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/bfd/config.bfd b/bfd/config.bfd
|
||||||
|
index 1b0111fd410..ada7889d362 100644
|
||||||
|
--- a/bfd/config.bfd
|
||||||
|
+++ b/bfd/config.bfd
|
||||||
|
@@ -249,7 +249,7 @@ case "${targ}" in
|
||||||
|
targ_selvecs="aarch64_elf64_be_vec aarch64_elf32_le_vec aarch64_elf32_be_vec arm_elf32_le_vec arm_elf32_be_vec aarch64_pei_le_vec aarch64_pe_le_vec"
|
||||||
|
want64=true
|
||||||
|
;;
|
||||||
|
- aarch64-*-pe*)
|
||||||
|
+ aarch64-*-pe* | aarch64-*-mingw32)
|
||||||
|
targ_defvec=aarch64_pe_le_vec
|
||||||
|
targ_selvecs="aarch64_pe_le_vec aarch64_pei_le_vec"
|
||||||
|
want64=true
|
||||||
|
@@ -409,6 +409,12 @@ case "${targ}" in
|
||||||
|
targ_selvecs="arm_pe_le_vec arm_pe_be_vec arm_pei_le_vec arm_pei_be_vec"
|
||||||
|
targ_underscore=yes
|
||||||
|
;;
|
||||||
|
+ arm-*-mingw32)
|
||||||
|
+ targ_defvec=arm_pe_le_vec
|
||||||
|
+ targ_selvecs="arm_pe_le_vec arm_pe_be_vec arm_pei_le_vec arm_pei_be_vec"
|
||||||
|
+ targ_underscore=no
|
||||||
|
+ targ_cflags="-DARM_COFF_BUGFIX"
|
||||||
|
+ ;;
|
||||||
|
arm-*-phoenix*)
|
||||||
|
targ_defvec=arm_elf32_le_vec
|
||||||
|
targ_selvecs=arm_elf32_be_vec
|
||||||
|
diff --git a/gas/configure.tgt b/gas/configure.tgt
|
||||||
|
index 765ba73633d..9bfef1f72e8 100644
|
||||||
|
--- a/gas/configure.tgt
|
||||||
|
+++ b/gas/configure.tgt
|
||||||
|
@@ -136,6 +136,7 @@ case ${generic_target} in
|
||||||
|
aarch64*-*-netbsd*) fmt=elf em=nbsd;;
|
||||||
|
aarch64*-*-openbsd*) fmt=elf;;
|
||||||
|
aarch64*-*-pe*) fmt=coff em=pepaarch64 ;;
|
||||||
|
+ aarch64*-*-mingw32) fmt=coff em=pepaarch64 ;;
|
||||||
|
alpha-*-*vms*) fmt=evax ;;
|
||||||
|
alpha-*-osf*) fmt=ecoff ;;
|
||||||
|
alpha-*-linux*ecoff*) fmt=ecoff ;;
|
||||||
|
@@ -163,7 +164,7 @@ case ${generic_target} in
|
||||||
|
arm-*-nto*) fmt=elf ;;
|
||||||
|
arm-wince-pe | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*)
|
||||||
|
fmt=coff em=wince-pe ;;
|
||||||
|
- arm-*-pe) fmt=coff em=pe ;;
|
||||||
|
+ arm-*-pe | arm-*-mingw32) fmt=coff em=pe ;;
|
||||||
|
arm-*-fuchsia*) fmt=elf ;;
|
||||||
|
arm-*-haiku*) fmt=elf em=haiku ;;
|
||||||
|
|
||||||
|
--
|
||||||
|
2.39.2
|
||||||
|
|
13
patches/cmake/v3.24.2/001-add-xtc-version-suffix.patch
Normal file
13
patches/cmake/v3.24.2/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()
|
File diff suppressed because it is too large
Load Diff
@@ -6,12 +6,6 @@
|
|||||||
# DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
# DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
|
|
||||||
|
|
||||||
# Check if script launched as root
|
|
||||||
if [ "$(whoami)" = "root" ]; then
|
|
||||||
echo "This script cannot be run as root!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Get the absolute path to the XTchain
|
# Get the absolute path to the XTchain
|
||||||
export XTCDIR="$(realpath $(dirname ${0}))"
|
export XTCDIR="$(realpath $(dirname ${0}))"
|
||||||
|
|
||||||
|
142
tools/exetool.c
Normal file
142
tools/exetool.c
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
/**
|
||||||
|
* PROJECT: XTchain
|
||||||
|
* LICENSE: See COPYING.md in the top level directory
|
||||||
|
* FILE: tools/exetool.c
|
||||||
|
* DESCRIPTION: Portable Executable (PE) utility for changing subsystem
|
||||||
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "xtchain.h"
|
||||||
|
|
||||||
|
typedef struct _PE_SUBSYSTEM
|
||||||
|
{
|
||||||
|
int Identifier;
|
||||||
|
char *Name;
|
||||||
|
} PE_SUBSYSTEM, *PPE_SUBSYSTEM;
|
||||||
|
|
||||||
|
static PE_SUBSYSTEM SubSystems[] = {
|
||||||
|
{0x01, "NT_NATIVE"},
|
||||||
|
{0x02, "WINDOWS_GUI"},
|
||||||
|
{0x03, "WINDOWS_CLI"},
|
||||||
|
{0x04, "WINDOWS_CE_OLD"},
|
||||||
|
{0x05, "OS2_CUI"},
|
||||||
|
{0x07, "POSIX_CUI"},
|
||||||
|
{0x08, "NATIVE_WINDOWS"},
|
||||||
|
{0x09, "WINDOWS_CE_GUI"},
|
||||||
|
{0x0A, "EFI_APPLICATION"},
|
||||||
|
{0x0B, "EFI_BOOT_SERVICE_DRIVER"},
|
||||||
|
{0x0C, "EFI_RUNTIME_DRIVER"},
|
||||||
|
{0x0D, "EFI_ROM"},
|
||||||
|
{0x0E, "XBOX"},
|
||||||
|
{0x10, "WINDOWS_BOOT_APPLICATION"},
|
||||||
|
{0x14, "XT_NATIVE_KERNEL"},
|
||||||
|
{0x15, "XT_NATIVE_APPLICATION"},
|
||||||
|
{0x16, "XT_NATIVE_DRIVER"},
|
||||||
|
{0x17, "XT_DYNAMIC_LIBRARY"},
|
||||||
|
{0x18, "XT_APPLICATION_CLI"},
|
||||||
|
{0x19, "XT_APPLICATION_GDI"}
|
||||||
|
};
|
||||||
|
|
||||||
|
int getSubSystemID(char *Name)
|
||||||
|
{
|
||||||
|
int Index;
|
||||||
|
int SubSystemsCount;
|
||||||
|
PPE_SUBSYSTEM SubSystem;
|
||||||
|
|
||||||
|
/* Count number of subsystems avaialble */
|
||||||
|
SubSystemsCount = sizeof(SubSystems) / sizeof(PE_SUBSYSTEM);
|
||||||
|
|
||||||
|
/* Find subsystem */
|
||||||
|
for(Index = 0; Index < SubSystemsCount; Index++)
|
||||||
|
{
|
||||||
|
SubSystem = &SubSystems[Index];
|
||||||
|
if(strcmp(SubSystem->Name, Name) == 0)
|
||||||
|
{
|
||||||
|
/* Subsystem found, return its ID */
|
||||||
|
return SubSystem->Identifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* No valid subsystem found */
|
||||||
|
return 0x00;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
FILE *ExeFile;
|
||||||
|
unsigned char Signature[4];
|
||||||
|
unsigned int HeaderOffset;
|
||||||
|
unsigned short SubSystem;
|
||||||
|
int NewSubSystem;
|
||||||
|
|
||||||
|
/* Check for proper number of arguments */
|
||||||
|
if(argc != 3)
|
||||||
|
{
|
||||||
|
printf("Usage: %s <filename> <new SubSystem>\n", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Open the EXE file in binary mode */
|
||||||
|
ExeFile = fopen(argv[1], "r+b");
|
||||||
|
if(ExeFile == NULL)
|
||||||
|
{
|
||||||
|
/* Failed to open PE file */
|
||||||
|
printf("ERROR: Unable to open file %s\n", argv[1]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Verify that the input file has a valid DOS header */
|
||||||
|
fread(Signature, sizeof(unsigned char), 4, ExeFile);
|
||||||
|
if(Signature[0] != 'M' || Signature[1] != 'Z')
|
||||||
|
{
|
||||||
|
/* Invalid DOS header */
|
||||||
|
printf("ERROR: %s is not a valid EXE file\n", argv[1]);
|
||||||
|
fclose(ExeFile);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Verify that the input file has a valid PE header */
|
||||||
|
fseek(ExeFile, 0x3C, SEEK_SET);
|
||||||
|
fread(&HeaderOffset, sizeof(unsigned int), 1, ExeFile);
|
||||||
|
fseek(ExeFile, HeaderOffset, SEEK_SET);
|
||||||
|
fread(Signature, sizeof(unsigned char), 4, ExeFile);
|
||||||
|
if(Signature[0] != 'P' || Signature[1] != 'E' || Signature[2] != 0 || Signature[3] != 0)
|
||||||
|
{
|
||||||
|
/* Invalid PE header */
|
||||||
|
printf("Error: %s is not a valid PE file\n", argv[1]);
|
||||||
|
fclose(ExeFile);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Seek to the offset of the SubSystem field in the optional header */
|
||||||
|
fseek(ExeFile, HeaderOffset + 0x5C, SEEK_SET);
|
||||||
|
|
||||||
|
/* Read the current SubSystem value */
|
||||||
|
fread(&SubSystem, sizeof(unsigned short), 1, ExeFile);
|
||||||
|
printf("Original SubSystem: 0x%04X\n", SubSystem);
|
||||||
|
|
||||||
|
/* Parse the new SubSystem value from the command line argument */
|
||||||
|
NewSubSystem = getSubSystemID(argv[2]);
|
||||||
|
if(NewSubSystem == 0)
|
||||||
|
{
|
||||||
|
/* Invalid SubSystem provided */
|
||||||
|
printf("Error: %s is not a valid PE SubSystem\n", argv[2]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Print new SubSystem identifier */
|
||||||
|
printf("New SubSystem: 0x%04X\n", NewSubSystem);
|
||||||
|
|
||||||
|
/* Seek back to the SubSystem field in the optional header */
|
||||||
|
fseek(ExeFile, -sizeof(unsigned short), SEEK_CUR);
|
||||||
|
|
||||||
|
/* Write the new SubSystem value */
|
||||||
|
fwrite(&NewSubSystem, sizeof(unsigned short), 1, ExeFile);
|
||||||
|
|
||||||
|
/* Close the file */
|
||||||
|
fclose(ExeFile);
|
||||||
|
|
||||||
|
/* Finished successfully */
|
||||||
|
printf("SubSystem successfully modified!\n");
|
||||||
|
return 0;
|
||||||
|
}
|
Reference in New Issue
Block a user