123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- #! /bin/sh -
- #
- # Deploy static cross-compilers for easy distribution
- #
- # Copyright (c) 2016-2021 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # Exit immediately on any error
- set -e
- PROGRAM="${0##*/}"
- # Show help via option
- if test "$1" = -h || test "$1" = --help
- then
- echo "Usage: $PROGRAM [TARGET]..."
- echo "Deploy static cross-compilers for easy distribution."
- echo ""
- echo "Where TARGET is any target found at the targets/ directory."
- echo "If no target name is passed, all available targets will be built."
- echo ""
- exit 0;
- fi
- # Override locale settings
- LC_ALL=C
- export LC_ALL
- umask 022
- ### Default values
- # Get physical working directory (absolute path)
- CWD="$(CDPATH='' cd -P -- "$(dirname -- "$0")" && pwd -P)"
- # Output directory for tarballs
- output="${CWD}/OUTPUT.darkcrusade"
- # Set temporary directory for compilation, exporting it
- TMPDIR="${output}"/sources
- export TMPDIR
- # Compose tag for tarball names using yearNumber+monthName+dayNumber
- tarname="darkcrusade_$(date +%Y%b%d)"
- # Prepare to start the cross compiler process in the phase 1
- phase_one="${output}/phase1-native-$(uname -m)-$(date +%Y-%m-%d.%H%M%S)-$$"
- echo "${PROGRAM}: Creating native cross compiler on $phase_one ..."
- "${CWD}"/bootstrap -s0 -o "$phase_one"
- # Now will start the preparatives to use the recent native cross compiler
- echo "${PROGRAM}: Using (existing) compiler from $phase_one ..."
- # Set flags according to the generated compiler
- for BTCC in "${phase_one}"/cross/*/bin/*-gcc
- do
- if test -x "$BTCC"
- then
- BTCC="$BTCC"
- break
- fi
- done
- for BTCXX in "${phase_one}"/cross/*/bin/*-g++
- do
- if test -x "$BTCXX"
- then
- BTCXX="$BTCXX"
- break
- fi
- done
- # Set and compose flags to be used as CC/CXX
- BTCC="$BTCC -static -Wl,-Bstatic -static-libgcc"
- BTCXX="$BTCXX -static -Wl,-Bstatic -static-libgcc"
- IS_DARKCRUSADE=IS_DARKCRUSADE
- export BTCC BTCXX IS_DARKCRUSADE
- # Loop for create the targets, phase 2
- for target in "${CWD}"/targets/${@:-*}
- do
- target="${target##*/}"
- phase_two="${output}/phase2-${target}-$(date +%Y-%m-%d.%H%M%S)-$$"
- # Build target against native compiler, logging its output
- echo "darkcrusade: Making target $target ..."
- rm -f "${output}/bootstrapfailed"
- {
- "${CWD}"/bootstrap -s0 -a "$target" -o "$phase_two" || touch "${output}/bootstrapfailed"
- } 2>&1 | tee "${output}/${tarname}-${target}.log"
- if test -f "${output}/bootstrapfailed"
- then
- echo "${PROGRAM}: An error occurred while processing the target: $target" 1>&2
- echo " Please check the log file ${output}/${tarname}-${target}.log" 1>&2
- exit 99;
- fi
- # Provide log file, tarball and checkum
- lzip -9 "${output}/${tarname}-${target}.log" &
- (
- cd -- "$phase_two" && \
- tarlz --solid -9 -cvf - -- cross/ \
- > "${output}/${tarname}-${target}.tar.lz"
- )
- (
- cd -- "$output" && \
- sha256sum "${tarname}-${target}.tar.lz" \
- > "${tarname}-${target}.tar.lz.sha256"
- )
- done
|