aboutsummaryrefslogtreecommitdiffstats
path: root/src/libraries.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries.adb')
-rw-r--r--src/libraries.adb4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libraries.adb b/src/libraries.adb
index d7ddfb5ae..bc3d44d83 100644
--- a/src/libraries.adb
+++ b/src/libraries.adb
@@ -139,6 +139,8 @@ package body Libraries is
return Image_Identifier (Library) & "-obj93.cf";
when Vhdl_08 =>
return Image_Identifier (Library) & "-obj08.cf";
+ when Vhdl_19 =>
+ return Image_Identifier (Library) & "-obj19.cf";
end case;
end Library_To_File_Name;
@@ -181,6 +183,8 @@ package body Libraries is
Path (L + 2 .. L + 4) := "v93";
when Vhdl_08 =>
Path (L + 2 .. L + 4) := "v08";
+ when Vhdl_19 =>
+ Path (L + 2 .. L + 4) := "v19";
end case;
L := L + 5;
Path (L) := GNAT.OS_Lib.Directory_Separator;