Merge pull request #4 from sparre/master

Make GNAT behave as a proper Ada compiler
This commit is contained in:
R. Tyler Croy 2017-01-16 12:12:21 -08:00 committed by GitHub
commit 5993fca640
1 changed files with 5 additions and 2 deletions

View File

@ -15,9 +15,12 @@ project Arun is
for Executable ("main.adb") use "arun";
end Builder;
-- Enable Ada 2005.
-- Enable Ada 2012.
package Compiler is
for Switches ("Ada") use ("-gnat2012");
for Switches ("Ada") use ("-gnat2012",
"-fstack-check",
"-gnata",
"-gnato");
end Compiler;
end Arun;