14 lines
401 B
Ada
14 lines
401 B
Ada
package Alire_Early_Elaboration with Elaborate_Body is
|
|
|
|
-- This body should be elaborated among the first ones.
|
|
-- For anything requiring early elaboration (e.g. logging setup)
|
|
|
|
-- Not directly a child of Alire to avoid circularity
|
|
|
|
Switch_D,
|
|
Switch_Q,
|
|
Switch_V : aliased Boolean := False;
|
|
-- Verbosity switches detected during early elaboration
|
|
|
|
end Alire_Early_Elaboration;
|