diff options
Diffstat (limited to 'dist/windows')
-rw-r--r-- | dist/windows/mcode/binary_file-format.ads | 3 | ||||
-rw-r--r-- | dist/windows/mcode/default_pathes.ads | 9 | ||||
-rw-r--r-- | dist/windows/mcode/grt-backtraces-impl.ads | 3 |
3 files changed, 15 insertions, 0 deletions
diff --git a/dist/windows/mcode/binary_file-format.ads b/dist/windows/mcode/binary_file-format.ads new file mode 100644 index 000000000..daf2afe2e --- /dev/null +++ b/dist/windows/mcode/binary_file-format.ads @@ -0,0 +1,3 @@ +with Binary_File.Coff; + +package Binary_File.Format renames Binary_File.Coff; diff --git a/dist/windows/mcode/default_pathes.ads b/dist/windows/mcode/default_pathes.ads new file mode 100644 index 000000000..d83addbe2 --- /dev/null +++ b/dist/windows/mcode/default_pathes.ads @@ -0,0 +1,9 @@ +with Windows_Default_Path; +pragma Elaborate_All (Windows_Default_Path); + +package Default_Pathes is + Install_Prefix : constant String := + Windows_Default_Path.Get_Windows_Exec_Path; + Lib_Prefix : constant String := "lib"; + Shared_Library_Extension : constant String := ".dll"; +end Default_Pathes; diff --git a/dist/windows/mcode/grt-backtraces-impl.ads b/dist/windows/mcode/grt-backtraces-impl.ads new file mode 100644 index 000000000..81db677ed --- /dev/null +++ b/dist/windows/mcode/grt-backtraces-impl.ads @@ -0,0 +1,3 @@ +with Grt.Backtraces.Jit; + +package Grt.Backtraces.Impl renames Grt.Backtraces.Jit; |