1
0
mirror of https://github.com/renbaoshuo/s2oj-gcc.git synced 2024-10-18 01:54:09 +00:00
s2oj-gcc/build.sh

65 lines
1.4 KiB
Bash
Raw Permalink Normal View History

2023-11-16 12:04:05 +00:00
#!/bin/bash
2023-11-18 08:40:07 +00:00
GIT_COMMIT=$(git rev-parse --short HEAD)
2023-11-16 12:04:05 +00:00
CURRENT_DIR=$(pwd)
GCC_VERSION=$(cat GCC_VERSION)
GCC_GIT="git://gcc.gnu.org/git/gcc.git"
2023-11-16 12:20:21 +00:00
GCC_SRC="${CURRENT_DIR}/../gcc"
2023-11-16 13:24:31 +00:00
build_cd() {
cd $@
echo "****** Now at: $(pwd)"
}
2023-11-16 12:04:05 +00:00
if [ -z "$GCC_VERSION" ]; then
echo "GCC_VERSION not set!"
exit 1
fi
2023-11-16 12:04:05 +00:00
# Clone GCC
echo "===> Cloning GCC..."
git clone -b "releases/gcc-$GCC_VERSION" --depth 1 "${GCC_GIT}" "${GCC_SRC}"
2023-11-16 13:24:31 +00:00
# Download prerequisites
echo "===> Downloading prerequisites..."
build_cd ${GCC_SRC}
./contrib/download_prerequisites
build_cd ${CURRENT_DIR}
2023-11-16 12:04:05 +00:00
# Apply patches
echo "===> Applying patches..."
2023-11-16 13:24:31 +00:00
build_cd ${GCC_SRC}
2023-11-16 12:29:49 +00:00
patch -p1 < ${CURRENT_DIR}/patches/gcc-$GCC_VERSION.patch
2023-11-16 13:24:31 +00:00
build_cd ${CURRENT_DIR}
2023-11-16 12:04:05 +00:00
# Configure GCC
echo "===> Configuring GCC..."
2023-11-16 13:24:31 +00:00
build_cd ${CURRENT_DIR}/build
2023-11-16 12:04:05 +00:00
${GCC_SRC}/configure -v \
--enable-languages=c,c++ \
2023-11-18 08:40:07 +00:00
--program-prefix=s2oj- \
2023-11-16 12:04:05 +00:00
--build=x86_64-linux-gnu \
--host=x86_64-linux-gnu \
--target=x86_64-linux-gnu \
2023-11-18 08:40:07 +00:00
--with-pkgversion="s2oj-gcc $GCC_VERSION-1baoshuo1~${GIT_COMMIT}"
2023-11-16 12:04:05 +00:00
# Build GCC
echo "===> Building GCC..."
make -j$(nproc)
2023-11-16 22:38:02 +00:00
# Prepare for packaging
echo "===> Preparing for packaging..."
2023-11-16 12:04:05 +00:00
make -j$(nproc) DESTDIR=${CURRENT_DIR}/deb install
2023-11-16 13:24:31 +00:00
build_cd ${CURRENT_DIR}/deb
2023-11-16 12:04:05 +00:00
mkdir -p DEBIAN
cat << EOF > DEBIAN/control
Package: s2oj-gcc
2023-11-18 08:40:07 +00:00
Version: $GCC_VERSION-1baoshuo1
2023-11-16 12:04:05 +00:00
Section: base
Priority: optional
Architecture: amd64
Maintainer: Baoshuo <i@baoshuo.ren>
Description: GCC $GCC_VERSION for S2OJ
EOF
2023-11-16 13:24:31 +00:00
build_cd ${CURRENT_DIR}