mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 09:39:09 +02:00
Add m68k specific option to gcc call to be sure to generate an error if the gcc does not target m68k CPU
git-svn-id: trunk@47282 -
This commit is contained in:
parent
92beecb6fe
commit
58a56e38d1
@ -2838,7 +2838,7 @@ begin
|
|||||||
powerpc64:result := GetGccDirArch('cpupowerpc64','-m64');
|
powerpc64:result := GetGccDirArch('cpupowerpc64','-m64');
|
||||||
arm: result := GetGccDirArch('cpuarm','-marm -march=armv2');
|
arm: result := GetGccDirArch('cpuarm','-marm -march=armv2');
|
||||||
aarch64: result := GetGccDirArch('cpuaarch64','-march=aarch64 -mcmodel=large');
|
aarch64: result := GetGccDirArch('cpuaarch64','-march=aarch64 -mcmodel=large');
|
||||||
m68k: result := GetGccDirArch('cpum68k','');
|
m68k: result := GetGccDirArch('cpum68k','-march=68020');
|
||||||
mips: result := GetGccDirArch('cpumips','-mips32 -EB -mabi=32');
|
mips: result := GetGccDirArch('cpumips','-mips32 -EB -mabi=32');
|
||||||
mipsel: result := GetGccDirArch('cpumipsel','-mips32 -EL -mabi=32');
|
mipsel: result := GetGccDirArch('cpumipsel','-mips32 -EL -mabi=32');
|
||||||
riscv32: result := GetGccDirArch('cpuriscv32','-march=rv32imafdc');
|
riscv32: result := GetGccDirArch('cpuriscv32','-march=rv32imafdc');
|
||||||
|
Loading…
Reference in New Issue
Block a user