From 609dc7884eae148ee725c93b3d78d69902f69a0c Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Tue, 4 Apr 2023 15:32:04 +0100 Subject: [PATCH] using gcc for powerpc macOS --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 1b66675..e96cba7 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([gamecube-tools],[1.0.4],[https://github.com/devkitPro/gamecube-tools/issues]) +AC_INIT([gamecube-tools],[1.0.6],[https://github.com/devkitPro/gamecube-tools/issues]) AC_CONFIG_SRCDIR([gdtool/gdtool.cpp]) AM_INIT_AUTOMAKE([subdir-objects]) @@ -27,7 +27,7 @@ case "$host" in esac case "$host" in - *-apple-darwin*) + x86_64-apple-darwin* | aarch64-apple-darwin* ) STDCPP_LIBS="-lc++" ;;