|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1741 (0x6cd)
Types: TextFile
Names: »B«
└─⟦25882cbde⟧ Bits:30000536 8mm tape, Rational 1000, RCI_RS6000_AIX_IBM 2_0_2
└─⟦b8efda8ac⟧ »DATA«
└─⟦7061b4ee8⟧
└─⟦this⟧
separate (Batch_Extensions)
procedure Build_Script_Preprocess
(Compilation_Script_File : Io.File_Type;
Move_Script_File : Io.File_Type;
Build_Via_Tape : Boolean;
Host_Units : Directory_Tools.Object.Iterator;
Link_Main_Units : Boolean;
Remote_Machine : String;
Remote_Connection : Remote_Command_Interface.Context;
Status : in out Simple_Status.Condition) is
Local_Status : Simple_Status.Condition;
begin
Log.Put_Line (Message => "Executing Build_script_Preprocess",
Kind => Profile.Note_Msg);
Status := Local_Status;
if Generate_Batch_Compile_Commands then
return;
end if;
-- We will not intermix ADA and secondary commands (unlike
-- the interactive mode). This is because we want to
-- compile all ADA units with a single elaboration of the
-- target ADA compiler
Bes.Generate_Secondary_Commands
(Compilation_Script_File, Host_Units, Bes.This_Target, Status);
-- Generate all secondary commands first .
if Simple_Status.Error (Status) then
return;
end if;
Bes.Generate_Ada_Commands
(Compilation_Script_File, Host_Units, Bes.This_Target, Status);
-- Generate all the ada compile commands next
if Simple_Status.Error (Status) then
return;
end if;
if Link_Main_Units then
Bes.Generate_Link_Commands
(Compilation_Script_File, Host_Units, Bes.This_Target, Status);
-- Generate link commands for all main units in this list
end if;
exception
when others =>
Bes.Unhandled_Exception (Status, "build_script_preprocess");
end Build_Script_Preprocess;