svn commit: r360679 - head/contrib/binutils/gas

Ed Maste emaste at FreeBSD.org
Wed May 6 01:08:20 UTC 2020


Author: emaste
Date: Wed May  6 01:08:19 2020
New Revision: 360679
URL: https://svnweb.freebsd.org/changeset/base/360679

Log:
  GNU as: print a deprecation warning on program start
  
  GNU as 2.17.50 will be removed before FreeBSD 13.

Modified:
  head/contrib/binutils/gas/as.c

Modified: head/contrib/binutils/gas/as.c
==============================================================================
--- head/contrib/binutils/gas/as.c	Wed May  6 00:44:03 2020	(r360678)
+++ head/contrib/binutils/gas/as.c	Wed May  6 01:08:19 2020	(r360679)
@@ -1089,6 +1089,7 @@ main (int argc, char ** argv)
   expandargv (&argc, &argv);
 
   START_PROGRESS (myname, 0);
+  fprintf (stderr, _("warning: as 2.17.50 is deprecated in FreeBSD and will be removed\n"));
 
 #ifndef OBJ_DEFAULT_OUTPUT_FILE_NAME
 #define OBJ_DEFAULT_OUTPUT_FILE_NAME "a.out"


More information about the svn-src-all mailing list