summaryrefslogtreecommitdiff
path: root/gcc/ada/makeusg.adb
diff options
context:
space:
mode:
authorguerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-04 20:19:36 +0000
committerguerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4>2002-04-04 20:19:36 +0000
commit4973c3bed61f4722d40fbaabbeea89f7a138a2c1 (patch)
treea891ec6673a48e1eecea94c17fd56ad4411321d8 /gcc/ada/makeusg.adb
parentbcf6e0f2f98c2e019b92a47ec0a18b0799293971 (diff)
downloadgcc-4973c3bed61f4722d40fbaabbeea89f7a138a2c1.tar.gz
2002-04-04 Laurent Guerby <guerby@acm.org>
* make.adb: Implement -margs, remove restriction about file name placement. * makeusg.adb: Documentation update. * Makefile.in (TOOLS_FLAGS_TO_PASS): Add VPATH=$(fsrcdir). * Makefile.in (gnattools3): Comment out, gnatmem does not build without libaddr2line. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51866 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/makeusg.adb')
-rw-r--r--gcc/ada/makeusg.adb11
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ada/makeusg.adb b/gcc/ada/makeusg.adb
index fa97191b596..3f061d7f313 100644
--- a/gcc/ada/makeusg.adb
+++ b/gcc/ada/makeusg.adb
@@ -39,11 +39,11 @@ begin
Write_Str ("Usage: ");
Osint.Write_Program_Name;
Write_Str (" opts name ");
- Write_Str ("{[-cargs opts] [-bargs opts] [-largs opts]}");
+ Write_Str ("{[-cargs opts] [-bargs opts] [-largs opts] [-margs opts]}");
Write_Eol;
Write_Eol;
- Write_Str (" name is a file name from which you can omit the");
- Write_Str (" .adb or .ads suffix");
+ Write_Str (" name is one or more file name from which you");
+ Write_Str (" can omit the .adb or .ads suffix");
Write_Eol;
Write_Eol;
@@ -253,6 +253,11 @@ begin
Write_Str (" -largs opts opts are passed to the linker");
Write_Eol;
+ -- Line for -margs
+
+ Write_Str (" -margs opts opts are passed to gnatmake");
+ Write_Eol;
+
-- Add usage information for gcc
Usage;