Merge pull request #1 from sparre/sparre-patch-1

Make GNAT work as a proper Ada compiler
This commit is contained in:
Jacob Sparre Andersen 2017-01-16 13:19:29 +01:00 committed by GitHub
commit bbb4394873
1 changed files with 5 additions and 2 deletions

View File

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