mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-30 09:42:55 +02:00
* Fixed spelling mistakes in comments.
* Fixed some OS/2 parameters.
This commit is contained in:
parent
d9445e22e9
commit
58f554b16e
@ -60,7 +60,8 @@ unit systems;
|
|||||||
|
|
||||||
tasm = (
|
tasm = (
|
||||||
{$ifdef i386}
|
{$ifdef i386}
|
||||||
as_o,as_asw,as_nasmcoff, as_nasmelf, as_nasmobj, as_tasm, as_masm
|
as_o,as_o_aout,as_asw,as_nasmcoff, as_nasmelf, as_nasmobj,
|
||||||
|
as_tasm, as_masm
|
||||||
{$endif}
|
{$endif}
|
||||||
{$ifdef m68k}
|
{$ifdef m68k}
|
||||||
as_o,as_gas,as_mit,as_mot
|
as_o,as_gas,as_mit,as_mot
|
||||||
@ -224,11 +225,11 @@ implementation
|
|||||||
use_function_relative_addresses : true
|
use_function_relative_addresses : true
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
name : 'OS/2 (32bit)';
|
name : 'OS/2 via EMX';
|
||||||
sharedlibext : '.ao2';
|
sharedlibext : '.ao2';
|
||||||
staticlibext : '.a';
|
staticlibext : '.ao2';
|
||||||
sourceext : '.pp';
|
sourceext : '.pas';
|
||||||
pasext : '.pas';
|
pasext : '.pp';
|
||||||
exeext : '.exe';
|
exeext : '.exe';
|
||||||
scriptext : '.cmd';
|
scriptext : '.cmd';
|
||||||
Cprefix : '_';
|
Cprefix : '_';
|
||||||
@ -321,6 +322,15 @@ implementation
|
|||||||
labelprefix : '.L';
|
labelprefix : '.L';
|
||||||
comment : '# '
|
comment : '# '
|
||||||
)
|
)
|
||||||
|
,(
|
||||||
|
id : as_o_aout;
|
||||||
|
idtxt : 'O';
|
||||||
|
asmbin : 'as';
|
||||||
|
asmcmd : '-D -o $OBJ $ASM';
|
||||||
|
externals : false;
|
||||||
|
labelprefix : 'L';
|
||||||
|
comment : '# '
|
||||||
|
)
|
||||||
,(
|
,(
|
||||||
id : as_asw;
|
id : as_asw;
|
||||||
idtxt : 'ASW';
|
idtxt : 'ASW';
|
||||||
@ -483,7 +493,7 @@ implementation
|
|||||||
bindbin : 'emxbind';
|
bindbin : 'emxbind';
|
||||||
bindcmd : '-o $EXE.exe $EXE -k$STACKKB -aim -s$HEAPKB';
|
bindcmd : '-o $EXE.exe $EXE -k$STACKKB -aim -s$HEAPKB';
|
||||||
stripopt : '-s';
|
stripopt : '-s';
|
||||||
libpathprefix : '-L';
|
libpathprefix : '';
|
||||||
libpathsuffix : '';
|
libpathsuffix : '';
|
||||||
groupstart : '-(';
|
groupstart : '-(';
|
||||||
groupend : '-)';
|
groupend : '-)';
|
||||||
@ -547,7 +557,7 @@ implementation
|
|||||||
unitlibext : '.PPL';
|
unitlibext : '.PPL';
|
||||||
asmext : '.S1';
|
asmext : '.S1';
|
||||||
objext : '.O1';
|
objext : '.O1';
|
||||||
exeext : ''; { The linker procedures a.out }
|
exeext : ''; { The linker produces a.out }
|
||||||
os : os_GO32V1;
|
os : os_GO32V1;
|
||||||
link : link_ldgo32v1;
|
link : link_ldgo32v1;
|
||||||
assem : as_o;
|
assem : as_o;
|
||||||
@ -604,10 +614,10 @@ implementation
|
|||||||
unitlibext : '.ppl';
|
unitlibext : '.ppl';
|
||||||
asmext : '.so2';
|
asmext : '.so2';
|
||||||
objext : '.oo2';
|
objext : '.oo2';
|
||||||
exeext : ''; { The linker procedures a.out }
|
exeext : ''; { The linker produces a.out }
|
||||||
os : os_OS2;
|
os : os_OS2;
|
||||||
link : link_ldos2;
|
link : link_ldos2;
|
||||||
assem : as_o;
|
assem : as_o_aout;
|
||||||
ar : ar_ar
|
ar : ar_ar
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@ -834,7 +844,13 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.18 1998-06-08 22:59:54 peter
|
Revision 1.19 1998-06-15 13:34:24 daniel
|
||||||
|
|
||||||
|
|
||||||
|
* Fixed spelling mistakes in comments.
|
||||||
|
* Fixed some OS/2 parameters.
|
||||||
|
|
||||||
|
Revision 1.18 1998/06/08 22:59:54 peter
|
||||||
* smartlinking works for win32
|
* smartlinking works for win32
|
||||||
* some defines to exclude some compiler parts
|
* some defines to exclude some compiler parts
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user