From: Mike Frysinger Date: Mon, 4 Jan 2016 00:11:58 +0000 (-0500) Subject: sim: config: drop use of __DATE__/__TIME__ X-Git-Tag: gdb-7.11-release~334 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b900245c3b92fc460a3f7fa17d14eb08f9ab4c76;p=thirdparty%2Fbinutils-gdb.git sim: config: drop use of __DATE__/__TIME__ 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. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index f1b372b36d7..d2aa37e3ac3 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2016-01-06 Mike Frysinger + + * sim-config.c (print_sim_config): Delete sim_io_printf of version, + date, and time information. + 2016-01-06 Mike Frysinger * sim-options.c (sim_parse_args): Mark argv array const. diff --git a/sim/common/sim-config.c b/sim/common/sim-config.c index d9036e19571..7e66787dced 100644 --- a/sim/common/sim-config.c +++ b/sim/common/sim-config.c @@ -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));