On 01/24/2016 09:06 AM, Pádraig Brady wrote:
... The simplest fix would be to turn it into a macro:diff --git a/src/system.h b/src/system.h index 9898bc7..857e56d 100644 --- a/src/system.h +++ b/src/system.h @@ -650,11 +650,16 @@ emit_ancillary_info (char const *program) node, node == program ? " invocation" : ""); } -static inline void -emit_try_help (void) -{ - fprintf (stderr, _("Try '%s --help' for more information.\n"), program_name); -} +/* A macro rather than an inline function, as it references + the global program_name, which causes run time linking issues + in libstdbuf.so where unused functions are not removed by the linker. */ +#define emit_try_help() \ + do \ + { \ + fprintf (stderr, _("Try '%s --help' for more information.\n"), \ + program_name); \ + } \ + while (0) #include "inttostr.h"
This works great. Thanks!
