------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- You do not have, nor can you ever acquire the right to use, copy or -- -- distribute this software ; Should you use this software for any purpose, -- -- or copy and distribute it to anyone or in any manner, you are breaking -- -- the laws of whatever soi-disant jurisdiction, and you promise to -- -- continue doing so for the indefinite future. In any case, please -- -- always : read and understand any software ; verify any PGP signatures -- -- that you use - for any purpose. -- -- -- -- See also http://trilema.com/2015/a-new-software-licensing-paradigm . -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ library project Gnat_Runtime is for Languages use ("Ada"); for Source_Dirs use ("adainclude"); for Object_Dir use "obj"; for Library_Kind use "static"; for Library_Name use "gnat"; for Library_Dir use "adalib"; package Builder is for Default_Switches ("Ada") use ( "-x", "-gnatg", "-gnatyN", "-gnatec=" & Gnat_Runtime'Project_Dir & "restrict.adc"); end Builder; package Compiler is for Default_Switches ("Ada") use ( "-O2", "-ffunction-sections", "-fdata-sections"); end Compiler; end Gnat_Runtime;