mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 13:59:29 +02:00
* adjust WritePathList() to work with TCmdStrList instead of TSearchPathList (and rename it accordingly)
git-svn-id: trunk@38943 -
This commit is contained in:
parent
56f36e6509
commit
295ca4de4b
@ -225,7 +225,7 @@ function Compile(const cmd:TCmdStr):longint;
|
||||
|
||||
{$maxfpuregisters 0}
|
||||
|
||||
procedure writepathlist(w:longint;l:TSearchPathList);
|
||||
procedure writecmdstrlist(w:longint;l:TCmdStrList);
|
||||
var
|
||||
hp : TCmdStrListItem;
|
||||
begin
|
||||
@ -263,10 +263,10 @@ begin
|
||||
Message1(general_d_sourceos,source_info.name);
|
||||
Message1(general_i_targetos,target_info.name);
|
||||
Message1(general_t_exepath,exepath);
|
||||
WritePathList(general_t_unitpath,unitsearchpath);
|
||||
WritePathList(general_t_includepath,includesearchpath);
|
||||
WritePathList(general_t_librarypath,librarysearchpath);
|
||||
WritePathList(general_t_objectpath,objectsearchpath);
|
||||
WriteCmdStrList(general_t_unitpath,unitsearchpath);
|
||||
WriteCmdStrList(general_t_includepath,includesearchpath);
|
||||
WriteCmdStrList(general_t_librarypath,librarysearchpath);
|
||||
WriteCmdStrList(general_t_objectpath,objectsearchpath);
|
||||
|
||||
{ Compile the program }
|
||||
{$ifdef PREPROCWRITE}
|
||||
|
Loading…
Reference in New Issue
Block a user