Sync revision with sourceforge

Added gcc9 following Zenith432's commit https://sourceforge.net/p/cloverefiboot/code/5079/
This commit is contained in:
vectorsigma 2019-09-12 08:49:40 +02:00
parent 7f84770e50
commit f6fdf0197c
5 changed files with 11 additions and 3 deletions

View File

@ -34,6 +34,10 @@
GRUB_MOD_LICENSE ("GPLv3+"); GRUB_MOD_LICENSE ("GPLv3+");
#if defined(__GNUC__) && __GNUC__ >= 9
#pragma GCC diagnostic ignored "-Waddress-of-packed-member"
#endif
/* The type of node. */ /* The type of node. */
enum grub_hfsplus_btnode_type enum grub_hfsplus_btnode_type
{ {

View File

@ -54,6 +54,10 @@
#define BP(msg) #define BP(msg)
#endif #endif
#if defined(__GNUC__) && __GNUC__ >= 9
#pragma GCC diagnostic ignored "-Waddress-of-packed-member"
#endif
static int hardlink = 0; static int hardlink = 0;
static fsw_status_t fsw_hfs_volume_mount(struct fsw_hfs_volume *vol); static fsw_status_t fsw_hfs_volume_mount(struct fsw_hfs_volume *vol);

View File

@ -22,7 +22,7 @@ if [[ "$(uname)" == Darwin ]] && [[ ! -x "$TOOLCHAIN_DIR"/cross/bin/x86_64-clove
echo -n b echo -n b
fi fi
echo "uilding it" echo "uilding it"
./build_gcc8.sh ./build_gcc9.sh
echo "Continuing..." echo "Continuing..."
fi fi

View File

@ -28,7 +28,7 @@ set -u # exit with error if unbound variables
# here we can change source versions of tools # here we can change source versions of tools
# #
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.32} export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.32}
export GCC_VERSION=${GCC_VERSION:-8.3.0} export GCC_VERSION=${GCC_VERSION:-9.2.0}
# Version of libraries are from ./contrib/download_prerequisites in gcc source directory # Version of libraries are from ./contrib/download_prerequisites in gcc source directory
export GMP_VERSION=${GMP_VERSION:-gmp-6.1.2} export GMP_VERSION=${GMP_VERSION:-gmp-6.1.2}

View File

@ -1 +1 @@
5078 5080