diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-11-17 16:14:13 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-11-17 16:14:13 +0100 |
commit | 9abf9c243068a9ea308c70e2cf09ac721221158e (patch) | |
tree | cb51db7c37f35a72d0b622042d355651f4288724 | |
parent | cf4be1405dba9e1982f8f95fb0ee290701339c00 (diff) | |
download | ghdl-9abf9c243068a9ea308c70e2cf09ac721221158e.tar.gz ghdl-9abf9c243068a9ea308c70e2cf09ac721221158e.tar.bz2 ghdl-9abf9c243068a9ea308c70e2cf09ac721221158e.zip |
ghdlsynth: add option -t for tracing.
-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 4a0ec0599..0795fcf6e 100644 --- a/src/ghdldrv/ghdlsynth.adb +++ b/src/ghdldrv/ghdlsynth.adb @@ -114,6 +114,9 @@ package body Ghdlsynth is elsif Option = "-de" then Flag_Debug_Noexpand := True; Res := Option_Ok; + elsif Option = "-t" then + Flag_Trace_Statements := True; + Res := Option_Ok; else Decode_Option (Command_Lib (Cmd), Option, Arg, Res); end if; |