aboutsummaryrefslogtreecommitdiffstats
path: root/translate/ghdldrv
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2013-12-28 07:46:03 +0100
committerTristan Gingold <tgingold@free.fr>2013-12-28 07:46:03 +0100
commit807135c0ef563a054e4bc042779de1f06c5bc140 (patch)
tree2cd7d7e7471f9182184b48d2085d6cf67ca6d452 /translate/ghdldrv
parent2c9d178c16b8d9372b2fef20df320eb9c4e12827 (diff)
downloadghdl-807135c0ef563a054e4bc042779de1f06c5bc140.tar.gz
ghdl-807135c0ef563a054e4bc042779de1f06c5bc140.tar.bz2
ghdl-807135c0ef563a054e4bc042779de1f06c5bc140.zip
Allow long prefix (by locally disabling style checks)
Diffstat (limited to 'translate/ghdldrv')
-rw-r--r--translate/ghdldrv/default_pathes.ads.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/translate/ghdldrv/default_pathes.ads.in b/translate/ghdldrv/default_pathes.ads.in
index 8d101fd49..4e6c1a7ec 100644
--- a/translate/ghdldrv/default_pathes.ads.in
+++ b/translate/ghdldrv/default_pathes.ads.in
@@ -17,16 +17,21 @@
-- 02111-1307, USA.
package Default_Pathes is
+
+ -- Accept long lines.
+ pragma Style_Checks ("M999");
+
+ Compiler_Gcc : constant String :=
+ "@COMPILER_GCC@";
+ Prefix : constant String :=
+ "@PREFIX@";
+
Compiler_Mcode : constant String :=
"@COMPILER_MCODE@";
Compiler_Llvm : constant String :=
"@COMPILER_LLVM@";
- Compiler_Gcc : constant String :=
- "@COMPILER_GCC@";
Compiler_Debug : constant String :=
"@COMPILER_DEBUG@";
Post_Processor : constant String :=
"@POST_PROCESSOR@";
- Prefix : constant String :=
- "@PREFIX@";
end Default_Pathes;