aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdldrv.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-09-12 21:44:59 +0200
committerTristan Gingold <tgingold@free.fr>2015-09-12 21:44:59 +0200
commitbdc8e297b8cc2c36cf9e9ce41007cade06d2ee3f (patch)
tree8a13176b25fb96aaed4187baa482392feb0ceccf /src/ghdldrv/ghdldrv.ads
parentd08ed8de338da3b7ea4fcd0139f4ca248c129078 (diff)
downloadghdl-bdc8e297b8cc2c36cf9e9ce41007cade06d2ee3f.tar.gz
ghdl-bdc8e297b8cc2c36cf9e9ce41007cade06d2ee3f.tar.bz2
ghdl-bdc8e297b8cc2c36cf9e9ce41007cade06d2ee3f.zip
Check llvm version. Fix ghdldrv --post for llvm.
Diffstat (limited to 'src/ghdldrv/ghdldrv.ads')
-rw-r--r--src/ghdldrv/ghdldrv.ads5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ghdldrv/ghdldrv.ads b/src/ghdldrv/ghdldrv.ads
index 3e37b38f1..ed9c6b07c 100644
--- a/src/ghdldrv/ghdldrv.ads
+++ b/src/ghdldrv/ghdldrv.ads
@@ -17,9 +17,8 @@
-- 02111-1307, USA.
package Ghdldrv is
-- Compiler to use.
- type Compile_Kind_Type is
- (Compile_Mcode, Compile_Llvm, Compile_Gcc, Compile_Debug);
- Compile_Kind : Compile_Kind_Type := Compile_Gcc;
+ type Backend_Type is (Backend_Mcode, Backend_Llvm, Backend_Gcc);
+ Backend : Backend_Type;
procedure Register_Commands;
end Ghdldrv;