i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / ada / libgnat / libgnat_common.gpr
bloba6340332c578cb2d776d995a591f697952030b94
1 abstract project Libgnat_Common is
3    Common_Flags := Split (External ("CFLAGS", "-O2 -g"), " ");
4    C_Flags      := Common_Flags &
5                    ("-I../include", "-DIN_RTS=1", "-fexceptions",
6                     "-DSTANDALONE") &
7                    External_As_List ("EXTRALIBFLAGS", " ");
8    Ada_Flags    := Common_Flags & ("-nostdinc", "-I../adainclude", "-gnatg")
9                    & Split (External ("ADAFLAGS", "-gnatpg"), " ");
10    Library_Kind := External ("LIBRARY_KIND", "static");
12    No_Opt      := ("-O0");
13    Force_Debug := ("-g");
14    No_Inline   := ("-fno-inline");
15    No_Omit     := ("-fno-omit-frame-pointer");
16    No_Sibling  := ("-fno-optimize-sibling-calls");
17    No_Reorder  := ("-fno-toplevel-reorder", "-O0");
19 end Libgnat_Common;