mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
13bad1ac7a
Add the initial aarch64-w64-mingw32 target for gcc. This is the first commit in a sequence of patch series to add new aarch64-w64-mingw32 target. Coauthors: Zac Walker <zacwalker@microsoft.com>, Mark Harmstone <mark@harmstone.com> and Ron Riddle <ron.riddle@microsoft.com> Refactored, prepared, and validated by Radek Barton <radek.barton@microsoft.com> and Evgeny Karpov <evgeny.karpov@microsoft.com> fixincludes/ChangeLog: * mkfixinc.sh: Extend for *-mingw32* targets. gcc/ChangeLog: * config.gcc: Add aarch64-w64-mingw32 target.
33 lines
621 B
Bash
Executable File
33 lines
621 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo "Usage: $0 <target-mach-triplet>"
|
|
exit 1
|
|
fi
|
|
|
|
machine=$1
|
|
target=fixinc.sh
|
|
|
|
# Check for special fix rules for particular targets
|
|
case $machine in
|
|
i?86-*-cygwin* | \
|
|
*-mingw32* | \
|
|
powerpc-*-eabisim* | \
|
|
powerpc-*-eabi* | \
|
|
powerpc-*-rtems* | \
|
|
powerpcle-*-eabisim* | \
|
|
powerpcle-*-eabi* | \
|
|
*-*-vxworks7* | \
|
|
*-musl* )
|
|
# IF there is no include fixing,
|
|
# THEN create a no-op fixer and exit
|
|
(echo "#! /bin/sh" ; echo "exit 0" ) > ${target}
|
|
;;
|
|
|
|
*)
|
|
cat < ${srcdir}/fixinc.in > ${target} || exit 1
|
|
;;
|
|
esac
|
|
chmod 755 ${target}
|