+ add static libraries to the wlink script for the msdos target

git-svn-id: branches/i8086@23966 -
This commit is contained in:
nickysn 2013-03-23 00:05:50 +00:00
parent f2242568bb
commit fb12778f0e

View File

@ -253,6 +253,12 @@ begin
if s<>'' then
LinkRes.Add('file ' + maybequoted(s));
end;
while not StaticLibFiles.Empty do
begin
s:=StaticLibFiles.GetFirst;
if s<>'' then
LinkRes.Add('library '+MaybeQuoted(s));
end;
LinkRes.Add('format dos');
LinkRes.Add('option dosseg');
LinkRes.Add('name ' + maybequoted(current_module.exefilename));