diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-08-01 12:28:52 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-08-01 12:28:52 +0200 |
commit | b330e3c8662dc2a2214d96f15c66ae7b42dfdecd (patch) | |
tree | d53a7b3cb0229c34ad3390076ccda3352e4be6ac /gcc/ada/makeusg.adb | |
parent | 24de083ff5a0b613356e4ad95c501fe9a9f795e1 (diff) | |
download | gcc-b330e3c8662dc2a2214d96f15c66ae7b42dfdecd.zip gcc-b330e3c8662dc2a2214d96f15c66ae7b42dfdecd.tar.gz gcc-b330e3c8662dc2a2214d96f15c66ae7b42dfdecd.tar.bz2 |
[multiple changes]
2014-08-01 Robert Dewar <dewar@adacore.com>
* sem_aggr.adb, sem_ch3.adb, sem_ch5.adb, sem_util.adb,
sem_res.adb: Minor reformatting.
2014-08-01 Vincent Celier <celier@adacore.com>
* make.adb (Initialize): Set Keep_Temporary_Files to True when
-dn is specified.
* makeusg.adb: Add line for new switch --keep-temp-files.
* makeutl.ads (Keep_Temp_Files_Option): New constant String.
* opt.ads (Keep_Temporary_Files): Document that it is also used
by gnatmake and gprbuild.
* switch-m.adb: Recognize new switch --keep-temp-files.
From-SVN: r213451
Diffstat (limited to 'gcc/ada/makeusg.adb')
-rw-r--r-- | gcc/ada/makeusg.adb | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/ada/makeusg.adb b/gcc/ada/makeusg.adb index 3c708bf..580a373 100644 --- a/gcc/ada/makeusg.adb +++ b/gcc/ada/makeusg.adb @@ -257,12 +257,6 @@ begin Write_Eol; Write_Eol; - -- Line for -dn - - Write_Str (" -dn Do not delete temporary files"); - Write_Eol; - Write_Eol; - Write_Str (" --create-map-file Create map file mainprog.map"); Write_Eol; @@ -271,6 +265,9 @@ begin Write_Str (" Create map file mapfile"); Write_Eol; + Write_Str (" --keep-temp-files Keep temporary files"); + Write_Eol; + Write_Str (" --GCC=command Use this gcc command"); Write_Eol; |