diff options
author | Vincent Celier <celier@adacore.com> | 2007-06-06 12:38:29 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-06-06 12:38:29 +0200 |
commit | b5755e2ba523ae36cb5f033ec1dd29d4cda71c09 (patch) | |
tree | 8aaae1b1f0d5ee967a99f3a84e73a2967488926f /gcc/ada/mlib-utl.ads | |
parent | da4d406dcb68d1de187d81c93ae50864cc3f8fb0 (diff) | |
download | gcc-b5755e2ba523ae36cb5f033ec1dd29d4cda71c09.zip gcc-b5755e2ba523ae36cb5f033ec1dd29d4cda71c09.tar.gz gcc-b5755e2ba523ae36cb5f033ec1dd29d4cda71c09.tar.bz2 |
mlib.ads, mlib.adb (Build_Library): Do not use hard-coded directory separator...
2007-04-20 Vincent Celier <celier@adacore.com>
* mlib.ads, mlib.adb (Build_Library): Do not use hard-coded directory
separator, use instead the proper host directory separator.
(Copy_ALI_Files): Make sure that an already existing ALI file in the
ALI copy dir is writable, before doing the copy.
* mlib-utl.ads, mlib-utl.adb:
(Gcc): If length of command line is too long, put the list of object
files in a response file, if this is supported by the platform.
(Ar): If invocation of the archive builder is allowed to be done in
chunks and building it in one shot would go above an OS dependent
limit on the number of characters on the command line, build the archive
in chunks.
From-SVN: r125435
Diffstat (limited to 'gcc/ada/mlib-utl.ads')
-rw-r--r-- | gcc/ada/mlib-utl.ads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/mlib-utl.ads b/gcc/ada/mlib-utl.ads index 0050110..d0476b0 100644 --- a/gcc/ada/mlib-utl.ads +++ b/gcc/ada/mlib-utl.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2001-2006, AdaCore -- +-- Copyright (C) 2001-2007, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -30,8 +30,8 @@ package MLib.Utl is procedure Delete_File (Filename : String); - -- Delete the file Filename - -- Why is this different from the standard OS_Lib routine??? + -- Delete the file Filename and output the name of the deleted file in + -- verbose mode. procedure Gcc (Output_File : String; |