From 28792869562ad5188c5078d66c845e6f51cfe13e Mon Sep 17 00:00:00 2001 From: Rod Kay Date: Fri, 28 Apr 2023 21:47:43 +1000 Subject: [PATCH] lace_shared: Add "-C", "-j0" and "-gnat2022" switches to 'Builder' default switches. --- 0-floor/lace_shared/lace_shared.gpr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0-floor/lace_shared/lace_shared.gpr b/0-floor/lace_shared/lace_shared.gpr index 6f491a9..5a1af93 100644 --- a/0-floor/lace_shared/lace_shared.gpr +++ b/0-floor/lace_shared/lace_shared.gpr @@ -147,7 +147,7 @@ is is when "debug" => for Global_Configuration_Pragmas use "debug.pra"; for Default_Switches ("ada") use ("-C", "-j0", "-gnat2022"); -- TODO: Create and use a Builder_Options variable ? - when "fast" => null; + when "fast" => for Default_Switches ("ada") use ("-C", "-j0", "-gnat2022"); when "small" => null; end case; end Builder;