mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
Sync revision with sourceforge
Added gcc9 following Zenith432's commit https://sourceforge.net/p/cloverefiboot/code/5079/
This commit is contained in:
parent
7f84770e50
commit
f6fdf0197c
@ -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
|
||||||
{
|
{
|
||||||
|
@ -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);
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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}
|
Loading…
Reference in New Issue
Block a user