diff options
author | Linda Zhang <lindasc@qq.com> | 2020-11-20 11:07:26 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-11-20 11:07:26 +0000 |
commit | 8881640c8071b04fa2566f21eb2a47e691caf11c (patch) | |
tree | e4e6d71aa835f0722613838a6100a1adef430845 /binutils | |
parent | cc6fd584ed920b14d57703bb62c9ed773cea3732 (diff) | |
download | fsf-binutils-gdb-8881640c8071b04fa2566f21eb2a47e691caf11c.zip fsf-binutils-gdb-8881640c8071b04fa2566f21eb2a47e691caf11c.tar.gz fsf-binutils-gdb-8881640c8071b04fa2566f21eb2a47e691caf11c.tar.bz2 |
Add a warning to dllwrap that it is deprecated.
PR 20979
* dllwrap.c (main): Deprecate and warn the use of dllwrap.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dllwrap.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4acc0d4..d6af8df 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2020-11-20 Linda Zhang <lindasc@qq.com> + + PR 20979 + * dllwrap.c (main): Deprecate and warn the use of dllwrap. + 2020-11-20 Jozef Lawrynowicz <jozef.l@mittosystems.com> * testsuite/binutils-all/readelf-maskos-1a.d: Fix test for unrecognized diff --git a/binutils/dllwrap.c b/binutils/dllwrap.c index c8cdf84..97c8cb8 100644 --- a/binutils/dllwrap.c +++ b/binutils/dllwrap.c @@ -639,6 +639,9 @@ main (int argc, char **argv) bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); + warn (_("WARNING: %s is deprecated, use gcc -shared or ld -shared instead\n"), + prog_name); + expandargv (&argc, &argv); saved_argv = (char **) xmalloc (argc * sizeof (char*)); |