1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
6 -- (Alpha VMS Version) --
10 -- Copyright (C) 2003-2005, Free Software Foundation, Inc. --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
21 -- Boston, MA 02110-1301, USA. --
23 -- GNAT was originally developed by the GNAT team at New York University. --
24 -- Extensive contributions were provided by Ada Core Technologies Inc. --
26 ------------------------------------------------------------------------------
28 -- This is the Alpha VMS version of the body
30 with Ada
.Characters
.Handling
; use Ada
.Characters
.Handling
;
32 with GNAT
.Directory_Operations
; use GNAT
.Directory_Operations
;
36 with Namet
; use Namet
;
38 with Output
; use Output
;
41 with System
; use System
;
42 with System
.Case_Util
; use System
.Case_Util
;
43 with System
.CRTL
; use System
.CRTL
;
45 package body MLib
.Tgt
is
49 Empty_Argument_List
: aliased Argument_List
:= (1 .. 0 => null);
50 Additional_Objects
: Argument_List_Access
:= Empty_Argument_List
'Access;
51 -- Used to add the generated auto-init object files for auto-initializing
52 -- stand-alone libraries.
54 Macro_Name
: constant String := "mcr gnu:[bin]gcc -c -x assembler";
55 -- The name of the command to invoke the macro-assembler
57 VMS_Options
: Argument_List
:= (1 .. 1 => null);
59 Gnatsym_Name
: constant String := "gnatsym";
61 Gnatsym_Path
: String_Access
;
63 Arguments
: Argument_List_Access
:= null;
64 Last_Argument
: Natural := 0;
66 Success
: Boolean := False;
68 Shared_Libgcc
: aliased String := "-shared-libgcc";
70 No_Shared_Libgcc_Switch
: aliased Argument_List
:= (1 .. 0 => null);
71 Shared_Libgcc_Switch
: aliased Argument_List
:=
72 (1 => Shared_Libgcc
'Access);
73 Link_With_Shared_Libgcc
: Argument_List_Access
:=
74 No_Shared_Libgcc_Switch
'Access;
80 function Archive_Builder
return String is
85 -----------------------------
86 -- Archive_Builder_Options --
87 -----------------------------
89 function Archive_Builder_Options
return String_List_Access
is
91 return new String_List
'(1 => new String'("cr"));
92 end Archive_Builder_Options
;
98 function Archive_Ext
return String is
103 ---------------------
104 -- Archive_Indexer --
105 ---------------------
107 function Archive_Indexer
return String is
112 -----------------------------
113 -- Archive_Indexer_Options --
114 -----------------------------
116 function Archive_Indexer_Options
return String_List_Access
is
118 return new String_List
(1 .. 0);
119 end Archive_Indexer_Options
;
121 ---------------------------
122 -- Build_Dynamic_Library --
123 ---------------------------
125 procedure Build_Dynamic_Library
126 (Ofiles
: Argument_List
;
127 Foreign
: Argument_List
;
128 Afiles
: Argument_List
;
129 Options
: Argument_List
;
130 Options_2
: Argument_List
;
131 Interfaces
: Argument_List
;
132 Lib_Filename
: String;
134 Symbol_Data
: Symbol_Record
;
135 Driver_Name
: Name_Id
:= No_Name
;
136 Lib_Version
: String := "";
137 Auto_Init
: Boolean := False)
139 pragma Unreferenced
(Foreign
);
140 pragma Unreferenced
(Afiles
);
142 Lib_File
: constant String :=
143 Lib_Dir
& Directory_Separator
& "lib" &
144 Fil
.Ext_To
(Lib_Filename
, DLL_Ext
);
146 Opts
: Argument_List
:= Options
;
147 Last_Opt
: Natural := Opts
'Last;
148 Opts2
: Argument_List
(Options
'Range);
149 Last_Opt2
: Natural := Opts2
'First - 1;
151 Inter
: constant Argument_List
:= Interfaces
;
153 function Is_Interface
(Obj_File
: String) return Boolean;
154 -- For a Stand-Alone Library, returns True if Obj_File is the object
155 -- file name of an interface of the SAL. For other libraries, always
158 function Option_File_Name
return String;
159 -- Returns Symbol_File, if not empty. Otherwise, returns "symvec.opt"
161 function Version_String
return String;
162 -- Returns Lib_Version if not empty and if Symbol_Data.Symbol_Policy is
163 -- not Autonomous, otherwise returns "".
164 -- When Symbol_Data.Symbol_Policy is Autonomous, fails gnatmake if
165 -- Lib_Version is not the image of a positive number.
171 function Is_Interface
(Obj_File
: String) return Boolean is
172 ALI
: constant String :=
174 (Filename
=> To_Lower
(Base_Name
(Obj_File
)),
178 if Inter
'Length = 0 then
181 elsif ALI
'Length > 2 and then
182 ALI
(ALI
'First .. ALI
'First + 2) = "b__"
187 for J
in Inter
'Range loop
188 if Inter
(J
).all = ALI
then
197 ----------------------
198 -- Option_File_Name --
199 ----------------------
201 function Option_File_Name
return String is
203 if Symbol_Data
.Symbol_File
= No_Name
then
206 Get_Name_String
(Symbol_Data
.Symbol_File
);
207 To_Lower
(Name_Buffer
(1 .. Name_Len
));
208 return Name_Buffer
(1 .. Name_Len
);
210 end Option_File_Name
;
216 function Version_String
return String is
217 Version
: Integer := 0;
220 or else Symbol_Data
.Symbol_Policy
/= Autonomous
226 Version
:= Integer'Value (Lib_Version
);
229 raise Constraint_Error
;
235 when Constraint_Error
=>
236 Fail
("illegal version """, Lib_Version
,
237 """ (on VMS version must be a positive number)");
243 Opt_File_Name
: constant String := Option_File_Name
;
244 Version
: constant String := Version_String
;
245 For_Linker_Opt
: String_Access
;
247 -- Start of processing for Build_Dynamic_Library
250 -- Invoke gcc with -shared-libgcc, but only for GCC 3 or higher
252 if GCC_Version
>= 3 then
253 Link_With_Shared_Libgcc
:= Shared_Libgcc_Switch
'Access;
255 Link_With_Shared_Libgcc
:= No_Shared_Libgcc_Switch
'Access;
258 -- If option file name does not ends with ".opt", append "/OPTIONS"
259 -- to its specification for the VMS linker.
261 if Opt_File_Name
'Length > 4
263 Opt_File_Name
(Opt_File_Name
'Last - 3 .. Opt_File_Name
'Last) = ".opt"
265 For_Linker_Opt
:= new String'("--for-linker=" & Opt_File_Name);
268 new String'("--for-linker=" & Opt_File_Name
& "/OPTIONS");
271 VMS_Options
(VMS_Options
'First) := For_Linker_Opt
;
273 for J
in Inter
'Range loop
274 To_Lower
(Inter
(J
).all);
277 -- "gnatsym" is necessary for building the option file
279 if Gnatsym_Path
= null then
280 Gnatsym_Path
:= OS_Lib
.Locate_Exec_On_Path
(Gnatsym_Name
);
282 if Gnatsym_Path
= null then
283 Fail
(Gnatsym_Name
, " not found in path");
287 -- For auto-initialization of a stand-alone library, we create
288 -- a macro-assembly file and we invoke the macro-assembler.
292 Macro_File_Name
: constant String := Lib_Filename
& "__init.asm";
293 Macro_File
: File_Descriptor
;
294 Init_Proc
: String := Lib_Filename
& "INIT";
295 Popen_Result
: System
.Address
;
296 Pclose_Result
: Integer;
298 OK
: Boolean := True;
300 command
: constant String :=
301 Macro_Name
& " " & Macro_File_Name
& ASCII
.NUL
;
302 -- The command to invoke the assembler on the generated auto-init
305 mode
: constant String := "r" & ASCII
.NUL
;
306 -- The mode for the invocation of Popen
309 To_Upper
(Init_Proc
);
312 Write_Str
("Creating auto-init assembly file """);
313 Write_Str
(Macro_File_Name
);
317 -- Create and write the auto-init assembly file
320 First_Line
: constant String :=
321 ASCII
.HT
& ".section LIB$INITIALIZE,GBL,NOWRT" &
323 Second_Line
: constant String :=
324 ASCII
.HT
& ".long " & Init_Proc
& ASCII
.LF
;
325 -- First and second lines of the auto-init assembly file
328 Macro_File
:= Create_File
(Macro_File_Name
, Text
);
329 OK
:= Macro_File
/= Invalid_FD
;
333 (Macro_File
, First_Line
(First_Line
'First)'Address,
335 OK
:= Len
= First_Line
'Length;
340 (Macro_File
, Second_Line
(Second_Line
'First)'Address,
342 OK
:= Len
= Second_Line
'Length;
346 Close
(Macro_File
, OK
);
350 Fail
("creation of auto-init assembly file """,
351 Macro_File_Name
, """ failed");
355 -- Invoke the macro-assembler
358 Write_Str
("Assembling auto-init assembly file """);
359 Write_Str
(Macro_File_Name
);
363 Popen_Result
:= popen
(command
(command
'First)'Address,
364 mode
(mode
'First)'Address);
366 if Popen_Result
= Null_Address
then
367 Fail
("assembly of auto-init assembly file """,
368 Macro_File_Name
, """ failed");
371 -- Wait for the end of execution of the macro-assembler
373 Pclose_Result
:= pclose
(Popen_Result
);
375 if Pclose_Result
< 0 then
376 Fail
("assembly of auto init assembly file """,
377 Macro_File_Name
, """ failed");
380 -- Add the generated object file to the list of objects to be
381 -- included in the library.
383 Additional_Objects
:=
385 (1 => new String'(Lib_Filename
& "__init.obj"));
389 -- Allocate the argument list and put the symbol file name, the
390 -- reference (if any) and the policy (if not autonomous).
392 Arguments
:= new Argument_List
(1 .. Ofiles
'Length + 8);
399 Last_Argument
:= Last_Argument
+ 1;
400 Arguments
(Last_Argument
) := new String'("-v");
403 -- Version number (major ID)
405 if Lib_Version /= "" then
406 Last_Argument := Last_Argument + 1;
407 Arguments (Last_Argument) := new String'("-V");
408 Last_Argument
:= Last_Argument
+ 1;
409 Arguments
(Last_Argument
) := new String'(Version);
414 Last_Argument := Last_Argument + 1;
415 Arguments (Last_Argument) := new String'("-s");
416 Last_Argument
:= Last_Argument
+ 1;
417 Arguments
(Last_Argument
) := new String'(Opt_File_Name);
419 -- Reference Symbol File
421 if Symbol_Data.Reference /= No_Name then
422 Last_Argument := Last_Argument + 1;
423 Arguments (Last_Argument) := new String'("-r");
424 Last_Argument
:= Last_Argument
+ 1;
425 Arguments
(Last_Argument
) :=
426 new String'(Get_Name_String (Symbol_Data.Reference));
431 case Symbol_Data.Symbol_Policy is
436 Last_Argument := Last_Argument + 1;
437 Arguments (Last_Argument) := new String'("-c");
440 Last_Argument
:= Last_Argument
+ 1;
441 Arguments
(Last_Argument
) := new String'("-C");
444 Last_Argument := Last_Argument + 1;
445 Arguments (Last_Argument) := new String'("-R");
448 -- Add each relevant object file
450 for Index
in Ofiles
'Range loop
451 if Is_Interface
(Ofiles
(Index
).all) then
452 Last_Argument
:= Last_Argument
+ 1;
453 Arguments
(Last_Argument
) := new String'(Ofiles (Index).all);
459 Spawn (Program_Name => Gnatsym_Path.all,
460 Args => Arguments (1 .. Last_Argument),
464 Fail ("unable to create symbol file for library """,
470 -- Move all the -l switches from Opts to Opts2
473 Index : Natural := Opts'First;
477 while Index <= Last_Opt loop
480 if Opt'Length > 2 and then
481 Opt (Opt'First .. Opt'First + 1) = "-l"
483 if Index < Last_Opt then
484 Opts (Index .. Last_Opt - 1) :=
485 Opts (Index + 1 .. Last_Opt);
488 Last_Opt := Last_Opt - 1;
490 Last_Opt2 := Last_Opt2 + 1;
491 Opts2 (Last_Opt2) := Opt;
499 -- Invoke gcc to build the library
502 (Output_File => Lib_File,
503 Objects => Ofiles & Additional_Objects.all,
504 Options => VMS_Options,
505 Options_2 => Link_With_Shared_Libgcc.all &
506 Opts (Opts'First .. Last_Opt) &
507 Opts2 (Opts2'First .. Last_Opt2) & Options_2,
508 Driver_Name => Driver_Name);
510 -- The auto-init object file need to be deleted, so that it will not
511 -- be included in the library as a regular object file, otherwise
512 -- it will be included twice when the library will be built next
513 -- time, which may lead to errors.
517 Auto_Init_Object_File_Name : constant String :=
518 Lib_Filename & "__init.obj";
523 Write_Str ("deleting auto-init object file """);
524 Write_Str (Auto_Init_Object_File_Name);
528 Delete_File (Auto_Init_Object_File_Name, Success => Disregard);
531 end Build_Dynamic_Library;
537 function DLL_Ext return String is
546 function DLL_Prefix return String is
555 function Dynamic_Option return String is
564 function Is_Object_Ext (Ext : String) return Boolean is
573 function Is_C_Ext (Ext : String) return Boolean is
582 function Is_Archive_Ext (Ext : String) return Boolean is
584 return Ext = ".olb" or else Ext = ".exe";
591 function Libgnat return String is
592 Libgnat_A : constant String := "libgnat.a";
593 Libgnat_Olb : constant String := "libgnat.olb";
596 Name_Len := Libgnat_A'Length;
597 Name_Buffer (1 .. Name_Len) := Libgnat_A;
599 if Osint.Find_File (Name_Enter, Osint.Library) /= No_File then
607 ------------------------
608 -- Library_Exists_For --
609 ------------------------
611 function Library_Exists_For
612 (Project : Project_Id; In_Tree : Project_Tree_Ref) return Boolean
615 if not In_Tree.Projects.Table (Project).Library then
616 Fail ("INTERNAL ERROR: Library_Exists_For called " &
617 "for non library project");
622 Lib_Dir : constant String :=
624 (In_Tree.Projects.Table (Project).Library_Dir);
625 Lib_Name : constant String :=
627 (In_Tree.Projects.Table (Project).Library_Name);
630 if In_Tree.Projects.Table (Project).Library_Kind =
633 return Is_Regular_File
634 (Lib_Dir & Directory_Separator & "lib" &
635 Fil.Ext_To (Lib_Name, Archive_Ext));
638 return Is_Regular_File
639 (Lib_Dir & Directory_Separator & "lib" &
640 Fil.Ext_To (Lib_Name, DLL_Ext));
644 end Library_Exists_For;
646 ---------------------------
647 -- Library_File_Name_For --
648 ---------------------------
650 function Library_File_Name_For
651 (Project : Project_Id;
652 In_Tree : Project_Tree_Ref) return Name_Id
655 if not In_Tree.Projects.Table (Project).Library then
656 Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
657 "for non library project");
662 Lib_Name : constant String :=
664 (In_Tree.Projects.Table (Project).Library_Name);
668 Name_Buffer (1 .. Name_Len) := "lib";
670 if In_Tree.Projects.Table (Project).Library_Kind =
673 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
676 Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
682 end Library_File_Name_For;
688 function Object_Ext return String is
697 function PIC_Option return String is
702 -----------------------------------------------
703 -- Standalone_Library_Auto_Init_Is_Supported --
704 -----------------------------------------------
706 function Standalone_Library_Auto_Init_Is_Supported return Boolean is
709 end Standalone_Library_Auto_Init_Is_Supported;
711 ---------------------------
712 -- Support_For_Libraries --
713 ---------------------------
715 function Support_For_Libraries return Library_Support is
718 end Support_For_Libraries;