Date: Thu, 22 Dec 2016 18:13:46 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 215494] vchiq uses non-reproducible __DATE__ and __TIME__ Message-ID: <bug-215494-8@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215494 Bug ID: 215494 Summary: vchiq uses non-reproducible __DATE__ and __TIME__ Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emaste@freebsd.org VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_time, __TIME__ ); VC_DEBUG_DECLARE_STRING_VAR( vchiq_build_date, __DATE__ ); ... const char *vchiq_get_build_date( void ) { return vchiq_build_date; } const char *vchiq_get_build_time( void ) { return vchiq_build_time; } The __DATE__ and __TIME__ macros prevent this source file from building reproducibly. I wasn't able to find where vchiq_get_build_date or _time are used - can we remove them? --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-215494-8>