From: Steve Chamberlain Date: Tue, 22 Aug 1995 01:42:11 +0000 (+0000) Subject: * dlltool.c (options): image-base is a synonym for rva. X-Git-Tag: gdb-4_18~11069 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=739484a32104fbfde09f043ce0eeb1971de172ed;p=platform%2Fupstream%2Fbinutils.git * dlltool.c (options): image-base is a synonym for rva. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 561a867..06cbc5f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 21 18:41:28 1995 steve chamberlain + + * dlltool.c (options): image-base is a synonym for rva. + Sun Aug 20 09:59:00 1995 steve chamberlain Modified to generate archives and objects rather than .s files. diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 304d277..39f495f 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -1382,14 +1382,14 @@ usage (file, status) fprintf (file, "\t --output-lib Generate input library.\n"); fprintf (file, "\t -l "); fprintf (file, "\t --dllname Name of input dll to put into output lib.\n"); - fprintf (file, "\t -d Name input .def file\n"); - fprintf (file, "\t --def \n"); + fprintf (file, "\t --def Name input .def file\n"); fprintf (file, "\t --base-file Read linker generated base file\n"); fprintf (file, "\t -b \n"); fprintf (file, "\t -v Verbose\n"); fprintf (file, "\t -u Remove leading underscore from .lib\n"); fprintf (file, "\t -k Kill @ from exported names\n"); fprintf (file, "\t --rva Set the RVA from the default of 0x400000\n"); + fprintf (file, "\t -image-base ..ditto..\n"); fprintf (file, "\t -r \n"); fprintf (file, "\t --nodelete Keep temp files.\n"); fprintf (file, "\t -n \n"); @@ -1408,6 +1408,7 @@ static struct option long_options[] = {"help", no_argument, NULL, 'h'}, {"machine", required_argument, NULL, 'm'}, {"rva", required_argument, NULL, 'r'}, + {"image-base", required_argument, NULL, 'r'}, {"base-file", required_argument, NULL, 'b'}, 0 };