From a398da4c72b5a65018ff8f4c1b70ed574a46a95d Mon Sep 17 00:00:00 2001 From: Karoly Balogh Date: Tue, 21 Nov 2023 13:10:04 +0100 Subject: [PATCH] human68k: fix xecutable generation --- compiler/systems/t_human68k.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_human68k.pas b/compiler/systems/t_human68k.pas index 83d8437452..826f5a7fa7 100644 --- a/compiler/systems/t_human68k.pas +++ b/compiler/systems/t_human68k.pas @@ -74,7 +74,7 @@ begin end else begin - ExeCmd[1]:='vlink $QLFLAGS $FLAGS $GCSECTIONS $OPT $STRIP $MAP -o $EXE -T $RES'; + ExeCmd[1]:='vlink -b xfile $FLAGS $GCSECTIONS $OPT $STRIP $MAP -o $EXE -T $RES'; end; end; end;