aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-27 21:44:44 +0100
committerTristan Gingold <tgingold@free.fr>2019-10-27 21:44:44 +0100
commit720e7e5eb31d978ccddcd35ad0267eafef17f383 (patch)
tree5d1f7c35775283a14fd5b67f536747226f8845c8
parent497e1e575201f5d3ff68cbd4dc4c0ab9003edf00 (diff)
downloadghdl-720e7e5eb31d978ccddcd35ad0267eafef17f383.tar.gz
ghdl-720e7e5eb31d978ccddcd35ad0267eafef17f383.tar.bz2
ghdl-720e7e5eb31d978ccddcd35ad0267eafef17f383.zip
ghdlsynth: add -de option.
-rw-r--r--src/ghdldrv/ghdlsynth.adb3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ghdldrv/ghdlsynth.adb b/src/ghdldrv/ghdlsynth.adb
index 4c6ef996f..4a0ec0599 100644
--- a/src/ghdldrv/ghdlsynth.adb
+++ b/src/ghdldrv/ghdlsynth.adb
@@ -111,6 +111,9 @@ package body Ghdlsynth is
elsif Option = "-dm" then
Flag_Debug_Nomemory := True;
Res := Option_Ok;
+ elsif Option = "-de" then
+ Flag_Debug_Noexpand := True;
+ Res := Option_Ok;
else
Decode_Option (Command_Lib (Cmd), Option, Arg, Res);
end if;