verilog: add sv_maps iterators
[ghdl-vlg.git] / default_paths.ads.in
blob03addd7848892d4e04dbd6df6da25d170559a7ea
1 -- GHDL driver paths -*- ada -*-.
2 -- Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
3 --
4 -- This program is free software: you can redistribute it and/or modify
5 -- it under the terms of the GNU General Public License as published by
6 -- the Free Software Foundation, either version 2 of the License, or
7 -- (at your option) any later version.
8 --
9 -- This program is distributed in the hope that it will be useful,
10 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
11 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 -- GNU General Public License for more details.
14 -- You should have received a copy of the GNU General Public License
15 -- along with this program. If not, see <gnu.org/licenses>.
17 package Default_Paths is
19 -- Accept long lines.
20 pragma Style_Checks ("M999");
22 Install_Prefix : constant String :=
23 "@INSTALL_PREFIX@";
24 LibDir_Suffix : constant String :=
25 "@LIBDIR_SUFFIX@";
26 LibGhdlDir_Suffix : constant String :=
27 "@LIBGHDLDIR_SUFFIX@";
28 IncDir_Suffix : constant String :=
29 "@INCDIR_SUFFIX@";
31 Compiler_Gcc : constant String :=
32 "@COMPILER_GCC@";
33 Compiler_Mcode : constant String :=
34 "@COMPILER_MCODE@";
35 Compiler_Llvm : constant String :=
36 "@COMPILER_LLVM@";
37 Compiler_Debug : constant String :=
38 "@COMPILER_DEBUG@";
39 Post_Processor : constant String :=
40 "@POST_PROCESSOR@";
42 Shared_Library_Extension : constant String := "@SOEXT@";
43 Default_Pie : constant Boolean := "@default_pic@" = String'("true");
44 end Default_Paths;