- 333021E0854DD34F16F0F42540DD1AB89940FDE79D8283EF965E9BED288DE0174D5B69C91E465AFE6FA2147F7D597B0A9424FE95C04E3AD0C866ACDC058B6443
+ 8579E0CD9C35112B60301C07B6D344B676DAB80DBDBCD5A0CA98E3AC56A1F7459DB85694925F1D616DEF0AA7DBB68A1DD575178ECA98166C6D1AF480CD546C88
zfp/gnat_runtime.gpr
(15 . 7)(15 . 16)
656 library project Gnat_Runtime is
657 for Languages use ("Ada");
658
659 for Source_Dirs use ("adainclude");
660 type Platform_Type is ("x86_64-asm", "x86_64-c");
661 Platform : Platform_Type := external ("platform", "x86_64-asm");
662
663 case Platform is
664 when "x86_64-asm" =>
665 for Source_Dirs use ("adainclude", "platform/linux-x86_64", "platform/linux-x86_64-asm");
666 when "x86_64-c" =>
667 for Source_Dirs use ("adainclude", "platform/linux-x86_64", "platform/linux-c");
668 end case;
669
670 for Object_Dir use "obj";
671 for Library_Kind use "static";
672 for Library_Name use "gnat";
(41 . 6)(50 . 12)
674 for Lib_Subdir use "adalib";
675 for Required_Artifacts (".") use ("runtime.xml");
676 for Install_Project use "false";
677 case Platform is
678 when "x86_64-asm" =>
679 for Artifacts ("adalib") use ("obj/start.o");
680 when others =>
681 null;
682 end case;
683 end Install;
684
685 end Gnat_Runtime;