* combine.c (apply_distributive_law): Correct comment.
[official-gcc.git] / gcc / ada / mlib.adb
blob1b2997fadc61d53c27dfbbd26070e5566a3a18ed
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- M L I B --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1999-2001, Ada Core Technologies, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
24 -- --
25 ------------------------------------------------------------------------------
27 with Ada.Characters.Handling; use Ada.Characters.Handling;
28 with Opt;
29 with Osint; use Osint;
30 with Output; use Output;
31 with MLib.Utl;
33 package body MLib is
35 package Tools renames MLib.Utl;
37 -------------------
38 -- Build_Library --
39 -------------------
41 procedure Build_Library
42 (Ofiles : Argument_List;
43 Afiles : Argument_List;
44 Output_File : String;
45 Output_Dir : String)
47 pragma Warnings (Off, Afiles);
49 use GNAT.OS_Lib;
51 begin
52 if not Opt.Quiet_Output then
53 Write_Line ("building a library...");
54 Write_Str (" make ");
55 Write_Line (Output_File);
56 end if;
58 Tools.Ar (Output_Dir & "/lib" & Output_File & ".a", Objects => Ofiles);
60 end Build_Library;
62 ------------------------
63 -- Check_Library_Name --
64 ------------------------
66 procedure Check_Library_Name (Name : String) is
67 begin
68 if Name'Length = 0 then
69 Fail ("library name cannot be empty");
70 end if;
72 if Name'Length > Max_Characters_In_Library_Name then
73 Fail ("illegal library name """,
74 Name,
75 """: too long");
76 end if;
78 if not Is_Letter (Name (Name'First)) then
79 Fail ("illegal library name """,
80 Name,
81 """: should start with a letter");
82 end if;
84 for Index in Name'Range loop
85 if not Is_Alphanumeric (Name (Index)) then
86 Fail ("illegal library name """,
87 Name,
88 """: should include only letters and digits");
89 end if;
90 end loop;
91 end Check_Library_Name;
93 end MLib;