]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: config: drop use of __DATE__/__TIME__
authorMike Frysinger <vapier@gentoo.org>
Mon, 4 Jan 2016 00:11:58 +0000 (19:11 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 7 Jan 2016 02:52:57 +0000 (21:52 -0500)
These don't add a whole lot of useful info, and people don't like them as
it makes builds unreproducible, so just drop them.

sim/common/ChangeLog
sim/common/sim-config.c

index f1b372b36d7103d894a9aa185ab66a5fd995660d..d2aa37e3ac3465b9de9951979cca18ea30469094 100644 (file)
@@ -1,3 +1,8 @@
+2016-01-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-config.c (print_sim_config): Delete sim_io_printf of version,
+       date, and time information.
+
 2016-01-06  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-options.c (sim_parse_args): Mark argv array const.
index d9036e195719dcc322d181450a320bf9fbe0c798..7e66787dced5d2635bcb3a245de4ceaff4eeb611 100644 (file)
@@ -295,13 +295,6 @@ sim_config (SIM_DESC sd)
 void
 print_sim_config (SIM_DESC sd)
 {
-#if defined (__GNUC__) && defined (__VERSION__)
-  sim_io_printf (sd, "Compiled by GCC %s on %s %s\n",
-                         __VERSION__, __DATE__, __TIME__);
-#else
-  sim_io_printf (sd, "Compiled on %s %s\n", __DATE__, __TIME__);
-#endif
-
   sim_io_printf (sd, "WITH_TARGET_BYTE_ORDER   = %s\n",
                 config_byte_order_to_a (WITH_TARGET_BYTE_ORDER));