Hi,
when trying to compile in the src/fpemu directory, i get some compile errors:
Now i'm stuck when compiling fpu_68020.c. The compiler is invoked with
m68k-atari-mint-gcc -m68000 -m68020-60, but that causes the assembler to be invoked with
as -m68040 -mcpu=68000 -mcpu=68000
thus selecting m68000 instruction set. Then it chokes about the inline bfffo asm statement. This happens only with gcc >= 7, with gcc 4.6.4 it works.
You should try to avoid passing more than one cpu option (it doesn't work in the original gcc anyway, because then the assembler options are pasted together)
Hi,
when trying to compile in the src/fpemu directory, i get some compile errors:
tftools/src/ext/libcmini/sources/div.c
Line 27 in ae12d16
tftools/src/common/cpu.S
Line 33 in ae12d16
tftools/src/common/cpu.S
Line 41 in ae12d16
https://github.com/agranlund/tftools/blob/master/src/common/sys.c: you should add (void) casts to all Cconws() calls, to avoid warning from the macro
tftools/src/fpemu/fpe/fpe_atari.c
Line 30 in ae12d16
Now i'm stuck when compiling fpu_68020.c. The compiler is invoked with
m68k-atari-mint-gcc -m68000 -m68020-60, but that causes the assembler to be invoked withthus selecting m68000 instruction set. Then it chokes about the inline
bfffoasm statement. This happens only with gcc >= 7, with gcc 4.6.4 it works.You should try to avoid passing more than one cpu option (it doesn't work in the original gcc anyway, because then the assembler options are pasted together)