hppa: Fix LO_SUM DLTIND14R address support in PRINT_OPERAND_ADDRESS
[official-gcc.git] / gcc / ada / libgnarl / libgnarl.gpr
blob3933f6f2f3a26406e33127af10b3a232124e8ee9
1 with "libgnat_common";
3 library project Libgnarl is
5    for Languages use ("Ada", "C");
6    for Source_Dirs use (".");
7    for Source_List_File use "libgnarl.lst";
8    for Object_Dir use "../obj-" & Libgnat_Common.Library_Kind;
10    for Library_Name use "gnarl";
11    for Library_Dir use "../adalib";
12    for Library_Kind use Libgnat_Common.Library_Kind;
14    package Compiler is
16       for Switches ("C") use Libgnat_Common.C_Flags;
17       for Switches ("Ada") use Libgnat_Common.Ada_Flags;
19       for Switches ("s-tasdeb.adb") use
20         Libgnat_Common.Ada_Flags &
21         Libgnat_Common.Force_Debug &
22         Libgnat_Common.No_Opt;
23       --  Compile s-tasdeb.o without optimization and with debug info so that
24       --  it is always possible to set conditional breakpoints on tasks.
26    end Compiler;
28 end Libgnarl;