diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-17 08:06:11 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-17 08:06:11 +0200 |
commit | 2019f1903faf77efdcc03c927aa353b9e3307d5d (patch) | |
tree | 6e3e1c6c9dd22512740163442623b1597970a77f /src/ghdldrv | |
parent | de899bb8cb6e2f43a3e80a6a273d6a459b08e401 (diff) | |
download | ghdl-2019f1903faf77efdcc03c927aa353b9e3307d5d.tar.gz ghdl-2019f1903faf77efdcc03c927aa353b9e3307d5d.tar.bz2 ghdl-2019f1903faf77efdcc03c927aa353b9e3307d5d.zip |
synth: add debug flag -dc to not clean.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlsynth.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ghdldrv/ghdlsynth.adb b/src/ghdldrv/ghdlsynth.adb index f6539d2c4..a260b2cd7 100644 --- a/src/ghdldrv/ghdlsynth.adb +++ b/src/ghdldrv/ghdlsynth.adb @@ -97,6 +97,9 @@ package body Ghdlsynth is elsif Option = "-di" then Flag_Debug_Noinference := True; Res := Option_Ok; + elsif Option = "-dc" then + Flag_Debug_Nocleanup := True; + Res := Option_Ok; else Decode_Option (Command_Lib (Cmd), Option, Arg, Res); end if; |