şundan çatallanmış xt-sys/xtchain
İşlemeleri karşılaştır
42 İşleme
2.7
...
crosscompi
Yazar | SHA1 | Tarih | |
---|---|---|---|
6808e3b1d7
|
|||
c152b99327
|
|||
a458cb0219
|
|||
9219ebca83
|
|||
11cc5e47bc
|
|||
fc8f97b84d
|
|||
63a9e40408
|
|||
6664e9be64
|
|||
12ed36ca0e
|
|||
79cca854bc
|
|||
460d5820da
|
|||
83e84c3ebf
|
|||
eeb1953d87
|
|||
e9707563d7
|
|||
11d0593c9e
|
|||
22a5abd279
|
|||
8c047d6083
|
|||
1832a39ed3
|
|||
2a00526666
|
|||
1f72016fc2
|
|||
a522cdc583
|
|||
37230435aa
|
|||
737dda2960
|
|||
0d468bf245
|
|||
b0baae79ba
|
|||
ecd243ed0d
|
|||
b9d0458a65
|
|||
7fb2227034
|
|||
0e49773bf4
|
|||
5684623164
|
|||
14f2f7cf1f
|
|||
37e38daf36
|
|||
b65a92d147
|
|||
173b6d6dd0
|
|||
2da20a4eba
|
|||
c9ef8a6484
|
|||
be63d61cf4
|
|||
9fd40e9617
|
|||
116d309962
|
|||
6845594e6a
|
|||
69ae9afb88
|
|||
3ae3ceaabb
|
14
.build.yml
14
.build.yml
@@ -1,14 +0,0 @@
|
||||
pipeline:
|
||||
build:
|
||||
image: codingworkshop/oscw-runner:latest
|
||||
commands:
|
||||
- CORES=10 ./build-linux.sh
|
||||
publish:
|
||||
image: codingworkshop/oscw-runner:latest
|
||||
secrets:
|
||||
- OSCW_GITHUB_USERNAME
|
||||
- OSCW_GITHUB_PASSWORD
|
||||
when:
|
||||
event: tag
|
||||
commands:
|
||||
- github_publish $OSCW_GITHUB_USERNAME $OSCW_GITHUB_PASSWORD $(ls xtchain-*-linux.tar.zst)
|
20
.github/workflows/build.yml.DISABLE
sağlanmış
Normal dosya
20
.github/workflows/build.yml.DISABLE
sağlanmış
Normal dosya
@@ -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)
|
3
.gitignore
sağlanmış
Normal dosya
3
.gitignore
sağlanmış
Normal dosya
@@ -0,0 +1,3 @@
|
||||
binaries/*
|
||||
sources/*
|
||||
xtchain-*.zst
|
25
README.md
25
README.md
@@ -1,3 +1,26 @@
|
||||
<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://github.com/xt-sys/xtchain/releases">
|
||||
<img alt="Releases" src="https://img.shields.io/github/v/release/xt-sys/xtchain?label=Release&color=blueviolet">
|
||||
</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
|
||||
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
|
||||
@@ -11,10 +34,10 @@ Benefits of a LLVM based MinGW toolchain are:
|
||||
|
||||
This software includes:
|
||||
* CMake
|
||||
* GNU Assembler
|
||||
* LLVM
|
||||
* Make
|
||||
* Mingw-w64
|
||||
* NASM
|
||||
* Ninja
|
||||
* Wine
|
||||
|
||||
|
171
build-linux.sh
171
build-linux.sh
@@ -16,19 +16,24 @@ WRKDIR="$(pwd)"
|
||||
ARCHS="aarch64 armv7 i686 x86_64"
|
||||
GENERIC="generic-w64-mingw32"
|
||||
|
||||
# Binutils Settings
|
||||
BINUTILSDIR="${SRCDIR}/binutils"
|
||||
BINUTILSTAG="binutils-2_41"
|
||||
BINUTILSVCS="git://sourceware.org/git/binutils-gdb.git"
|
||||
|
||||
# CMake Settings
|
||||
CMAKEDIR="${SRCDIR}/cmake"
|
||||
CMAKETAG="v3.24.2"
|
||||
CMAKETAG="v3.27.6"
|
||||
CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
|
||||
|
||||
# LLVM Settings
|
||||
LLVMDIR="${SRCDIR}/llvm"
|
||||
LLVMTAG="llvmorg-15.0.6"
|
||||
LLVMTAG="llvmorg-17.0.6"
|
||||
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
||||
|
||||
# Make Settings
|
||||
MAKEDIR="${SRCDIR}/make"
|
||||
MAKETAG="4.3"
|
||||
MAKETAG="4.4.1"
|
||||
MAKEVCS="git://git.savannah.gnu.org/make"
|
||||
|
||||
# Mingw-w64 Settings
|
||||
@@ -38,19 +43,14 @@ MINGWTAG="master"
|
||||
MINGWNTV="0x601"
|
||||
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
|
||||
NINJADIR="${SRCDIR}/ninja"
|
||||
NINJATAG="v1.11.0"
|
||||
NINJATAG="v1.11.1"
|
||||
NINJAVCS="https://github.com/ninja-build/ninja.git"
|
||||
|
||||
# Wine Settings
|
||||
WINEDIR="${SRCDIR}/wine"
|
||||
WINETAG="wine-7.9"
|
||||
WINETAG="wine-8.17"
|
||||
WINEVCS="git://source.winehq.org/git/wine.git"
|
||||
|
||||
|
||||
@@ -79,6 +79,50 @@ apply_patches()
|
||||
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 --depth 1 --branch ${BINUTILSTAG} ${BINUTILSVCS} ${BINUTILSDIR}
|
||||
cd ${BINUTILSDIR}
|
||||
apply_patches ${BINUTILSDIR##*/} ${BINUTILSTAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and installs CMAKE
|
||||
cmake_build()
|
||||
{
|
||||
@@ -100,9 +144,8 @@ cmake_fetch()
|
||||
{
|
||||
if [ ! -d ${CMAKEDIR} ]; then
|
||||
echo ">>> Downloading CMAKE ..."
|
||||
git clone ${CMAKEVCS} ${CMAKEDIR}
|
||||
git clone --depth 1 --branch ${CMAKETAG} ${CMAKEVCS} ${CMAKEDIR}
|
||||
cd ${CMAKEDIR}
|
||||
git checkout tags/${CMAKETAG}
|
||||
apply_patches ${CMAKEDIR##*/} ${CMAKETAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
@@ -136,18 +179,18 @@ llvm_build()
|
||||
done
|
||||
mkdir -p ${LLVMDIR}/llvm/build
|
||||
cd ${LLVMDIR}/llvm/build
|
||||
cmake \
|
||||
cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_INSTALL_PREFIX=${BINDIR} \
|
||||
-DLLDB_INCLUDE_TESTS=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_LINK_LLVM_DYLIB=ON \
|
||||
-DLLVM_TARGETS_TO_BUILD="$(echo ${LLVM_ARCHS[@]} | tr ' ' ';')" \
|
||||
-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}
|
||||
}
|
||||
|
||||
@@ -159,15 +202,17 @@ llvm_build_libs()
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
mkdir -p ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
cd ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
cmake \
|
||||
cmake -G Ninja \
|
||||
-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_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||
-DCMAKE_C_COMPILER_WORKS=1 \
|
||||
-DCMAKE_C_FLAGS_INIT=-mguard=cf \
|
||||
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
||||
-DCMAKE_CXX_COMPILER_TARGET=${ARCH}-w64-windows-gnu \
|
||||
-DCMAKE_CXX_COMPILER_WORKS=1 \
|
||||
-DCMAKE_CXX_FLAGS_INIT=-mguard=cf \
|
||||
-DCMAKE_CROSSCOMPILING=TRUE \
|
||||
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
||||
-DCMAKE_SYSTEM_NAME="Windows" \
|
||||
@@ -175,13 +220,13 @@ llvm_build_libs()
|
||||
-DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" \
|
||||
-DLIBUNWIND_USE_COMPILER_RT=TRUE \
|
||||
-DLIBUNWIND_ENABLE_SHARED=TRUE \
|
||||
-DLIBUNWIND_ENABLE_STATIC=FALSE \
|
||||
-DLIBUNWIND_ENABLE_STATIC=TRUE \
|
||||
-DLIBCXX_USE_COMPILER_RT=ON \
|
||||
-DLIBCXX_ENABLE_SHARED=TRUE \
|
||||
-DLIBCXX_ENABLE_STATIC=FALSE \
|
||||
-DLIBCXX_ENABLE_STATIC=TRUE \
|
||||
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF \
|
||||
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=TRUE \
|
||||
-DLIBCXX_CXX_ABI=libcxxabi \
|
||||
-DLIBCXX_CXX_ABI="libcxxabi" \
|
||||
-DLIBCXX_LIBDIR_SUFFIX="" \
|
||||
-DLIBCXX_INCLUDE_TESTS=FALSE \
|
||||
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=FALSE \
|
||||
@@ -190,8 +235,8 @@ llvm_build_libs()
|
||||
-DLIBCXXABI_LIBDIR_SUFFIX="" \
|
||||
-DLIBCXXABI_USE_LLVM_UNWINDER=ON \
|
||||
..
|
||||
make -j${CORES}
|
||||
make install
|
||||
ninja
|
||||
ninja install
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
@@ -204,21 +249,28 @@ llvm_build_runtime()
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
mkdir -p ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
cd ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
cmake \
|
||||
cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
||||
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||
-DCMAKE_C_COMPILER_TARGET="${ARCH}-windows-gnu" \
|
||||
-DCMAKE_C_FLAGS_INIT="-mguard=cf" \
|
||||
-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_SYSTEM_NAME="Windows" \
|
||||
-DCOMPILER_RT_BUILD_BUILTINS=TRUE \
|
||||
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=TRUE \
|
||||
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=TRUE \
|
||||
-DSANITIZER_CXX_ABI=libc++ \
|
||||
-DLLVM_CONFIG_PATH="" \
|
||||
-DSANITIZER_CXX_ABI="libc++" \
|
||||
../lib/builtins
|
||||
make -j${CORES}
|
||||
make install
|
||||
ninja
|
||||
ninja install
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
@@ -228,9 +280,8 @@ llvm_fetch()
|
||||
{
|
||||
if [ ! -d ${LLVMDIR} ]; then
|
||||
echo ">>> Downloading LLVM ..."
|
||||
git clone ${LLVMVCS} ${LLVMDIR}
|
||||
git clone --depth 1 --branch ${LLVMTAG} ${LLVMVCS} ${LLVMDIR}
|
||||
cd ${LLVMDIR}
|
||||
git checkout tags/${LLVMTAG}
|
||||
apply_patches ${LLVMDIR##*/} ${LLVMTAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
@@ -265,9 +316,8 @@ make_fetch()
|
||||
{
|
||||
if [ ! -d ${MAKEDIR} ]; then
|
||||
echo ">>> Downloading Make ..."
|
||||
git clone ${MAKEVCS} ${MAKEDIR}
|
||||
git clone --depth 1 --branch ${MAKETAG} ${MAKEVCS} ${MAKEDIR}
|
||||
cd ${MAKEDIR}
|
||||
git checkout tags/${MAKETAG}
|
||||
apply_patches ${MAKEDIR##*/} ${MAKETAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
@@ -302,6 +352,7 @@ mingw_build_crt()
|
||||
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
||||
--with-sysroot=${BINDIR} \
|
||||
--with-default-msvcrt=${MINGWLIB} \
|
||||
--enable-cfguard \
|
||||
${FLAGS}
|
||||
make -j${CORES}
|
||||
make install
|
||||
@@ -347,7 +398,9 @@ mingw_build_libs()
|
||||
../configure \
|
||||
--host=${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 install
|
||||
PATH="${ORIGPATH}"
|
||||
@@ -383,40 +436,13 @@ mingw_fetch()
|
||||
{
|
||||
if [ ! -d ${MINGWDIR} ]; then
|
||||
echo ">>> Downloading MinGW-w64 ..."
|
||||
git clone ${MINGWVCS} ${MINGWDIR}
|
||||
git clone --depth 1 --branch ${MINGWTAG} ${MINGWVCS} ${MINGWDIR}
|
||||
cd ${MINGWDIR}
|
||||
if [ x"${MINGWTAG}" != x"master" ]; then
|
||||
git checkout tags/${MINGWTAG}
|
||||
fi
|
||||
apply_patches ${MINGWDIR##*/} ${MINGWTAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# 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}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and installs NINJA
|
||||
ninja_build()
|
||||
{
|
||||
@@ -434,9 +460,8 @@ ninja_fetch()
|
||||
{
|
||||
if [ ! -d ${NINJADIR} ]; then
|
||||
echo ">>> Downloading NINJA ..."
|
||||
git clone ${NINJAVCS} ${NINJADIR}
|
||||
git clone --depth 1 --branch ${NINJATAG} ${NINJAVCS} ${NINJADIR}
|
||||
cd ${NINJADIR}
|
||||
git checkout tags/${NINJATAG}
|
||||
apply_patches ${NINJADIR##*/} ${NINJATAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
@@ -469,9 +494,8 @@ wine_fetch()
|
||||
{
|
||||
if [ ! -d ${WINEDIR} ]; then
|
||||
echo ">>> Downloading WINE ..."
|
||||
git clone ${WINEVCS} ${WINEDIR}
|
||||
git clone --depth 1 --branch ${WINETAG} ${WINEVCS} ${WINEDIR}
|
||||
cd ${WINEDIR}
|
||||
git checkout tags/${WINETAG}
|
||||
apply_patches ${WINEDIR##*/} ${WINETAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
@@ -495,14 +519,13 @@ xtchain_build()
|
||||
for EXEC in dlltool ld objdump; do
|
||||
ln -sf ../${GENERIC}/bin/${EXEC}-wrapper ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
for EXEC in windres xtcspecc; do
|
||||
for EXEC in bin2c exetool xtcspecc; do
|
||||
if [ ! -e ${BINDIR}/bin/${EXEC} ]; then
|
||||
gcc ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}
|
||||
fi
|
||||
ln -sf ${EXEC} ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
done
|
||||
cp ${WRKDIR}/scripts/exetool ${BINDIR}/bin/
|
||||
cp ${WRKDIR}/scripts/xtclib ${BINDIR}/lib/xtchain/
|
||||
cp ${WRKDIR}/scripts/xtchain ${BINDIR}/
|
||||
}
|
||||
@@ -531,12 +554,6 @@ llvm_fetch
|
||||
# Build and install LLVM
|
||||
llvm_build
|
||||
|
||||
# Download NASM
|
||||
nasm_fetch
|
||||
|
||||
# Build and install NASM
|
||||
nasm_build
|
||||
|
||||
# Download Mingw-W64
|
||||
mingw_fetch
|
||||
|
||||
@@ -558,6 +575,12 @@ mingw_build_libs
|
||||
# Build and install Mingw-W64 tools
|
||||
mingw_build_tools
|
||||
|
||||
# Download Binutils
|
||||
binutils_fetch
|
||||
|
||||
# Build and install Binutils
|
||||
binutils_build
|
||||
|
||||
# Download Wine
|
||||
wine_fetch
|
||||
|
||||
@@ -585,12 +608,12 @@ ninja_build
|
||||
# Remove 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}/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
|
||||
cd ${WRKDIR}
|
||||
: ${XTCVER:=$(git describe --exact-match --tags 2>/dev/null)}
|
||||
: ${XTCVER:=DEV}
|
||||
: ${XTCVER:=DEVEL}
|
||||
echo "${XTCVER}" > ${BINDIR}/Version
|
||||
|
||||
# Prepare archive
|
||||
|
699
build-windows.sh
Çalıştırılabilir dosya
699
build-windows.sh
Çalıştırılabilir dosya
@@ -0,0 +1,699 @@
|
||||
#!/bin/bash
|
||||
# PROJECT: XTchain
|
||||
# LICENSE: See the COPYING.md in the top level directory
|
||||
# FILE: build-linux.sh
|
||||
# DESCRIPTION: Toolchain building and assembly script
|
||||
# DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
|
||||
|
||||
# Working Directories
|
||||
BINDIR="$(pwd)/binaries"
|
||||
PCHDIR="$(pwd)/patches"
|
||||
SRCDIR="$(pwd)/sources"
|
||||
WRKDIR="$(pwd)"
|
||||
|
||||
# Architecture Settings
|
||||
ARCHS="aarch64 armv7 i686 x86_64"
|
||||
GENERIC="generic-w64-mingw32"
|
||||
|
||||
# Binutils Settings
|
||||
BINUTILSDIR="${SRCDIR}/binutils"
|
||||
BINUTILSTAG="binutils-2_41"
|
||||
BINUTILSVCS="git://sourceware.org/git/binutils-gdb.git"
|
||||
|
||||
# CMake Settings
|
||||
CMAKEDIR="${SRCDIR}/cmake"
|
||||
CMAKETAG="v3.27.6"
|
||||
CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
|
||||
|
||||
# LLVM Settings
|
||||
LLVMDIR="${SRCDIR}/llvm"
|
||||
LLVMTAG="llvmorg-17.0.6"
|
||||
LLVMVCS="https://github.com/llvm/llvm-project.git"
|
||||
|
||||
# Make Settings
|
||||
MAKEDIR="${SRCDIR}/make"
|
||||
MAKETAG="4.4.1"
|
||||
MAKEVCS="git://git.savannah.gnu.org/make"
|
||||
|
||||
# Mingw-w64 Settings
|
||||
MINGWDIR="${SRCDIR}/mingw-w64"
|
||||
MINGWLIB="ucrt"
|
||||
MINGWTAG="master"
|
||||
MINGWNTV="0x601"
|
||||
MINGWVCS="https://github.com/mirror/mingw-w64.git"
|
||||
|
||||
# Ninja Settings
|
||||
NINJADIR="${SRCDIR}/ninja"
|
||||
NINJATAG="v1.11.1"
|
||||
NINJAVCS="https://github.com/ninja-build/ninja.git"
|
||||
|
||||
# Wine Settings
|
||||
WINEDIR="${SRCDIR}/wine"
|
||||
WINETAG="wine-8.17"
|
||||
WINEVCS="git://source.winehq.org/git/wine.git"
|
||||
|
||||
|
||||
# This function applies a patches to the 3rd party project
|
||||
apply_patches()
|
||||
{
|
||||
local PACKAGE="${1}"
|
||||
local VERSION="${2}"
|
||||
if [ -d "${PCHDIR}/${PACKAGE}/${VERSION}" ]; then
|
||||
PATCHES="$(find ${PCHDIR}/${PACKAGE}/${VERSION} -name '*.diff' -o -name '*.patch' | sort -n)"
|
||||
echo ">>> Applying custom patches ..."
|
||||
for PATCH in ${PATCHES}; do
|
||||
if [ -f "${PATCH}" ] && [ -r "${PATCH}" ]; then
|
||||
for PREFIX in {0..5}; do
|
||||
if patch -i${PATCH} -p${PREFIX} --silent --dry-run >/dev/null; then
|
||||
patch -i${PATCH} -p${PREFIX} --silent
|
||||
echo ">>> Patch ${PATCH} applied ..."
|
||||
break;
|
||||
elif [ ${PREFIX} -ge 5 ]; then
|
||||
echo "Patch ${PATCH} does not fit. Failed applying patch ..."
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and installs GNU BINUTILS
|
||||
binutils_build_OLD()
|
||||
{
|
||||
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 --depth 1 --branch ${BINUTILSTAG} ${BINUTILSVCS} ${BINUTILSDIR}
|
||||
cd ${BINUTILSDIR}
|
||||
apply_patches ${BINUTILSDIR##*/} ${BINUTILSTAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and installs CMAKE
|
||||
cmake_build_OLD()
|
||||
{
|
||||
echo ">>> Building CMAKE ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${CMAKEDIR}/build-${GENERIC}
|
||||
mkdir -p ${CMAKEDIR}/build-${GENERIC}
|
||||
cd ${CMAKEDIR}/build-${GENERIC}
|
||||
../bootstrap \
|
||||
--prefix=${BINDIR} \
|
||||
--parallel=${CORES} \
|
||||
-- -DCMAKE_USE_OPENSSL=OFF
|
||||
make -j${CORES}
|
||||
make install
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads CMAKE from VCS
|
||||
cmake_fetch()
|
||||
{
|
||||
if [ ! -d ${CMAKEDIR} ]; then
|
||||
echo ">>> Downloading CMAKE ..."
|
||||
git clone --depth 1 --branch ${CMAKETAG} ${CMAKEVCS} ${CMAKEDIR}
|
||||
cd ${CMAKEDIR}
|
||||
apply_patches ${CMAKEDIR##*/} ${CMAKETAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and install LLVM
|
||||
llvm_build_OLD()
|
||||
{
|
||||
echo ">>> Building LLVM ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/llvm/build
|
||||
LLVM_ARCHS=()
|
||||
for ARCH in ${ARCHS}; do
|
||||
case ${ARCH} in
|
||||
"aarch64")
|
||||
LLVM_ARCHS+=( "AArch64" )
|
||||
;;
|
||||
"armv7")
|
||||
LLVM_ARCHS+=( "ARM" )
|
||||
;;
|
||||
"i686"|"x86_64")
|
||||
LLVM_ARCHS+=( "X86" )
|
||||
;;
|
||||
esac
|
||||
done
|
||||
LLVM_ARCHS=( $(for ARCH in ${LLVM_ARCHS[@]}; do echo ${ARCH}; done | sort -u) )
|
||||
cd ${LLVMDIR}/llvm/tools
|
||||
for UTIL in clang lld; do
|
||||
if [ ! -e ${UTIL} ]; then
|
||||
ln -sf ../../${UTIL} .
|
||||
fi
|
||||
done
|
||||
mkdir -p ${LLVMDIR}/llvm/build
|
||||
cd ${LLVMDIR}/llvm/build
|
||||
cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_INSTALL_PREFIX=${BINDIR} \
|
||||
-DLLDB_INCLUDE_TESTS=FALSE \
|
||||
-DLLVM_ENABLE_ASSERTIONS=FALSE \
|
||||
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;lldb" \
|
||||
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
|
||||
-DLLVM_LINK_LLVM_DYLIB=ON \
|
||||
-DLLVM_TARGETS_TO_BUILD="$(echo ${LLVM_ARCHS[@]} | tr ' ' ';')" \
|
||||
-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" \
|
||||
..
|
||||
ninja install/strip
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and install LIBCXX & LIBUNWIND
|
||||
llvm_build_libs_OLD()
|
||||
{
|
||||
echo ">>> Building LLVM libraries (libcxx) ..."
|
||||
for ARCH in ${ARCHS}; do
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
mkdir -p ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
cd ${LLVMDIR}/runtimes/build-${ARCH}
|
||||
cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_INSTALL_PREFIX="${BINDIR}/${ARCH}-w64-mingw32" \
|
||||
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
||||
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||
-DCMAKE_C_COMPILER_WORKS=1 \
|
||||
-DCMAKE_C_FLAGS_INIT=-mguard=cf \
|
||||
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
||||
-DCMAKE_CXX_COMPILER_TARGET=${ARCH}-w64-windows-gnu \
|
||||
-DCMAKE_CXX_COMPILER_WORKS=1 \
|
||||
-DCMAKE_CXX_FLAGS_INIT=-mguard=cf \
|
||||
-DCMAKE_CROSSCOMPILING=TRUE \
|
||||
-DCMAKE_RANLIB="${BINDIR}/bin/llvm-ranlib" \
|
||||
-DCMAKE_SYSTEM_NAME="Windows" \
|
||||
-DLLVM_PATH="${LLVMDIR}/llvm" \
|
||||
-DLLVM_ENABLE_RUNTIMES="libunwind;libcxxabi;libcxx" \
|
||||
-DLIBUNWIND_USE_COMPILER_RT=TRUE \
|
||||
-DLIBUNWIND_ENABLE_SHARED=TRUE \
|
||||
-DLIBUNWIND_ENABLE_STATIC=TRUE \
|
||||
-DLIBCXX_USE_COMPILER_RT=ON \
|
||||
-DLIBCXX_ENABLE_SHARED=TRUE \
|
||||
-DLIBCXX_ENABLE_STATIC=TRUE \
|
||||
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=OFF \
|
||||
-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=TRUE \
|
||||
-DLIBCXX_CXX_ABI="libcxxabi" \
|
||||
-DLIBCXX_LIBDIR_SUFFIX="" \
|
||||
-DLIBCXX_INCLUDE_TESTS=FALSE \
|
||||
-DLIBCXX_ENABLE_ABI_LINKER_SCRIPT=FALSE \
|
||||
-DLIBCXXABI_USE_COMPILER_RT=ON \
|
||||
-DLIBCXXABI_ENABLE_SHARED=OFF \
|
||||
-DLIBCXXABI_LIBDIR_SUFFIX="" \
|
||||
-DLIBCXXABI_USE_LLVM_UNWINDER=ON \
|
||||
..
|
||||
ninja
|
||||
ninja install
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and install LLVM runtime
|
||||
llvm_build_runtime_OLD()
|
||||
{
|
||||
echo ">>> Building LLVM compiler runtime ..."
|
||||
for ARCH in ${ARCHS}; do
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
mkdir -p ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
cd ${LLVMDIR}/compiler-rt/build-${ARCH}
|
||||
cmake -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_AR="${BINDIR}/bin/llvm-ar" \
|
||||
-DCMAKE_C_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang" \
|
||||
-DCMAKE_C_COMPILER_TARGET="${ARCH}-windows-gnu" \
|
||||
-DCMAKE_C_FLAGS_INIT="-mguard=cf" \
|
||||
-DCMAKE_CXX_COMPILER="${BINDIR}/bin/${ARCH}-w64-mingw32-clang++" \
|
||||
-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_SYSTEM_NAME="Windows" \
|
||||
-DCOMPILER_RT_BUILD_BUILTINS=TRUE \
|
||||
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=TRUE \
|
||||
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=TRUE \
|
||||
-DLLVM_CONFIG_PATH="" \
|
||||
-DSANITIZER_CXX_ABI="libc++" \
|
||||
../lib/builtins
|
||||
ninja
|
||||
ninja install
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads LLVM from VCS
|
||||
llvm_fetch()
|
||||
{
|
||||
if [ ! -d ${LLVMDIR} ]; then
|
||||
echo ">>> Downloading LLVM ..."
|
||||
git clone --depth 1 --branch ${LLVMTAG} ${LLVMVCS} ${LLVMDIR}
|
||||
cd ${LLVMDIR}
|
||||
apply_patches ${LLVMDIR##*/} ${LLVMTAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and install MAKE
|
||||
make_build_OLD()
|
||||
{
|
||||
echo ">>> Building Make ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${MAKEDIR}/build
|
||||
cd ${MAKEDIR}
|
||||
./bootstrap
|
||||
sed -i "s/-Werror//" maintMakefile
|
||||
mkdir -p ${MAKEDIR}/build
|
||||
cd ${MAKEDIR}/build
|
||||
../configure \
|
||||
--prefix=${BINDIR} \
|
||||
--disable-dependency-tracking \
|
||||
--disable-silent-rules \
|
||||
--program-prefix=g \
|
||||
--without-guile
|
||||
make -j${CORES}
|
||||
make install
|
||||
if [ ! -e ${BINDIR}/bin/make ]; then
|
||||
ln -sf gmake ${BINDIR}/bin/make
|
||||
fi
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads MAKE from VCS
|
||||
make_fetch()
|
||||
{
|
||||
if [ ! -d ${MAKEDIR} ]; then
|
||||
echo ">>> Downloading Make ..."
|
||||
git clone --depth 1 --branch ${MAKETAG} ${MAKEVCS} ${MAKEDIR}
|
||||
cd ${MAKEDIR}
|
||||
apply_patches ${MAKEDIR##*/} ${MAKETAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
# This function compiles and install MINGW libraries
|
||||
mingw_build_libs_OLD()
|
||||
{
|
||||
for LIB in libmangle winpthreads winstorecompat; do
|
||||
echo ">>> Building Mingw-w64 (libs) for ${ARCH} ..."
|
||||
for ARCH in ${ARCHS}; do
|
||||
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-libraries/${LIB}/build-${ARCH}
|
||||
mkdir -p ${MINGWDIR}/mingw-w64-libraries/${LIB}/build-${ARCH}
|
||||
cd ${MINGWDIR}/mingw-w64-libraries/${LIB}/build-${ARCH}
|
||||
ORIGPATH="${PATH}"
|
||||
PATH="${BINDIR}/bin:${PATH}"
|
||||
../configure \
|
||||
--host=${ARCH}-w64-mingw32 \
|
||||
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
||||
--libdir=${BINDIR}/${ARCH}-w64-mingw32/lib \
|
||||
CFLAGS="-O2 -mguard=cf" \
|
||||
CXXFLAGS="-O2 -mguard=cf"
|
||||
make -j${CORES}
|
||||
make install
|
||||
PATH="${ORIGPATH}"
|
||||
done
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and installs MINGW tools
|
||||
mingw_build_tools_OLD()
|
||||
{
|
||||
for TOOL in gendef genidl genlib genpeimg widl; do
|
||||
for ARCH in ${ARCHS}; do
|
||||
echo ">>> Building Mingw-w64 (tools) for ${ARCH} ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-tools/${TOOL}/build-${ARCH}
|
||||
mkdir -p ${MINGWDIR}/mingw-w64-tools/${TOOL}/build-${ARCH}
|
||||
cd ${MINGWDIR}/mingw-w64-tools/${TOOL}/build-${ARCH}
|
||||
../configure \
|
||||
--target=${ARCH}-w64-mingw32 \
|
||||
--prefix=${BINDIR}
|
||||
make -j${CORES}
|
||||
make install
|
||||
if [ -e ${BINDIR}/bin/${TOOL} ]; then
|
||||
mv ${BINDIR}/bin/${TOOL} ${BINDIR}/bin/${ARCH}-w64-mingw32-${TOOL}
|
||||
fi
|
||||
done
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads MINGW from VCS
|
||||
mingw_fetch()
|
||||
{
|
||||
if [ ! -d ${MINGWDIR} ]; then
|
||||
echo ">>> Downloading MinGW-w64 ..."
|
||||
git clone --depth 1 --branch ${MINGWTAG} ${MINGWVCS} ${MINGWDIR}
|
||||
cd ${MINGWDIR}
|
||||
apply_patches ${MINGWDIR##*/} ${MINGWTAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and installs NINJA
|
||||
ninja_build_OLD()
|
||||
{
|
||||
echo ">>> Building NINJA ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${NINJADIR}/build-${GENERIC}
|
||||
mkdir -p ${NINJADIR}/build-${GENERIC}
|
||||
cd ${NINJADIR}/build-${GENERIC}
|
||||
../configure.py --bootstrap
|
||||
install ninja ${BINDIR}/bin/
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads NINJA from VCS
|
||||
ninja_fetch()
|
||||
{
|
||||
if [ ! -d ${NINJADIR} ]; then
|
||||
echo ">>> Downloading NINJA ..."
|
||||
git clone --depth 1 --branch ${NINJATAG} ${NINJAVCS} ${NINJADIR}
|
||||
cd ${NINJADIR}
|
||||
apply_patches ${NINJADIR##*/} ${NINJATAG}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function compiles and install WINE tools
|
||||
wine_build_OLD()
|
||||
{
|
||||
echo ">>> Building Wine ..."
|
||||
mkdir -p ${WINEDIR}/build
|
||||
cd ${WINEDIR}/build
|
||||
../configure \
|
||||
-enable-win64 \
|
||||
--without-freetype \
|
||||
--without-x
|
||||
for TOOL in winedump wmc wrc; do
|
||||
make -j${CORES} tools/${TOOL}/all
|
||||
cp tools/${TOOL}/${TOOL} ${BINDIR}/bin/
|
||||
for ARCH in ${ARCHS}; do
|
||||
if [ ! -e ${BINDIR}/bin/${ARCH}-w64-mingw32-${TOOL} ]; then
|
||||
ln -sf ${TOOL} ${BINDIR}/bin/${ARCH}-w64-mingw32-${TOOL}
|
||||
fi
|
||||
done
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function downloads WINE from VCS
|
||||
wine_fetch()
|
||||
{
|
||||
if [ ! -d ${WINEDIR} ]; then
|
||||
echo ">>> Downloading WINE ..."
|
||||
git clone --depth 1 --branch ${WINETAG} ${WINEVCS} ${WINEDIR}
|
||||
cd ${WINEDIR}
|
||||
apply_patches ${WINEDIR##*/} ${WINETAG##*-}
|
||||
cd ${WRKDIR}
|
||||
fi
|
||||
}
|
||||
|
||||
# This function installs XTCHAIN scripts, wrappers and symlinks
|
||||
xtchain_build_OLD()
|
||||
{
|
||||
echo ">>> Building XTchain ..."
|
||||
mkdir -p ${BINDIR}/bin
|
||||
mkdir -p ${BINDIR}/lib/xtchain
|
||||
mkdir -p ${BINDIR}/${GENERIC}/bin
|
||||
cp ${WRKDIR}/scripts/*-wrapper ${BINDIR}/${GENERIC}/bin
|
||||
for ARCH in ${ARCHS}; do
|
||||
for EXEC in c++ c11 c99 cc clang clang++ g++ gcc; do
|
||||
ln -sf ../${GENERIC}/bin/clang-target-wrapper ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
for EXEC in addr2line ar as nm objcopy pdbutil ranlib rc strings strip; do
|
||||
ln -sf llvm-${EXEC} ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
for EXEC in dlltool ld objdump; do
|
||||
ln -sf ../${GENERIC}/bin/${EXEC}-wrapper ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
for EXEC in bin2c exetool xtcspecc; do
|
||||
if [ ! -e ${BINDIR}/bin/${EXEC} ]; then
|
||||
gcc ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}
|
||||
fi
|
||||
ln -sf ${EXEC} ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}
|
||||
done
|
||||
done
|
||||
cp ${WRKDIR}/scripts/xtclib ${BINDIR}/lib/xtchain/
|
||||
cp ${WRKDIR}/scripts/xtchain ${BINDIR}/
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# This function compiles and install LLVM
|
||||
llvm_build()
|
||||
{
|
||||
echo ">>> Building LLVM ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${LLVMDIR}/llvm/build
|
||||
LLVM_ARCHS=()
|
||||
for ARCH in ${ARCHS}; do
|
||||
case ${ARCH} in
|
||||
"aarch64")
|
||||
LLVM_ARCHS+=( "AArch64" )
|
||||
;;
|
||||
"armv7")
|
||||
LLVM_ARCHS+=( "ARM" )
|
||||
;;
|
||||
"i686"|"x86_64")
|
||||
LLVM_ARCHS+=( "X86" )
|
||||
;;
|
||||
esac
|
||||
done
|
||||
LLVM_ARCHS=( $(for ARCH in ${LLVM_ARCHS[@]}; do echo ${ARCH}; done | sort -u) )
|
||||
cd ${LLVMDIR}/llvm/tools
|
||||
for UTIL in clang lld; do
|
||||
if [ ! -e ${UTIL} ]; then
|
||||
ln -sf ../../${UTIL} .
|
||||
fi
|
||||
done
|
||||
mkdir -p ${LLVMDIR}/llvm/build
|
||||
cd ${LLVMDIR}/llvm/build
|
||||
cmake -G Ninja \
|
||||
-DLLVM_HOST_TRIPLE="x86_64-w64-mingw32" \
|
||||
-DCMAKE_C_COMPILER=x86_64-w64-mingw32-gcc \
|
||||
-DCMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ \
|
||||
-DCMAKE_RC_COMPILER=x86_64-w64-mingw32-windres \
|
||||
-DCMAKE_SYSTEM_NAME=Windows \
|
||||
-DCMAKE_BUILD_TYPE="Release" \
|
||||
-DCMAKE_INSTALL_PREFIX=${BINDIR} \
|
||||
-DLLDB_INCLUDE_TESTS=FALSE \
|
||||
-DLLVM_ENABLE_ASSERTIONS=FALSE \
|
||||
-DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;lld;lldb" \
|
||||
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
|
||||
-DLLVM_LINK_LLVM_DYLIB=ON \
|
||||
-DLLVM_TARGETS_TO_BUILD="$(echo ${LLVM_ARCHS[@]} | tr ' ' ';')" \
|
||||
-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" \
|
||||
..
|
||||
ninja install/strip
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and installs MINGW CRT
|
||||
mingw_build_crt()
|
||||
{
|
||||
for ARCH in ${ARCHS}; do
|
||||
echo ">>> Building Mingw-W64 (CRT) for ${ARCH} ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-crt/build-${ARCH}
|
||||
mkdir -p ${MINGWDIR}/mingw-w64-crt/build-${ARCH}
|
||||
cd ${MINGWDIR}/mingw-w64-crt/build-${ARCH}
|
||||
case ${ARCH} in
|
||||
"aarch64")
|
||||
FLAGS="--disable-lib32 --disable-lib64 --enable-libarm64"
|
||||
;;
|
||||
"armv7")
|
||||
FLAGS="--disable-lib32 --disable-lib64 --enable-libarm32"
|
||||
;;
|
||||
"i686")
|
||||
FLAGS="--enable-lib32 --disable-lib64"
|
||||
;;
|
||||
"x86_64")
|
||||
FLAGS="--disable-lib32 --enable-lib64"
|
||||
;;
|
||||
esac
|
||||
ORIGPATH="${PATH}"
|
||||
PATH="${BINDIR}/bin:${PATH}"
|
||||
../configure \
|
||||
--disable-dependency-tracking \
|
||||
--host=${ARCH}-w64-mingw32 \
|
||||
--prefix=${BINDIR}/${ARCH}-w64-mingw32 \
|
||||
--with-sysroot=${BINDIR} \
|
||||
--with-default-msvcrt=${MINGWLIB} \
|
||||
--enable-cfguard \
|
||||
${FLAGS}
|
||||
make -j${CORES}
|
||||
make install
|
||||
PATH="${ORIGPATH}"
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and installs MINGW headers
|
||||
mingw_build_headers()
|
||||
{
|
||||
echo ">>> Building Mingw-W64 (headers) ..."
|
||||
[ -z ${CLEAN} ] || rm -rf ${MINGWDIR}/mingw-w64-headers/build-${GENERIC}
|
||||
mkdir -p ${MINGWDIR}/mingw-w64-headers/build-${GENERIC}
|
||||
cd ${MINGWDIR}/mingw-w64-headers/build-${GENERIC}
|
||||
../configure \
|
||||
--prefix=${BINDIR}/${GENERIC} \
|
||||
--enable-idl \
|
||||
--with-default-msvcrt=${MINGWLIB} \
|
||||
--with-default-win32-winnt=${MINGWNTV}
|
||||
make -j${CORES}
|
||||
make install
|
||||
for ARCH in ${ARCHS}; do
|
||||
mkdir -p ${BINDIR}/${ARCH}-w64-mingw32
|
||||
if [ ! -e ${BINDIR}/${ARCH}-w64-mingw32/include ]; then
|
||||
ln -sfn ../${GENERIC}/include ${BINDIR}/${ARCH}-w64-mingw32/include
|
||||
fi
|
||||
done
|
||||
cd ${WRKDIR}
|
||||
}
|
||||
|
||||
# This function compiles and installs XTCHAIN tools
|
||||
xtchain_build()
|
||||
{
|
||||
echo ">>> Building XTchain ..."
|
||||
mkdir -p ${BINDIR}/bin
|
||||
mkdir -p ${BINDIR}/lib/xtchain
|
||||
mkdir -p ${BINDIR}/${GENERIC}/bin
|
||||
cp ${WRKDIR}/scripts/*-wrapper ${BINDIR}/${GENERIC}/bin
|
||||
for ARCH in ${ARCHS}; do
|
||||
for EXEC in bin2c exetool xtcspecc; do
|
||||
if [ ! -e ${BINDIR}/bin/${EXEC}.exe ]; then
|
||||
x86_64-w64-mingw32-gcc ${WRKDIR}/tools/${EXEC}.c -o ${BINDIR}/bin/${EXEC}.exe
|
||||
fi
|
||||
cp ${BINDIR}/bin/${EXEC}.exe ${BINDIR}/bin/${ARCH}-w64-mingw32-${EXEC}.exe
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
# Exit immediately on any failure
|
||||
set -e
|
||||
|
||||
# Check number of CPU cores available
|
||||
if [[ ! -n ${CORES} ]]; then
|
||||
: ${CORES:=$(sysctl -n hw.ncpu 2>/dev/null)}
|
||||
: ${CORES:=$(nproc 2>/dev/null)}
|
||||
: ${CORES:=1}
|
||||
fi
|
||||
|
||||
# Create working directories
|
||||
mkdir -p ${BINDIR}
|
||||
mkdir -p ${SRCDIR}
|
||||
|
||||
# XTchain
|
||||
#xtchain_build
|
||||
|
||||
# Download LLVM
|
||||
#llvm_fetch
|
||||
|
||||
# Build and install LLVM
|
||||
#llvm_build
|
||||
|
||||
# Download Mingw-W64
|
||||
#mingw_fetch
|
||||
|
||||
# Build and install Mingw-W64 headers
|
||||
#mingw_build_headers
|
||||
|
||||
# Build and install Mingw-W64 CRT
|
||||
mingw_build_crt
|
||||
exit 1
|
||||
|
||||
# Build and install LLVM compiler runtime
|
||||
llvm_build_runtime
|
||||
|
||||
# Build and install LLVM compiler libraries
|
||||
llvm_build_libs
|
||||
|
||||
# Build and install Mingw-W64 libraries
|
||||
mingw_build_libs
|
||||
|
||||
# Build and install Mingw-W64 tools
|
||||
mingw_build_tools
|
||||
|
||||
# Download Binutils
|
||||
binutils_fetch
|
||||
|
||||
# Build and install Binutils
|
||||
binutils_build
|
||||
|
||||
# Download Wine
|
||||
wine_fetch
|
||||
|
||||
# Build and install Wine tools
|
||||
wine_build
|
||||
|
||||
# Download Make
|
||||
make_fetch
|
||||
|
||||
# Build and install Make
|
||||
make_build
|
||||
|
||||
# Download CMake
|
||||
cmake_fetch
|
||||
|
||||
# Build and install CMake
|
||||
cmake_build
|
||||
|
||||
# Download Ninja
|
||||
ninja_fetch
|
||||
|
||||
# Build and install Ninja
|
||||
ninja_build
|
||||
|
||||
# Remove 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}/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
|
||||
cd ${WRKDIR}
|
||||
: ${XTCVER:=$(git describe --exact-match --tags 2>/dev/null)}
|
||||
: ${XTCVER:=DEVEL}
|
||||
echo "${XTCVER}" > ${BINDIR}/Version
|
||||
|
||||
# Prepare archive
|
||||
echo ">>> Creating toolchain archive ..."
|
||||
tar -I 'zstd -19' -cpf xtchain-${XTCVER}-linux.tar.zst -C ${BINDIR} .
|
30
patches/binutils/2_41/001-add-arm-architectures.patch
Normal dosya
30
patches/binutils/2_41/001-add-arm-architectures.patch
Normal dosya
@@ -0,0 +1,30 @@
|
||||
diff --git a/bfd/config.bfd b/bfd/config.bfd
|
||||
index bdee53957c0..04fff6e7df4 100644
|
||||
--- a/bfd/config.bfd
|
||||
+++ b/bfd/config.bfd
|
||||
@@ -407,6 +407,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-*-mingw*)
|
||||
+ 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 3429f850d05..fa735da7ce6 100644
|
||||
--- a/gas/configure.tgt
|
||||
+++ b/gas/configure.tgt
|
||||
@@ -164,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-*-mingw*) fmt=coff em=pe ;;
|
||||
arm-*-fuchsia*) fmt=elf ;;
|
||||
arm-*-haiku*) fmt=elf em=haiku ;;
|
||||
|
@@ -1,13 +0,0 @@
|
||||
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()
|
@@ -1,13 +0,0 @@
|
||||
diff --git a/src/job.c b/src/job.c
|
||||
index d6e28d3..f8f6950 100644
|
||||
--- a/src/job.c
|
||||
+++ b/src/job.c
|
||||
@@ -2391,7 +2391,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
- cmd = (char *)find_in_given_path (argv[0], p, 0);
|
||||
+ cmd = (char *)find_in_given_path (argv[0], p, 0, false);
|
||||
}
|
||||
|
||||
if (!cmd)
|
@@ -1,79 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import struct
|
||||
|
||||
if len(sys.argv) < 3:
|
||||
print("XTChain ExeTool for modifying PE/COFF image subsystem\nNot sufficient parametrs. '[PE/COFF Image File]' '[SubSystem]'")
|
||||
sys.exit(1)
|
||||
|
||||
ImageFile = sys.argv[1]
|
||||
Subsystem = sys.argv[2].upper()
|
||||
|
||||
# Set proper subsystem
|
||||
if Subsystem == "UNKNOWN":
|
||||
ImageSubsystem = 0x00
|
||||
elif Subsystem == "NT_NATIVE":
|
||||
ImageSubsystem = 0x01
|
||||
elif Subsystem == "WINDOWS_GUI":
|
||||
ImageSubsystem = 0x02
|
||||
elif Subsystem == "WINDOWS_CLI":
|
||||
ImageSubsystem = 0x03
|
||||
elif Subsystem == "WINDOWS_CE_OLD":
|
||||
ImageSubsystem = 0x04
|
||||
elif Subsystem == "OS2_CUI":
|
||||
ImageSubsystem = 0x05
|
||||
elif Subsystem == "POSIX_CUI":
|
||||
ImageSubsystem = 0x07
|
||||
elif Subsystem == "NATIVE_WINDOWS":
|
||||
ImageSubsystem = 0x08
|
||||
elif Subsystem == "WINDOWS_CE_GUI":
|
||||
ImageSubsystem = 0x09
|
||||
elif Subsystem == "EFI_APPLICATION":
|
||||
ImageSubsystem = 0x0A
|
||||
elif Subsystem == "EFI_BOOT_SERVICE_DRIVER":
|
||||
ImageSubsystem = 0x0B
|
||||
elif Subsystem == "EFI_RUNTIME_DRIVER":
|
||||
ImageSubsystem = 0x0C
|
||||
elif Subsystem == "EFI_ROM":
|
||||
ImageSubsystem = 0x0D
|
||||
elif Subsystem == "XBOX":
|
||||
ImageSubsystem = 0x0E
|
||||
elif Subsystem == "WINDOWS_BOOT_APPLICATION":
|
||||
ImageSubsystem = 0x10
|
||||
elif Subsystem == "XT_NATIVE_KERNEL":
|
||||
ImageSubsystem = 0x14
|
||||
elif Subsystem == "XT_NATIVE_APPLICATION":
|
||||
ImageSubsystem = 0x15
|
||||
elif Subsystem == "XT_NATIVE_DRIVER":
|
||||
ImageSubsystem = 0x16
|
||||
elif Subsystem == "XT_DYNAMIC_LIBRARY":
|
||||
ImageSubsystem = 0x17
|
||||
elif Subsystem == "XT_APPLICATION_CLI":
|
||||
ImageSubsystem = 0x18
|
||||
elif Subsystem == "XT_APPLICATION_GDI":
|
||||
ImageSubsystem = 0x19
|
||||
else:
|
||||
print("Invalid subsystem privided")
|
||||
exit(2)
|
||||
|
||||
# Open PE/COFF image file
|
||||
PeImage = open(sys.argv[1], "r+b")
|
||||
|
||||
# Get PE header
|
||||
PeImage.seek(0x3C)
|
||||
(PeHeader,)=struct.unpack("H", PeImage.read(2))
|
||||
|
||||
# Get PE signature
|
||||
PeImage.seek(PeHeader)
|
||||
(PeSignature,)=struct.unpack("I", PeImage.read(4))
|
||||
if PeSignature != 0x4550:
|
||||
print("Invalid or corrupted PE header")
|
||||
|
||||
# Set new image subsystem
|
||||
PeImage.seek(PeHeader + 0x5C)
|
||||
print("Setting subsystem to " + str(ImageSubsystem))
|
||||
PeImage.write(struct.pack("H", ImageSubsystem))
|
||||
|
||||
# Close PE/COFF image file
|
||||
PeImage.close()
|
@@ -51,6 +51,19 @@ chbuild()
|
||||
}
|
||||
export -f chbuild
|
||||
|
||||
# Prints help
|
||||
help()
|
||||
{
|
||||
version
|
||||
echo "XTChain defines an internal list of commands:"
|
||||
echo " * charch [arch] - sets the target CPU architecture [aarch64/armv7/i686/amd64]"
|
||||
echo " * chbuild [type] - sets build type [debug/release]"
|
||||
echo " * help - prints this message"
|
||||
echo " * version - prints XTChain and its components version"
|
||||
echo " * xbuild - builds an application with a Ninja build system"
|
||||
}
|
||||
export -f help
|
||||
|
||||
# Displays version banner
|
||||
version()
|
||||
{
|
||||
@@ -66,9 +79,26 @@ version()
|
||||
echo "Wine Message Compiler Version: $(${XTCDIR}/bin/wmc -V | grep 'version' | cut -d' ' -f5)"
|
||||
echo "Wine Resource Compiler Version: $(${XTCDIR}/bin/wrc --version | grep 'version' | cut -d' ' -f5)"
|
||||
echo
|
||||
charch ${TARGET}
|
||||
chbuild DEBUG
|
||||
charch ${TARGET:-amd64}
|
||||
chbuild ${BUILD_TYPE:-DEBUG}
|
||||
echo
|
||||
echo
|
||||
}
|
||||
export -f version
|
||||
|
||||
# Builds application (wrapper to Ninja)
|
||||
xbuild()
|
||||
{
|
||||
if [ ! -f build.arch ]; then
|
||||
ninja "$@"
|
||||
else
|
||||
ARCH=$(cat build.arch)
|
||||
if [ x"${ARCH}" != x"${TARGET}" ]; then
|
||||
echo "Build is configured for '${ARCH}' while current target set to '${TARGET}'!"
|
||||
echo "Cannot continue until conflict is resolved ..."
|
||||
return 1
|
||||
fi
|
||||
ninja "$@"
|
||||
fi
|
||||
}
|
||||
export -f xbuild
|
||||
|
74
tools/bin2c.c
Normal dosya
74
tools/bin2c.c
Normal dosya
@@ -0,0 +1,74 @@
|
||||
/**
|
||||
* PROJECT: XTchain
|
||||
* LICENSE: See COPYING.md in the top level directory
|
||||
* FILE: tools/bin2c.c
|
||||
* DESCRIPTION: Binary to C converter
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#include "xtchain.h"
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
/* Check for proper number of arguments */
|
||||
if(argc != 4)
|
||||
{
|
||||
printf("Usage: %s <input binary> <output file> <structure name>\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Open the input binary file in binary mode */
|
||||
FILE *inputFile = fopen(argv[1], "rb");
|
||||
if(inputFile == NULL)
|
||||
{
|
||||
printf("Error: unable to open file %s\n", argv[1]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Open the destination source code file in text mode */
|
||||
FILE *outputFile = fopen(argv[2], "w");
|
||||
if(outputFile == NULL)
|
||||
{
|
||||
printf("Error: unable to open file %s\n", argv[2]);
|
||||
fclose(inputFile);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Get the size of the binary file */
|
||||
fseek(inputFile, 0, SEEK_END);
|
||||
long binSize = ftell(inputFile);
|
||||
rewind(inputFile);
|
||||
|
||||
/* Allocate memory for the binary data */
|
||||
unsigned char *binData = (unsigned char *)malloc(binSize);
|
||||
if(binData == NULL)
|
||||
{
|
||||
printf("Error: unable to allocate memory for binary data\n");
|
||||
fclose(inputFile);
|
||||
fclose(outputFile);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Read the binary data into memory */
|
||||
fread(binData, sizeof(unsigned char), binSize, inputFile);
|
||||
|
||||
/* Write the C structure to the header file */
|
||||
fprintf(outputFile, "unsigned char %s[] = {", argv[3]);
|
||||
for(int i = 0; i < binSize; i++)
|
||||
{
|
||||
fprintf(outputFile, "0x%02X", binData[i]);
|
||||
if(i < binSize - 1)
|
||||
{
|
||||
fprintf(outputFile, ",");
|
||||
}
|
||||
}
|
||||
fprintf(outputFile, "};\nunsigned int %s_size = %ld;\n", argv[3], binSize);
|
||||
free(binData);
|
||||
|
||||
/* Close all open files */
|
||||
fclose(inputFile);
|
||||
fclose(outputFile);
|
||||
|
||||
printf("Binary data converted to C structure successfully.\n");
|
||||
return 0;
|
||||
}
|
182
tools/exetool.c
Normal dosya
182
tools/exetool.c
Normal dosya
@@ -0,0 +1,182 @@
|
||||
/**
|
||||
* PROJECT: XTchain
|
||||
* LICENSE: See COPYING.md in the top level directory
|
||||
* FILE: tools/exetool.c
|
||||
* DESCRIPTION: Portable Executable (PE) utility for changing its signature and 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[] = {
|
||||
{0x00, "INVALID_SUBSYSTEM"},
|
||||
{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"}
|
||||
};
|
||||
|
||||
PPE_SUBSYSTEM getSubSystem(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(strcasecmp(SubSystem->Name, Name) == 0)
|
||||
{
|
||||
/* Subsystem found, return its ID */
|
||||
return SubSystem;
|
||||
}
|
||||
}
|
||||
|
||||
/* No valid subsystem found */
|
||||
return &SubSystems[0];
|
||||
}
|
||||
|
||||
char *getSubSystemName(int Identifier)
|
||||
{
|
||||
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(SubSystem->Identifier == Identifier)
|
||||
{
|
||||
/* Subsystem found, return its ID */
|
||||
return SubSystem->Name;
|
||||
}
|
||||
}
|
||||
|
||||
/* No valid subsystem found */
|
||||
return SubSystems[0].Name;
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *ExeFile;
|
||||
unsigned char Signature[4];
|
||||
unsigned int HeaderOffset;
|
||||
unsigned int ImageSignature;
|
||||
unsigned short SubSystem;
|
||||
PPE_SUBSYSTEM NewSubSystem;
|
||||
|
||||
/* Check for proper number of arguments */
|
||||
if(argc != 3)
|
||||
{
|
||||
printf("Usage: %s <filename> <new SubSystem>\n", argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Parse the new SubSystem value from the command line argument */
|
||||
NewSubSystem = getSubSystem(argv[2]);
|
||||
if(NewSubSystem->Identifier == 0)
|
||||
{
|
||||
/* Invalid SubSystem provided */
|
||||
printf("Error: %s is not a valid PE SubSystem\n", argv[2]);
|
||||
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 2;
|
||||
}
|
||||
|
||||
/* 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 3;
|
||||
}
|
||||
|
||||
/* 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) &&
|
||||
(Signature[0] != 'P' || Signature[1] != 'E' || Signature[2] != 'X' || Signature[3] != 'T'))
|
||||
{
|
||||
/* Invalid PE header */
|
||||
printf("Error: %s is not a valid PE file\n", argv[1]);
|
||||
fclose(ExeFile);
|
||||
return 3;
|
||||
}
|
||||
|
||||
/* Check if setting XT subsystem */
|
||||
if(NewSubSystem->Identifier >= 0x14 && NewSubSystem->Identifier <= 0x19)
|
||||
{
|
||||
/* Write PEXT signature */
|
||||
ImageSignature = 0x54584550;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Write PE00 signature */
|
||||
ImageSignature = 0x00004550;
|
||||
}
|
||||
|
||||
/* Seek back to header offset and write new signature */
|
||||
fseek(ExeFile, HeaderOffset, SEEK_SET);
|
||||
fwrite(&ImageSignature, sizeof(ImageSignature), 1, ExeFile);
|
||||
|
||||
/* 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);
|
||||
|
||||
/* Seek back to the SubSystem field in the optional header */
|
||||
fseek(ExeFile, -sizeof(unsigned short), SEEK_CUR);
|
||||
|
||||
/* Write the new SubSystem value */
|
||||
fwrite(&NewSubSystem->Identifier, sizeof(unsigned short), 1, ExeFile);
|
||||
|
||||
/* Close the file */
|
||||
fclose(ExeFile);
|
||||
|
||||
/* Finished successfully */
|
||||
printf("PE SubSystem modified: 0x%02X <%s> to 0x%02X <%s>\n",
|
||||
SubSystem, getSubSystemName(SubSystem), NewSubSystem->Identifier, NewSubSystem->Name);
|
||||
return 0;
|
||||
}
|
558
tools/windres.c
558
tools/windres.c
@@ -1,558 +0,0 @@
|
||||
/**
|
||||
* PROJECT: XTchain
|
||||
* LICENSE: See COPYING.md in the top level directory
|
||||
* FILE: tools/windres.c
|
||||
* DESCRIPTION: WINDRES compatible interface to LLVM
|
||||
* DEVELOPERS: Josh de Kock <josh@itanimul.li>
|
||||
* Martin Storsjo <martin@martin.st>
|
||||
* Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#include "xtchain.h"
|
||||
|
||||
#define WINDRES_VERSION "1.0"
|
||||
|
||||
#ifndef DEFAULT_TARGET
|
||||
#define DEFAULT_TARGET "x86_64-w64-mingw32"
|
||||
#endif
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define _tspawnvp_escape _spawnvp
|
||||
|
||||
#include <sys/wait.h>
|
||||
#include <errno.h>
|
||||
|
||||
#define _P_WAIT 0
|
||||
|
||||
static
|
||||
int
|
||||
_spawnvp(int mode,
|
||||
const char *filename,
|
||||
const char * const *argv)
|
||||
{
|
||||
pid_t pid;
|
||||
|
||||
if(!(pid = fork()))
|
||||
{
|
||||
execvp(filename, (char **) argv);
|
||||
perror(filename);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int stat = 0;
|
||||
|
||||
if(waitpid(pid, &stat, 0) == -1)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(WIFEXITED(stat))
|
||||
{
|
||||
return WEXITSTATUS(stat);
|
||||
}
|
||||
errno = EIO;
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
static
|
||||
const
|
||||
char *unescape_cpp(const char *str)
|
||||
{
|
||||
char *out = strdup(str);
|
||||
int len = strlen(str);
|
||||
int i, outpos = 0;
|
||||
|
||||
for(i = 0; i < len - 1; i++)
|
||||
{
|
||||
if(str[i] == '\\' && str[i + 1] == '"')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
out[outpos++] = str[i];
|
||||
}
|
||||
|
||||
while(i < len)
|
||||
{
|
||||
out[outpos++] = str[i++];
|
||||
}
|
||||
|
||||
out[outpos++] = '\0';
|
||||
|
||||
return out;
|
||||
}
|
||||
|
||||
static
|
||||
void print_version(void)
|
||||
{
|
||||
printf("XTchain windres (GNU windres compatible) %s\n", WINDRES_VERSION);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
static
|
||||
void print_help(void)
|
||||
{
|
||||
printf(
|
||||
"usage: llvm-windres <OPTION> [INPUT-FILE] [OUTPUT-FILE]\n"
|
||||
"\n"
|
||||
"LLVM Tool to manipulate Windows resources with a GNU windres interface.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
" -i, --input <arg> Name of the input file.\n"
|
||||
" -o, --output <arg> Name of the output file.\n"
|
||||
" -J, --input-format <arg> Input format to read.\n"
|
||||
" -O, --output-format <arg> Output format to generate.\n"
|
||||
" --preprocessor <arg> Custom preprocessor command.\n"
|
||||
" --preprocessor-arg <arg> Preprocessor command arguments.\n"
|
||||
" -F, --target <arg> Target for COFF objects to be compiled for.\n"
|
||||
" -I, --include-dir <arg> Include directory to pass to preprocessor and resource compiler.\n"
|
||||
" -D, --define <arg[=val]> Define to pass to preprocessor.\n"
|
||||
" -U, --undefine <arg[=val]> Undefine to pass to preprocessor.\n"
|
||||
" -c, --codepage <arg> Default codepage to use when reading an rc file (0x0-0xffff).\n"
|
||||
" -l, --language <arg> Specify default language (0x0-0xffff).\n"
|
||||
" --use-temp-file Use a temporary file for the preprocessing output.\n"
|
||||
" -v, --verbose Enable verbose output.\n"
|
||||
" -V, --version Display version.\n"
|
||||
" -h, --help Display this message and exit.\n"
|
||||
"Input Formats:\n"
|
||||
" rc Text Windows Resource\n"
|
||||
" res Binary Windows Resource\n"
|
||||
"Output Formats:\n"
|
||||
" res Binary Windows Resource\n"
|
||||
" coff COFF object\n"
|
||||
"Targets:\n"
|
||||
" pe-x86-64\n"
|
||||
" pei-x86-64\n"
|
||||
" pe-i386\n"
|
||||
" pei-i386\n");
|
||||
exit(0);
|
||||
}
|
||||
|
||||
static
|
||||
void error(const char *basename,
|
||||
const char *fmt,
|
||||
...)
|
||||
{
|
||||
fprintf(stderr, _T(TS": error: "), basename);
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
fprintf(stderr, _T("\n"));
|
||||
va_end(ap);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
static
|
||||
void print_argv(const char **exec_argv)
|
||||
{
|
||||
while(*exec_argv)
|
||||
{
|
||||
fprintf(stderr, _T(TS" "), *exec_argv);
|
||||
exec_argv++;
|
||||
}
|
||||
|
||||
fprintf(stderr, _T("\n"));
|
||||
}
|
||||
|
||||
static
|
||||
void check_num_args(int arg,
|
||||
int max_arg)
|
||||
{
|
||||
if(arg > max_arg)
|
||||
{
|
||||
fprintf(stderr, "Too many options added\n");
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc,
|
||||
char* argv[])
|
||||
{
|
||||
const char *dir;
|
||||
const char *basename;
|
||||
const char *target;
|
||||
|
||||
split_argv(argv[0], &dir, &basename, &target, NULL);
|
||||
|
||||
if (!target)
|
||||
target = _T(DEFAULT_TARGET);
|
||||
|
||||
const char *bfd_target = NULL;
|
||||
const char *input = _T("-");
|
||||
const char *output = _T("/dev/stdout");
|
||||
const char *input_format = _T("rc");
|
||||
const char *output_format = _T("coff");
|
||||
const char **includes = malloc(argc * sizeof(*includes));
|
||||
int nb_includes = 0;
|
||||
const char *codepage = _T("1252");
|
||||
const char *language = NULL;
|
||||
const char **cpp_options = malloc(argc * sizeof(*cpp_options));
|
||||
int nb_cpp_options = 0;
|
||||
int verbose = 0;
|
||||
|
||||
#define _tcslen_const(a) (sizeof(a)/sizeof(char) - 1)
|
||||
|
||||
#define _tcsstart(a, b) !strncmp(a, b, _tcslen_const(b))
|
||||
|
||||
#define IF_MATCH_EITHER(short, long) \
|
||||
if(!strcmp(argv[i], _T(short)) || !strcmp(argv[i], _T(long)))
|
||||
|
||||
#define IF_MATCH_THREE(first, second, third) \
|
||||
if(!strcmp(argv[i], _T(first)) || !strcmp(argv[i], _T(second)) || !strcmp(argv[i], _T(third)))
|
||||
|
||||
#define OPTION(short, long, var) \
|
||||
if(_tcsstart(argv[i], _T(short)) && argv[i][_tcslen_const(_T(short))]) { \
|
||||
var = argv[i] + _tcslen_const(_T(short)); \
|
||||
} else if(_tcsstart(argv[i], _T(long "="))) { \
|
||||
var = strchr(argv[i], '=') + 1; \
|
||||
} else IF_MATCH_EITHER(short, long) { \
|
||||
if(i + 1 < argc) \
|
||||
var = argv[++i]; \
|
||||
else \
|
||||
error(basename, _T(TS" missing argument"), argv[i]); \
|
||||
}
|
||||
|
||||
#define SEPARATE_ARG(var) do { \
|
||||
if(i + 1 < argc) \
|
||||
var = argv[++i]; \
|
||||
else \
|
||||
error(basename, _T(TS" missing argument"), argv[i]); \
|
||||
} while (0)
|
||||
|
||||
#define SEPARATE_ARG_PREFIX(var, prefix) do { \
|
||||
if(i + 1 < argc) \
|
||||
var = concat(_T(prefix), argv[++i]); \
|
||||
else \
|
||||
error(basename, _T(TS" missing argument"), argv[i]); \
|
||||
} while (0)
|
||||
|
||||
for(int i = 1; i < argc; i++)
|
||||
{
|
||||
OPTION("-i", "--input", input)
|
||||
else OPTION("-o", "--output", output)
|
||||
else OPTION("-J", "--input-format", input_format)
|
||||
else OPTION("-O", "--output-format", output_format)
|
||||
else OPTION("-F", "--target", bfd_target)
|
||||
else IF_MATCH_THREE("-I", "--include-dir", "--include") {
|
||||
SEPARATE_ARG(includes[nb_includes++]);
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("--include-dir=")) ||
|
||||
_tcsstart(argv[i], _T("--include=")))
|
||||
{
|
||||
includes[nb_includes++] = strchr(argv[i], '=') + 1;
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("-I")))
|
||||
{
|
||||
includes[nb_includes++] = argv[i] + 2;
|
||||
}
|
||||
else OPTION("-c", "--codepage", codepage)
|
||||
else OPTION("-l", "--language", language)
|
||||
else if(!strcmp(argv[i], _T("--preprocessor")))
|
||||
{
|
||||
error(basename, _T("ENOSYS"));
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("--preprocessor-arg=")))
|
||||
{
|
||||
cpp_options[nb_cpp_options++] = strchr(argv[i], '=') + 1;
|
||||
}
|
||||
else if(!strcmp(argv[i], _T("--preprocessor-arg")))
|
||||
{
|
||||
SEPARATE_ARG(cpp_options[nb_cpp_options++]);
|
||||
}
|
||||
else IF_MATCH_EITHER("-D", "--define")
|
||||
{
|
||||
SEPARATE_ARG_PREFIX(cpp_options[nb_cpp_options++], "-D");
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("-D")))
|
||||
{
|
||||
cpp_options[nb_cpp_options++] = argv[i];
|
||||
}
|
||||
else IF_MATCH_EITHER("-U", "--undefine")
|
||||
{
|
||||
SEPARATE_ARG_PREFIX(cpp_options[nb_cpp_options++], "-U");
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("-U")))
|
||||
{
|
||||
cpp_options[nb_cpp_options++] = argv[i];
|
||||
}
|
||||
else IF_MATCH_EITHER("-v", "--verbose")
|
||||
{
|
||||
verbose = 1;
|
||||
}
|
||||
else IF_MATCH_EITHER("-V", "--version")
|
||||
{
|
||||
print_version();
|
||||
}
|
||||
else IF_MATCH_EITHER("-h", "--help")
|
||||
{
|
||||
print_help();
|
||||
}
|
||||
else if(!strcmp(argv[i], _T("--use-temp-file")))
|
||||
{
|
||||
// No-op, we use a temp file by default.
|
||||
}
|
||||
else if(_tcsstart(argv[i], _T("-")))
|
||||
{
|
||||
error(basename, _T("unrecognized option: `"TS"'"), argv[i]);
|
||||
}
|
||||
else
|
||||
{
|
||||
if(!strcmp(input, _T("-")))
|
||||
{
|
||||
input = argv[i];
|
||||
}
|
||||
else if(!strcmp(output, _T("/dev/stdout")))
|
||||
{
|
||||
output = argv[i];
|
||||
}
|
||||
else
|
||||
{
|
||||
error(basename, _T("rip: `"TS"'"), argv[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(bfd_target)
|
||||
{
|
||||
if(!strcmp(bfd_target, _T("pe-x86-64")) ||
|
||||
!strcmp(bfd_target, _T("pei-x86-64")))
|
||||
{
|
||||
target = _T("x86_64-w64-mingw32");
|
||||
}
|
||||
else if(!strcmp(bfd_target, _T("pe-i386")) ||
|
||||
!strcmp(bfd_target, _T("pei-i386")))
|
||||
{
|
||||
target = _T("i686-w64-mingw32");
|
||||
}
|
||||
else
|
||||
{
|
||||
error(basename, _T("unsupported target: `"TS"'"), bfd_target);
|
||||
}
|
||||
}
|
||||
|
||||
char *arch = strdup(target);
|
||||
char *dash = strchr(arch, '-');
|
||||
if(dash)
|
||||
{
|
||||
*dash = '\0';
|
||||
}
|
||||
|
||||
const char *machine = _T("unknown");
|
||||
|
||||
if(!strcmp(arch, _T("i686")))
|
||||
{
|
||||
machine = _T("X86");
|
||||
}
|
||||
else if(!strcmp(arch, _T("x86_64")))
|
||||
{
|
||||
machine = _T("X64");
|
||||
}
|
||||
else if(!strcmp(arch, _T("armv7")))
|
||||
{
|
||||
machine = _T("ARM");
|
||||
}
|
||||
else if(!strcmp(arch, _T("aarch64")))
|
||||
{
|
||||
machine = _T("ARM64");
|
||||
}
|
||||
|
||||
const char *CC = concat(target, _T("-clang"));
|
||||
const char **rc_options = malloc(2 * argc * sizeof(*cpp_options));
|
||||
int nb_rc_options = 0;
|
||||
|
||||
for(int i = 0; i < nb_includes; i++)
|
||||
{
|
||||
cpp_options[nb_cpp_options++] = concat(_T("-I"), includes[i]);
|
||||
rc_options[nb_rc_options++] = _T("-I");
|
||||
rc_options[nb_rc_options++] = includes[i];
|
||||
}
|
||||
|
||||
for(int i = 0; i < nb_cpp_options; i++)
|
||||
{
|
||||
cpp_options[i] = unescape_cpp(cpp_options[i]);
|
||||
}
|
||||
|
||||
const char *preproc_rc = concat(output, _T(".preproc.rc"));
|
||||
const char *res = concat(output, _T(".out.res"));
|
||||
|
||||
char *inputdir = strdup(input);
|
||||
{
|
||||
char *sep = _tcsrchrs(inputdir, '/', '\\');
|
||||
if(sep)
|
||||
{
|
||||
*sep = '\0';
|
||||
}
|
||||
else
|
||||
{
|
||||
inputdir = strdup(_T("."));
|
||||
}
|
||||
}
|
||||
|
||||
int max_arg = 2 * argc + 20;
|
||||
const char **exec_argv = malloc((max_arg + 1) * sizeof(*exec_argv));
|
||||
int arg = 0;
|
||||
|
||||
if(!_tcsicmp(input_format, _T("rc")))
|
||||
{
|
||||
exec_argv[arg++] = concat(dir, CC);
|
||||
exec_argv[arg++] = _T("-E");
|
||||
|
||||
for(int i = 0; i < nb_cpp_options; i++)
|
||||
{
|
||||
exec_argv[arg++] = cpp_options[i];
|
||||
}
|
||||
|
||||
exec_argv[arg++] = _T("-xc");
|
||||
exec_argv[arg++] = _T("-DRC_INVOKED=1");
|
||||
exec_argv[arg++] = input;
|
||||
exec_argv[arg++] = _T("-o");
|
||||
exec_argv[arg++] = preproc_rc;
|
||||
exec_argv[arg] = NULL;
|
||||
|
||||
check_num_args(arg, max_arg);
|
||||
|
||||
if(verbose)
|
||||
{
|
||||
print_argv(exec_argv);
|
||||
}
|
||||
|
||||
int ret = _tspawnvp_escape(_P_WAIT, exec_argv[0], exec_argv);
|
||||
|
||||
if(ret == -1)
|
||||
{
|
||||
perror(exec_argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(ret != 0)
|
||||
{
|
||||
error(basename, _T("preprocessor failed"));
|
||||
return ret;
|
||||
}
|
||||
|
||||
arg = 0;
|
||||
exec_argv[arg++] = concat(dir, _T("llvm-rc"));
|
||||
|
||||
for(int i = 0; i < nb_rc_options; i++)
|
||||
{
|
||||
exec_argv[arg++] = rc_options[i];
|
||||
}
|
||||
|
||||
exec_argv[arg++] = _T("-I");
|
||||
exec_argv[arg++] = inputdir;
|
||||
exec_argv[arg++] = preproc_rc;
|
||||
exec_argv[arg++] = _T("-c");
|
||||
exec_argv[arg++] = codepage;
|
||||
|
||||
if(language)
|
||||
{
|
||||
exec_argv[arg++] = _T("-l");
|
||||
exec_argv[arg++] = language;
|
||||
}
|
||||
|
||||
exec_argv[arg++] = _T("-fo");
|
||||
|
||||
if(!_tcsicmp(output_format, _T("res")))
|
||||
{
|
||||
exec_argv[arg++] = output;
|
||||
}
|
||||
else
|
||||
{
|
||||
exec_argv[arg++] = res;
|
||||
}
|
||||
|
||||
exec_argv[arg] = NULL;
|
||||
check_num_args(arg, max_arg);
|
||||
|
||||
if(verbose)
|
||||
{
|
||||
print_argv(exec_argv);
|
||||
}
|
||||
|
||||
ret = _tspawnvp_escape(_P_WAIT, exec_argv[0], exec_argv);
|
||||
|
||||
if(ret == -1)
|
||||
{
|
||||
perror(exec_argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(ret != 0)
|
||||
{
|
||||
error(basename, _T("llvm-rc failed"));
|
||||
if(!verbose)
|
||||
{
|
||||
unlink(preproc_rc);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
if(!_tcsicmp(output_format, _T("res")))
|
||||
{
|
||||
// All done
|
||||
}
|
||||
else if(!_tcsicmp(output_format, _T("coff")))
|
||||
{
|
||||
arg = 0;
|
||||
exec_argv[arg++] = concat(dir, _T("llvm-cvtres"));
|
||||
exec_argv[arg++] = res;
|
||||
exec_argv[arg++] = concat(_T("-machine:"), machine);
|
||||
exec_argv[arg++] = concat(_T("-out:"), output);
|
||||
exec_argv[arg] = NULL;
|
||||
|
||||
check_num_args(arg, max_arg);
|
||||
if(verbose)
|
||||
{
|
||||
print_argv(exec_argv);
|
||||
}
|
||||
|
||||
int ret = _tspawnvp_escape(_P_WAIT, exec_argv[0], exec_argv);
|
||||
if(ret == -1)
|
||||
{
|
||||
perror(exec_argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if(!verbose)
|
||||
{
|
||||
unlink(preproc_rc);
|
||||
unlink(res);
|
||||
}
|
||||
|
||||
return ret;
|
||||
} else {
|
||||
error(basename, _T("invalid output format: `"TS"'"), output_format);
|
||||
}
|
||||
}
|
||||
else if(!_tcsicmp(input_format, _T("res")))
|
||||
{
|
||||
exec_argv[arg++] = concat(dir, _T("llvm-cvtres"));
|
||||
exec_argv[arg++] = input;
|
||||
exec_argv[arg++] = concat(_T("-machine:"), machine);
|
||||
exec_argv[arg++] = concat(_T("-out:"), output);
|
||||
exec_argv[arg] = NULL;
|
||||
|
||||
check_num_args(arg, max_arg);
|
||||
|
||||
if(verbose)
|
||||
{
|
||||
print_argv(exec_argv);
|
||||
}
|
||||
|
||||
int ret = _tspawnvp_escape(_P_WAIT, exec_argv[0], exec_argv);
|
||||
if(ret == -1)
|
||||
{
|
||||
perror(exec_argv[0]);
|
||||
return 1;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
else
|
||||
{
|
||||
error(basename, _T("invalid input format: `"TS"'"), input_format);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Yeni konuda referans
Bir kullanıcı engelle