From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id 0CA40385843A; Thu, 3 Nov 2022 14:30:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0CA40385843A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1667485816; bh=OL5xoZrJY93FVjyrzRlqqCFOGFA7sWcYH9gFpjZUjq0=; h=From:To:Subject:Date:From; b=givzFJRaW6SaJ3CL05Rw5NrxhZETUiPqVmDtoXhHI1oGcrlbs1h4RLDif4IQau5eL Q6oYtIrXeRb7oEcU5ibRp5HEG+taswXJK03CIWkvtlrFIsiLIuQBGCWUQ6UCmvLAit HmojPKDcprBYk4MhA5Ro3A3BhRUfZvGfmftZ6h4E= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: gdb-cvs@sourceware.org Subject: [binutils-gdb] sim: ppc: drop use of DATE & TIME X-Act-Checkin: binutils-gdb X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: e7e7469e7a31bd5a406a03aa83a1cd648f5ef30d X-Git-Newrev: d91d55b907ece60568d78cb53651cf2b5c960817 Message-Id: <20221103143016.0CA40385843A@sourceware.org> Date: Thu, 3 Nov 2022 14:30:16 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dd91d55b907ec= e60568d78cb53651cf2b5c960817 commit d91d55b907ece60568d78cb53651cf2b5c960817 Author: Mike Frysinger Date: Thu Nov 3 20:06:01 2022 +0700 sim: ppc: drop use of DATE & TIME =20 No other tool does this, sim or otherwise, and it makes the ppc build non-reproducible. Drop it to simplify & make reproducible. Diff: --- sim/ppc/options.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sim/ppc/options.c b/sim/ppc/options.c index 8aefcb16a6a..b74451392b2 100644 --- a/sim/ppc/options.c +++ b/sim/ppc/options.c @@ -110,12 +110,6 @@ INLINE_OPTIONS\ (void) print_options (void) { -#if defined(_GNUC_) && defined(__VERSION__) - printf_filtered ("Compiled by GCC %s on %s %s\n", __VERSION__, __DATE__,= __TIME__); -#else - printf_filtered ("Compiled on %s %s\n", __DATE__, __TIME__); -#endif - printf_filtered ("HOST_BYTE_ORDER =3D %s\n", options_byte_order= (HOST_BYTE_ORDER)); printf_filtered ("WITH_TARGET_BYTE_ORDER =3D %s\n", options_byte_order= (WITH_TARGET_BYTE_ORDER)); printf_filtered ("WITH_XOR_ENDIAN =3D %d\n", WITH_XOR_ENDIAN);