diff options
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/libghdlsynth.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/libghdlsynth.adb b/src/synth/libghdlsynth.adb index 683bfffad..3402cb0e1 100644 --- a/src/synth/libghdlsynth.adb +++ b/src/synth/libghdlsynth.adb @@ -21,6 +21,7 @@ with Ghdlsynth; with Ghdlsimul; with GNAT.OS_Lib; use GNAT.OS_Lib; +with Errorout.Console; package body Libghdlsynth is function Synth (Argc : Natural; Argv : C_String_Array_Acc) return Module @@ -43,5 +44,6 @@ package body Libghdlsynth is Gnat_Version : constant String := "unknown compiler version" & ASCII.NUL; pragma Export (C, Gnat_Version, "__gnat_version"); begin + Errorout.Console.Install_Handler; Ghdlsimul.Compile_Init; end Libghdlsynth; |