Skip to content
Snippets Groups Projects
Commit 29da8bd0 authored by Joe Garcia's avatar Joe Garcia
Browse files

macOS 15 Sequoia

parent 88631d69
No related branches found
No related tags found
No related merge requests found
......@@ -539,6 +539,9 @@ darwinVersionToMacVersion(){
 
darwinVersionToMacNickname(){
case $1 in
24)
echo Sequoia
;;
23)
echo Sonoma
;;
......@@ -3166,7 +3169,7 @@ if isDarwin ; then
10.14|10.15)
export MAC_SUPPORTED_CPUTYPES="x86_64 x86_64h"
;;
10.16|11*|12*|13*|14*)
10.16|11*|12*|13*|14*|15*)
export MAC_SUPPORTED_CPUTYPES="x86_64 x86_64h arm64"
;;
*)
......@@ -3240,7 +3243,7 @@ if isDarwin ; then
fi
 
case "${NATIVEMACVERSION}" in
10.6|10.7|10.8|10.9|10.10|10.11|10.12|10.13|10.14|10.15|10.16|11*|12*|13*|14*)
10.6|10.7|10.8|10.9|10.10|10.11|10.12|10.13|10.14|10.15|10.16|11*|12*|13*|14*|15*)
if [ -z "${OPTIMIZEFLAGS}" ] ; then
export OPTIMIZEFLAGS="${DEFAULTOPTIMIZEFLAGS}"
fi
......@@ -3367,7 +3370,7 @@ if isDarwin ; then
export MACGFORTRAN_FORCE_MINVERSION=10.16
MACGFORTRAN_INSTALL_TYPE=HPCTARBALL
;;
14*) #from http://hpc.sourceforge.net
14*|15*) #from http://hpc.sourceforge.net
if isARM ; then
GFORTRANPLATFORM=aarch64-apple-darwin23.2.0
GFORTRANVERSION=13.2.0
......@@ -3486,7 +3489,7 @@ if isDarwin ; then
export USE_PORTABLE_M4=YES
#export USE_PORTABLE_TK=YES
;;
10.16|11*|12*|13*|14*)
10.16|11*|12*|13*|14*|15*)
# known changes with 10.16+:?
export SB3FLAGS="${CPUFLAGS} ${OPTIMIZEFLAGS} -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET}"
export SB3FFLAGS="--sysroot=${SYSROOT} ${CPUFLAGS} -mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment