diff options
author | Patrick Lehmann <Patrick.Lehmann@tu-dresden.de> | 2016-06-24 15:38:40 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2016-06-24 15:38:40 +0200 |
commit | 00bedc57ef340ed6271b695bf08b6d2ac7778edd (patch) | |
tree | 4f35bbd879570b2762b9942766688f30f76b4afb /src/ghdldrv | |
parent | e2dadd718f21fc88ab7fac08d958ec40d3e2407a (diff) | |
download | ghdl-00bedc57ef340ed6271b695bf08b6d2ac7778edd.tar.gz ghdl-00bedc57ef340ed6271b695bf08b6d2ac7778edd.tar.bz2 ghdl-00bedc57ef340ed6271b695bf08b6d2ac7778edd.zip |
Synopsys flavor for VHDL-2008 (#94)
* Added makefile rules for a VHDL-2008 synopsys flavor. Removed synopsys check in VHDL-2008 mode from ghdllocal.adb.
* Adjusted testsuite run "gna/bug28", which tests for --std=08 and --ieee=synopsys to report a message.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdllocal.adb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb index a28c44bee..fbffb5f1d 100644 --- a/src/ghdldrv/ghdllocal.adb +++ b/src/ghdldrv/ghdllocal.adb @@ -442,11 +442,7 @@ package body Ghdllocal is when Lib_Standard => Add_Library_Path ("ieee"); when Lib_Synopsys => - if Vhdl_Std >= Vhdl_08 then - Warning ("--ieee=synopsys is ignored for --std=08"); - else - Add_Library_Path ("synopsys"); - end if; + Add_Library_Path ("synopsys"); when Lib_Mentor => if Vhdl_Std >= Vhdl_08 then Warning ("--ieee=mentor is ignored for --std=08"); |