mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 14:19:28 +02:00
+ created the msdos internal linker class (empty for now)
git-svn-id: trunk@30810 -
This commit is contained in:
parent
ced1368221
commit
93ec811c97
@ -252,7 +252,8 @@
|
||||
ld_int_linux,
|
||||
ld_int_nativent,
|
||||
ld_int_netware,
|
||||
ld_int_windows
|
||||
ld_int_windows,
|
||||
ld_int_msdos
|
||||
);
|
||||
|
||||
tar = (ar_none
|
||||
|
@ -70,6 +70,12 @@ implementation
|
||||
function MakeExecutable:boolean;override;
|
||||
end;
|
||||
|
||||
{ TInternalLinkerMsDos }
|
||||
|
||||
TInternalLinkerMsDos=class(tinternallinker)
|
||||
|
||||
end;
|
||||
|
||||
|
||||
{****************************************************************************
|
||||
TExternalLinkerMsDosTLink
|
||||
@ -385,6 +391,7 @@ end;
|
||||
*****************************************************************************}
|
||||
|
||||
initialization
|
||||
RegisterLinker(ld_int_msdos,TInternalLinkerMsDos);
|
||||
{$if defined(USE_LINKER_TLINK)}
|
||||
RegisterLinker(ld_msdos,TExternalLinkerMsDosTLink);
|
||||
{$elseif defined(USE_LINKER_ALINK)}
|
||||
|
Loading…
Reference in New Issue
Block a user