Update prep.sh for gcc13.1 builds

This commit is contained in:
Marlon Beijer 2023-04-27 13:54:34 +02:00 committed by GitHub
parent f6b4b63f6d
commit 215df63020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ set -e
export TARGET='m68k-amigaos-gcc10'
export SYSROOT=/opt/${TARGET}/usr
export M68K_CPU="-m68040 -mhard-float"
export M68K_COMMON="-s -ffast-math -fomit-frame-pointer -noixemul"
export M68K_COMMON="-s -ffast-math -fomit-frame-pointer"
export M68K_CFLAGS="${CFLAGS} ${M68K_CPU} ${M68K_COMMON}"
export M68K_CXXFLAGS="${CXXFLAGS} ${M68K_CPU} ${M68K_COMMON}"
export CURPATH="${PWD}"