1
0
mirror of https://github.com/AmigaPorts/docker-amiga-gcc.git synced 2025-11-19 16:22:32 +00:00

Fix m68k-amigaos image creation

This commit is contained in:
Marlon
2023-01-13 15:57:28 +01:00
parent 5c437762cd
commit 734f3161bf
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ set -e
export TARGET='m68k-amigaos'
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}"