diff options
author | Fangrui Song <i@maskray.me> | 2019-10-30 10:50:23 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-10-30 10:50:23 +0000 |
commit | 197245e341aeb1b5da8ee5fbe5d6c49de650fb89 (patch) | |
tree | 046f13d6fd30949d79ec6c7eb88b1d39834c0824 /binutils/ChangeLog | |
parent | a961a1e1749443516d8fe6e0570cf808a09e8f89 (diff) | |
download | gdb-197245e341aeb1b5da8ee5fbe5d6c49de650fb89.zip gdb-197245e341aeb1b5da8ee5fbe5d6c49de650fb89.tar.gz gdb-197245e341aeb1b5da8ee5fbe5d6c49de650fb89.tar.bz2 |
Add a --output=<DIR> option to ar to allow the specifying of an output directory.
* ar.c (emum long option numbers): Declare. Use to provide
numerical values for long options.
(long_options): Add --output option.
(usage): Mention the --output option.
(open_output_file): New function. Create a filepath for an output
file and open it.
(extract_file): Use open_output_file().
(open_output_file):
* testsuite/binutils-all/ar.exp: Add a test of the new feature.
* doc/binutils.texi: Document the new feature.
* NEWS: Mention the new feature.
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b723f56..c85d93b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,18 @@ +2019-10-30 Fangrui Song <i@maskray.me> + Nick Clifton <nickc@redhat.com> + + * ar.c (emum long option numbers): Declare. Use to provide + numerical values for long options. + (long_options): Add --output option. + (usage): Mention the --output option. + (open_output_file): New function. Create a filepath for an output + file and open it. + (extract_file): Use open_output_file(). + (open_output_file): + * testsuite/binutils-all/ar.exp: Add a test of the new feature. + * doc/binutils.texi: Document the new feature. + * NEWS: Mention the new feature. + 2019-10-26 Alan Modra <amodra@gmail.com> * objcopy.c (sort_gnu_build_notes): Correct sort of deleted |