123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712 |
- {
- Copyright (c) 1998-2008 by Peter Vreman
- This unit implements support import,export,link routines
- for the (i386) solaris target
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- unit t_sunos;
- {$i fpcdefs.inc}
- interface
- { copy from t_linux
- // Up to now we use gld since the solaris ld seems not support .res-files}
- {-$DEFINE LinkTest} { DON't del link.res and write Info }
- {$DEFINE GnuLd}{The other is not implemented }
- implementation
- uses
- sysutils,
- cutils,cfileutl,cclasses,
- verbose,systems,globtype,globals,
- symconst,script,
- fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,symsym,symdef,
- cgobj,
- import,export,expunix,link,comprsrc,rescmn,i_sunos,ogbase;
- type
- timportlibsolaris=class(timportlib)
- procedure generatelib;override;
- end;
- texportlibsolaris=class(texportlibunix)
- (*
- procedure setinitname(list: TAsmList; const s: string); override;
- procedure setfininame(list: TAsmList; const s: string); override;
- *)
- end;
- tlinkersolaris=class(texternallinker)
- private
- Glibc2,
- Glibc21 : boolean;
- use_gnu_ld : boolean;
- linkres : TLinkRes;
- Function WriteResponseFile(isdll:boolean) : Boolean;
- public
- constructor Create;override;
- procedure SetDefaultInfo;override;
- function MakeExecutable:boolean;override;
- function MakeSharedLibrary:boolean;override;
- end;
- {*****************************************************************************
- TIMPORTLIBsolaris
- *****************************************************************************}
- procedure timportlibsolaris.generatelib;
- var
- i : longint;
- ImportLibrary : TImportLibrary;
- begin
- for i:=0 to current_module.ImportLibraryList.Count-1 do
- begin
- ImportLibrary:=TImportLibrary(current_module.ImportLibraryList[i]);
- current_module.linkothersharedlibs.add(ImportLibrary.Name,link_always);
- end;
- end;
- {*****************************************************************************
- TEXPORTLIBsolaris
- *****************************************************************************}
- (*
- procedure texportlibsolaris.setinitname(list: TAsmList; const s: string);
- begin
- inherited setinitname(list,s);
- {$ifdef sparc}
- new_section(list,sec_init,'',4);
- list.concat(tai_symbol.createname_global('_init',AT_FUNCTION,0));
- list.concat(taicpu.op_reg_const_reg(A_SAVE,NR_STACK_POINTER_REG,-96,NR_STACK_POINTER_REG));
- {$endif sparc}
- end;
- procedure texportlibsolaris.setfininame(list: TAsmList; const s: string);
- begin
- inherited setfininame(list,s);
- {$ifdef sparc}
- new_section(list,sec_fini,'',4);
- list.concat(tai_symbol.createname_global('_fini',AT_FUNCTION,0));
- list.concat(taicpu.op_reg_const_reg(A_SAVE,NR_STACK_POINTER_REG,-96,NR_STACK_POINTER_REG));
- {$endif sparc}
- end;
- *)
- {*****************************************************************************
- TLINKERsolaris
- *****************************************************************************}
- {$ifdef x86_64}
- const
- gnu_emul = '-m elf_x86_64_sol2';
- {$endif}
- {$ifdef i386}
- const
- gnu_emul = '-m elf_i386_sol2';
- {$endif }
- {$ifdef sparc}
- const
- { no emulation specification needed, as long as only 32-bit is supported }
- gnu_emul = '';
- {$endif}
- Constructor TLinkersolaris.Create;
- begin
- Inherited Create;
- if cs_link_native in init_settings.globalswitches then
- use_gnu_ld:=false
- else
- use_gnu_ld:=true;
- if NOT Dontlinkstdlibpath Then
- {$ifdef x86_64}
- LibrarySearchPath.AddPath(sysrootpath,'/lib/64;/usr/lib/64;/usr/X11R6/lib/64;/opt/sfw/lib/64',true);
- {$else not x86_64}
- LibrarySearchPath.AddPath(sysrootpath,'/lib;/usr/lib;/usr/X11R6/lib;/opt/sfw/lib',true);
- {$endif not x86_64}
- {$ifdef LinkTest}
- if (cs_link_staticflag in current_settings.globalswitches) then WriteLN('ForceLinkStaticFlag');
- if (cs_link_static in current_settings.globalswitches) then WriteLN('LinkStatic-Flag');
- if (cs_link_shared in current_settings.globalswitches) then WriteLN('LinkSynamicFlag');
- {$EndIf}
- end;
- procedure TLinkersolaris.SetDefaultInfo;
- {
- This will also detect which libc version will be used
- }
- {$ifdef x86_64}
- const
- gld = 'gld $EMUL ';
- solaris_ld = '/usr/bin/ld -64 ';
- {$endif}
- {$ifdef i386}
- const
- gld = 'gld $EMUL';
- solaris_ld = '/usr/bin/ld ';
- {$endif }
- {$ifdef sparc}
- const
- gld = 'gld ';
- solaris_ld = 'ld ';
- {$endif}
- begin
- Glibc2:=false;
- Glibc21:=false;
- with Info do
- begin
- {$IFDEF GnuLd}
- ExeCmd[1]:=gld + '$OPT $DYNLINK $STATIC $STRIP -L. -o $EXE $RES';
- ExeCmd[2]:=solaris_ld + '$OPT $DYNLINK $STATIC $STRIP -L . -o $EXE $RESDATA $REDIRECT';
- DllCmd[1]:=gld + '$OPT $INITFINI -shared -L. $MAP -o $EXE $RES';
- DllCmd[2]:='gstrip --strip-unneeded $EXE';
- DllCmd[3]:=solaris_ld + '$OPT $INITFINI -M $VERSIONFILE $MAP -G -Bdynamic -L. -o $EXE $RESDATA $REDIRECT';
- DynamicLinker:=''; { Gnu uses the default }
- Glibc21:=false;
- {$ELSE}
- Not Implememted
- {$ENDIF}
- end;
- end;
- Function TLinkersolaris.WriteResponseFile(isdll:boolean) : Boolean;
- Var
- i : longint;
- { cprtobj,
- gprtobj,
- prtobj : string[80];}
- HPath : TCmdStrListItem;
- s,s2 : TCmdStr;
- linkdynamic,
- linklibc : boolean;
- LinkRes2 : TLinkRes;
- begin
- WriteResponseFile:=False;
- { set special options for some targets }
- linkdynamic:=not(SharedLibFiles.empty);
- { linkdynamic:=false; // da nicht getestet }
- linklibc:=(SharedLibFiles.Find('c')<>nil);
- { prtobj:='prt0';
- cprtobj:='cprt0';
- gprtobj:='gprt0';}
- if cs_profile in current_settings.moduleswitches then
- begin
- { prtobj:=gprtobj;}
- if not glibc2 then
- AddSharedLibrary('gmon');
- AddSharedLibrary('c');
- linklibc:=true;
- end
- else
- begin
- if linklibc then
- begin
- { prtobj:=cprtobj;}
- end
- else
- AddSharedLibrary('c'); { quick hack: this solaris implementation needs alwys libc }
- end;
- if use_gnu_ld then
- begin
- { Open link.res file }
- LinkRes:=TLinkRes.Create(outputexedir+Info.ResName,true);
- { Write path to search libraries }
- HPath:=TCmdStrListItem(current_module.locallibrarysearchpath.First);
- while assigned(HPath) do
- begin
- LinkRes.Add('SEARCH_DIR("'+HPath.Str+'")');
- HPath:=TCmdStrListItem(HPath.Next);
- end;
- HPath:=TCmdStrListItem(LibrarySearchPath.First);
- while assigned(HPath) do
- begin
- LinkRes.Add('SEARCH_DIR("'+HPath.Str+'")');
- HPath:=TCmdStrListItem(HPath.Next);
- end;
- { force local symbol resolution (i.e., inside the shared }
- { library itself) for all non-exorted symbols, otherwise }
- { several RTL symbols of FPC-compiled shared libraries }
- { will be bound to those of a single shared library or }
- { to the main program }
- if (isdll) then
- begin
- LinkRes.add('VERSION');
- LinkRes.add('{ DEFAULT'); { gld 2.25 does not support anonymous version }
- LinkRes.add(' {');
- if not texportlibunix(exportlib).exportedsymnames.empty then
- begin
- LinkRes.add(' global:');
- repeat
- LinkRes.add(' '+texportlibunix(exportlib).exportedsymnames.getfirst+';');
- until texportlibunix(exportlib).exportedsymnames.empty;
- end;
- LinkRes.add(' local:');
- LinkRes.add(' *;');
- LinkRes.add(' };');
- LinkRes.add('}');
- end;
- LinkRes.Add('INPUT(');
- { add objectfiles, start with prt0 always }
- { solaris port contains _start inside the system unit, it
- needs only one entry because it is linked always against libc
- if prtobj<>'' then
- LinkRes.AddFileName(FindObjectFile(prtobj,'',false));
- }
- { try to add crti and crtbegin if linking to C }
- if linklibc then { Needed in solaris? }
- begin
- { if librarysearchpath.FindFile('crtbegin.o',s) then
- LinkRes.AddFileName(s);}
- if librarysearchpath.FindFile('crti.o',false,s) then
- LinkRes.AddFileName(s);
- end;
- { main objectfiles }
- while not ObjectFiles.Empty do
- begin
- s:=ObjectFiles.GetFirst;
- if s<>'' then
- LinkRes.AddFileName(maybequoted(s));
- end;
- LinkRes.Add(')');
- { Write staticlibraries }
- if not StaticLibFiles.Empty then
- begin
- LinkRes.Add('GROUP(');
- While not StaticLibFiles.Empty do
- begin
- S:=StaticLibFiles.GetFirst;
- LinkRes.AddFileName(maybequoted(s))
- end;
- LinkRes.Add(')');
- end;
- { Write sharedlibraries like -l<lib>, also add the needed dynamic linker
- here to be sure that it gets linked this is needed for glibc2 systems (PFV) }
- if not SharedLibFiles.Empty then
- begin
- LinkRes.Add('INPUT(');
- While not SharedLibFiles.Empty do
- begin
- S:=SharedLibFiles.GetFirst;
- if s<>'c' then
- begin
- i:=Pos(target_info.sharedlibext,S);
- if i>0 then
- Delete(S,i,255);
- LinkRes.Add('-l'+s);
- end
- else
- begin
- LinkRes.Add('-lc');
- linklibc:=true;
- linkdynamic:=false; { libc will include the ld-solaris (war ld-linux) for us }
- end;
- end;
- { be sure that libc is the last lib }
- if linklibc then
- LinkRes.Add('-lc');
- { when we have -static for the linker the we also need libgcc }
- if (cs_link_staticflag in current_settings.globalswitches) then begin
- LinkRes.Add('-lgcc');
- end;
- if linkdynamic and (Info.DynamicLinker<>'') then { gld has a default, DynamicLinker is not set in solaris }
- LinkRes.AddFileName(Info.DynamicLinker);
- LinkRes.Add(')');
- end;
- { objects which must be at the end }
- if linklibc then {needed in solaris ? }
- begin
- if {librarysearchpath.FindFile('crtend.o',s1) or}
- librarysearchpath.FindFile('crtn.o',false,s2) then
- begin
- LinkRes.Add('INPUT(');
- { LinkRes.AddFileName(s1);}
- LinkRes.AddFileName(s2);
- LinkRes.Add(')');
- end;
- end;
- { Write and Close response }
- linkres.writetodisk;
- LinkRes.Free;
- end
- else { not use_gnu_ld }
- begin
- { Open TlinkRes, will not be written to disk }
- LinkRes:=TLinkRes.Create(outputexedir+Info.ResName+'2',false);
- { Write path to search libraries }
- HPath:=TCmdStrListItem(current_module.locallibrarysearchpath.First);
- while assigned(HPath) do
- begin
- LinkRes.Add('-L '+maybequoted(HPath.Str));
- HPath:=TCmdStrListItem(HPath.Next);
- end;
- HPath:=TCmdStrListItem(LibrarySearchPath.First);
- while assigned(HPath) do
- begin
- LinkRes.Add('-L '+maybequoted(HPath.Str));
- HPath:=TCmdStrListItem(HPath.Next);
- end;
- { force local symbol resolution (i.e., inside the shared }
- { library itself) for all non-exorted symbols, otherwise }
- { several RTL symbols of FPC-compiled shared libraries }
- { will be bound to those of a single shared library or }
- { to the main program }
- if (isdll) then
- begin
- LinkRes2:=TLinkRes.Create(outputexedir+Info.ResName,true);
- // LinkRes2.add('VERSION'); not needed for now
- LinkRes2.add(' {');
- if not texportlibunix(exportlib).exportedsymnames.empty then
- begin
- LinkRes2.add(' global:');
- repeat
- LinkRes2.add(' '+texportlibunix(exportlib).exportedsymnames.getfirst+';');
- until texportlibunix(exportlib).exportedsymnames.empty;
- end;
- LinkRes2.add(' local:');
- LinkRes2.add(' *;');
- LinkRes2.add(' };');
- LinkRes2.writetodisk;
- LinkRes2.Free;
- end;
- { add objectfiles, start with prt0 always }
- { solaris port contains _start inside the system unit, it
- needs only one entry because it is linked always against libc
- if prtobj<>'' then
- LinkRes.AddFileName(FindObjectFile(prtobj,'',false));
- }
- { try to add crti and crtbegin if linking to C }
- if linklibc then { Needed in solaris? }
- begin
- { if librarysearchpath.FindFile('crtbegin.o',s) then
- LinkRes.AddFileName(s);}
- if librarysearchpath.FindFile('crti.o',false,s) then
- LinkRes.AddFileName(s);
- end;
- { main objectfiles }
- while not ObjectFiles.Empty do
- begin
- s:=ObjectFiles.GetFirst;
- if s<>'' then
- LinkRes.AddFileName(maybequoted(s));
- end;
- { Write staticlibraries }
- if not StaticLibFiles.Empty then
- begin
- linkres.add('-(');
- While not StaticLibFiles.Empty do
- begin
- S:=StaticLibFiles.GetFirst;
- LinkRes.AddFileName(maybequoted(s))
- end;
- linkres.add('-)');
- end;
- { Write sharedlibraries like -l<lib>, also add the needed dynamic linker
- here to be sure that it gets linked this is needed for glibc2 systems (PFV) }
- if not SharedLibFiles.Empty then
- begin
- While not SharedLibFiles.Empty do
- begin
- S:=SharedLibFiles.GetFirst;
- if s<>'c' then
- begin
- i:=Pos(target_info.sharedlibext,S);
- if i>0 then
- Delete(S,i,255);
- LinkRes.Add('-l'+s);
- end
- else
- begin
- linklibc:=true;
- linkdynamic:=false; { libc will include the ld-solaris (war ld-linux) for us }
- end;
- end;
- { be sure that libc is the last lib }
- if linklibc then
- LinkRes.Add('-lc');
- { when we have -static for the linker the we also need libgcc }
- if (cs_link_staticflag in current_settings.globalswitches) then begin
- LinkRes.Add('-lgcc');
- end;
- if linkdynamic and (Info.DynamicLinker<>'') then { gld has a default, DynamicLinker is not set in solaris }
- LinkRes.AddFileName(Info.DynamicLinker);
- end;
- { objects which must be at the end }
- if linklibc then {needed in solaris ? }
- begin
- if {librarysearchpath.FindFile('crtend.o',s1) or}
- librarysearchpath.FindFile('crtn.o',false,s2) then
- begin
- { LinkRes.AddFileName(s1);}
- LinkRes.AddFileName(s2);
- end;
- end;
- { Write and Close response }
- //linkres.writetodisk;
- //LinkRes.Free;
- end;
- WriteResponseFile:=True;
- end;
- function TLinkersolaris.MakeExecutable:boolean;
- var
- binstr,
- s, linkstr,
- cmdstr : TCmdStr;
- success : boolean;
- DynLinkStr : string[60];
- StaticStr, RedirectStr,
- StripStr : string[40];
- begin
- success:=false;
- if not(cs_link_nolink in current_settings.globalswitches) then
- Message1(exec_i_linking,current_module.exefilename);
- { Create some replacements }
- StaticStr:='';
- StripStr:='';
- RedirectStr:='';
- DynLinkStr:='';
- if (cs_link_staticflag in current_settings.globalswitches) then
- StaticStr:='-Bstatic';
- if (cs_link_strip in current_settings.globalswitches) then
- StripStr:='-s';
- if (cs_link_map in current_settings.globalswitches) then
- begin
- if use_gnu_ld then
- StripStr:='-Map '+maybequoted(ChangeFileExt(current_module.exefilename,'.map'))
- else
- begin
- StripStr:='-m';
- RedirectStr:=' > '+maybequoted(ChangeFileExt(current_module.exefilename,'.map'));
- end;
- end;
- If (cs_profile in current_settings.moduleswitches) or
- ((Info.DynamicLinker<>'') and (not SharedLibFiles.Empty)) then
- DynLinkStr:='-dynamic-linker='+Info.DynamicLinker;
- if rlinkpath<>'' then
- if use_gnu_ld then
- DynLinkStr:=DynLinkStr+' --rpath-link '+rlinkpath
- else
- DynLinkStr:=DynLinkStr+' -R '+rlinkpath;
- { solaris sets DynamicLinker, but gld will (hopefully) defaults to -Bdynamic and add the default-linker }
- { Write used files and libraries }
- WriteResponseFile(false);
- { Call linker }
- if use_gnu_ld then
- SplitBinCmd(Info.ExeCmd[1],binstr,cmdstr)
- else
- SplitBinCmd(Info.ExeCmd[2],binstr,cmdstr);
- Replace(cmdstr,'$EXE',maybequoted(current_module.exefilename));
- Replace(cmdstr,'$OPT',Info.ExtraOptions);
- if use_gnu_ld then
- begin
- Replace(cmdstr,'$RES',maybequoted(outputexedir+Info.ResName));
- Replace(cmdstr,'$EMUL',gnu_emul);
- end
- else
- begin
- linkstr:='';
- while not linkres.data.Empty do
- begin
- s:=linkres.data.GetFirst;
- if s<>'' then
- linkstr:=linkstr+' '+s;
- end;
- linkres.free;
- Replace(cmdstr,'$RESDATA',linkstr);
- end;
- Replace(cmdstr,'$STATIC',StaticStr);
- Replace(cmdstr,'$STRIP',StripStr);
- Replace(cmdstr,'$REDIRECT',RedirectStr);
- Replace(cmdstr,'$DYNLINK',DynLinkStr);
- if BinStr[1]<>'/' then
- BinStr:=FindUtil(utilsprefix+BinStr);
- { We need shell if output is redirected }
- success:=DoExec(BinStr,Trim(CmdStr),true,RedirectStr<>'');
- { Remove ReponseFile }
- {$IFNDEF LinkTest}
- if (success) and use_gnu_ld and
- not(cs_link_nolink in current_settings.globalswitches) then
- DeleteFile(outputexedir+Info.ResName);
- {$ENDIF}
- MakeExecutable:=success; { otherwise a recursive call to link method }
- end;
- Function TLinkersolaris.MakeSharedLibrary:boolean;
- var
- InitFiniStr : string;
- binstr, RedirectStr,
- s, linkstr, MapStr,
- cmdstr : TCmdStr;
- need_quotes, success : boolean;
- begin
- success:=false;
- MakeSharedLibrary:=false;
- if not(cs_link_nolink in current_settings.globalswitches) then
- Message1(exec_i_linking,current_module.sharedlibfilename);
- { Write used files and libraries }
- WriteResponseFile(true);
- RedirectStr:='';
- MapStr:='';
- { Create some replacements }
- if (cs_link_map in current_settings.globalswitches) then
- begin
- if use_gnu_ld then
- MapStr:='-Map '+maybequoted(ChangeFileExt(current_module.exefilename,'.map'))
- else
- begin
- MapStr:='-m';
- RedirectStr:=' > '+maybequoted(ChangeFileExt(current_module.exefilename,'.map'));
- end;
- end;
- need_quotes:= (cs_link_nolink in current_settings.globalswitches) or
- (RedirectStr<>'');
- { initname and fininame may contain $, which can be wrongly interpreted
- in a link script, thus we surround them with single quotes
- in cs_link_nolink is in globalswitches }
- if use_gnu_ld then
- begin
- InitFiniStr:='-init ';
- if need_quotes then
- InitFiniStr:=InitFiniStr+''''+exportlib.initname+''''
- else
- InitFiniStr:=InitFiniStr+exportlib.initname;
- if (exportlib.fininame<>'') then
- begin
- if need_quotes then
- InitFiniStr:=InitFiniStr+' -fini '''+exportlib.initname+''''
- else
- InitFiniStr:=InitFiniStr+' -fini '+exportlib.fininame;
- end;
- end
- else
- begin
- InitFiniStr:='-z initarray=';
- if need_quotes then
- InitFiniStr:=InitFiniStr+''''+exportlib.initname+''''
- else
- InitFiniStr:=InitFiniStr+exportlib.initname;
- if (exportlib.fininame<>'') then
- begin
- if need_quotes then
- InitFiniStr:=InitFiniStr+' -z finiarray='''+exportlib.initname+''''
- else
- InitFiniStr:=InitFiniStr+' -z finiarray='+exportlib.fininame;
- end;
- end;
- { Call linker }
- if use_gnu_ld then
- SplitBinCmd(Info.DllCmd[1],binstr,cmdstr)
- else
- SplitBinCmd(Info.DllCmd[3],binstr,cmdstr);
- Replace(cmdstr,'$EXE',maybequoted(current_module.sharedlibfilename));
- Replace(cmdstr,'$OPT',Info.ExtraOptions);
- Replace(cmdstr,'$INITFINI',InitFiniStr);
- if use_gnu_ld then
- begin
- Replace(cmdstr,'$RES',maybequoted(outputexedir+Info.ResName));
- Replace(cmdstr,'$EMUL',gnu_emul);
- end
- else
- begin
- Replace(cmdstr,'$VERSIONFILE',maybequoted(outputexedir+Info.ResName));
- linkstr:='';
- while not linkres.data.Empty do
- begin
- s:=linkres.data.GetFirst;
- if s<>'' then
- linkstr:=linkstr+' '+s;
- end;
- linkres.free;
- Replace(cmdstr,'$RESDATA',linkstr);
- end;
- Replace(cmdstr,'$REDIRECT',RedirectStr);
- Replace(cmdstr,'$MAP',MapStr);
- if BinStr[1]<>'/' then
- BinStr:=FindUtil(utilsprefix+BinStr);
- { We need shell if output is redirected }
- success:=DoExec(BinStr,Trim(CmdStr),true,RedirectStr<>'');
- { Strip the library ? }
- if success and (cs_link_strip in current_settings.globalswitches) then
- begin
- SplitBinCmd(Info.DllCmd[2],binstr,cmdstr);
- Replace(cmdstr,'$EXE',maybequoted(current_module.sharedlibfilename));
- success:=DoExec(utilsprefix+FindUtil(binstr),cmdstr,true,false);
- end;
- { Remove ReponseFile }
- {$IFNDEF LinkTest}
- if (success) and not(cs_link_nolink in current_settings.globalswitches) then
- DeleteFile(outputexedir+Info.ResName);
- {$ENDIF}
- MakeSharedLibrary:=success; { otherwise a recursive call to link method }
- end;
- {*****************************************************************************
- Initialize
- *****************************************************************************}
- initialization
- RegisterLinker(ld_solaris,TLinkerSolaris);
- {$ifdef i386}
- RegisterImport(system_i386_solaris,TImportLibsolaris);
- RegisterExport(system_i386_solaris,TExportLibsolaris);
- RegisterTarget(system_i386_solaris_info);
- {$endif i386}
- {$ifdef x86_64}
- RegisterImport(system_x86_64_solaris,TImportLibsolaris);
- RegisterExport(system_x86_64_solaris,TExportLibsolaris);
- RegisterTarget(system_x86_64_solaris_info);
- {$endif x86_64}
- {$ifdef sparc}
- RegisterImport(system_sparc_solaris,TImportLibsolaris);
- RegisterExport(system_sparc_solaris,TExportLibsolaris);
- RegisterTarget(system_sparc_solaris_info);
- {$endif sparc}
- RegisterRes(res_elf_info,TWinLikeResourceFile);
- end.
|