* remove -D from assemblers

This commit is contained in:
peter 1998-10-06 20:40:58 +00:00
parent 3048845e68
commit 8192030b20

View File

@ -354,7 +354,7 @@ implementation
id : as_o;
idtxt : 'O';
asmbin : 'as';
asmcmd : '-D -o $OBJ $ASM';
asmcmd : '-o $OBJ $ASM';
externals : false;
labelprefix : '.L';
comment : '# '
@ -363,7 +363,7 @@ implementation
id : as_o_aout;
idtxt : 'O_AOUT';
asmbin : 'as';
asmcmd : '-D -o $OBJ $ASM';
asmcmd : '-o $OBJ $ASM';
externals : false;
labelprefix : 'L';
comment : '# '
@ -372,7 +372,7 @@ implementation
id : as_asw;
idtxt : 'ASW';
asmbin : 'asw';
asmcmd : '-D -o $OBJ $ASM';
asmcmd : '-o $OBJ $ASM';
externals : false;
labelprefix : '.L';
comment : '# '
@ -428,7 +428,7 @@ implementation
id : as_o;
idtxt : 'O';
asmbin : 'as';
asmcmd : '-D -o $OBJ $ASM';
asmcmd : '-o $OBJ $ASM';
externals : false;
labelprefix : '.L';
comment : '# '
@ -437,7 +437,7 @@ implementation
id : as_gas;
idtxt : 'GAS';
asmbin : 'as68k'; { Gas for the Amiga}
asmcmd : '-D --register-prefix-optional -o $OBJ $ASM';
asmcmd : '--register-prefix-optional -o $OBJ $ASM';
externals : false;
labelprefix : '__L';
comment : '| '
@ -918,7 +918,10 @@ begin
end.
{
$Log$
Revision 1.36 1998-09-16 16:41:50 peter
Revision 1.37 1998-10-06 20:40:58 peter
* remove -D from assemblers
Revision 1.36 1998/09/16 16:41:50 peter
* merged fixes
Revision 1.33.2.3 1998/09/16 16:13:13 peter