-
+ 0A4FAB6B53946CB27CD57AE30DF5F67B96BF6AB5AD7572824D8B4C6B5430F2808863DF330E1B10D41F509172841BBFD6711C7EE0B7DDC8CE5AD7B2BCE423C383
zfp/gnat_runtime.gpr
(0 . 0)(1 . 38)
968 ------------------------------------------------------------------------------
969 ------------------------------------------------------------------------------
970 -- You do not have, nor can you ever acquire the right to use, copy or --
971 -- distribute this software ; Should you use this software for any purpose, --
972 -- or copy and distribute it to anyone or in any manner, you are breaking --
973 -- the laws of whatever soi-disant jurisdiction, and you promise to --
974 -- continue doing so for the indefinite future. In any case, please --
975 -- always : read and understand any software ; verify any PGP signatures --
976 -- that you use - for any purpose. --
977 -- --
978 -- See also http://trilema.com/2015/a-new-software-licensing-paradigm . --
979 ------------------------------------------------------------------------------
980 ------------------------------------------------------------------------------
981
982 library project Gnat_Runtime is
983 for Languages use ("Ada");
984
985 for Source_Dirs use ("adainclude");
986 for Object_Dir use "obj";
987 for Library_Kind use "static";
988 for Library_Name use "gnat";
989 for Library_Dir use "adalib";
990
991 package Builder is
992 for Default_Switches ("Ada") use (
993 "-x",
994 "-gnatg", "-gnatyN",
995 "-gnatec=" & Gnat_Runtime'Project_Dir & "restrict.adc");
996 end Builder;
997
998 package Compiler is
999 for Default_Switches ("Ada") use (
1000 "-O2",
1001 "-ffunction-sections",
1002 "-fdata-sections");
1003 end Compiler;
1004
1005 end Gnat_Runtime;