diff options
Diffstat (limited to 'src/output')
-rw-r--r-- | src/output/slbt_output_info.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/output/slbt_output_info.c b/src/output/slbt_output_info.c index 92106a7..a95324d 100644 --- a/src/output/slbt_output_info.c +++ b/src/output/slbt_output_info.c @@ -65,6 +65,9 @@ int slbt_output_info(const struct slbt_driver_ctx * dctx) if ((len = strlen(cctx->host.as)) > midwidth) midwidth = len; + if ((len = strlen(cctx->host.nm)) > midwidth) + midwidth = len; + if ((len = strlen(cctx->host.ranlib)) > midwidth) midwidth = len; @@ -104,6 +107,9 @@ int slbt_output_info(const struct slbt_driver_ctx * dctx) if (slbt_output_info_line(fdout,"as",cctx->host.as,cctx->cfgmeta.as,midwidth)) return SLBT_SYSTEM_ERROR(dctx,0); + if (slbt_output_info_line(fdout,"nm",cctx->host.nm,cctx->cfgmeta.nm,midwidth)) + return SLBT_SYSTEM_ERROR(dctx,0); + if (slbt_output_info_line(fdout,"ranlib",cctx->host.ranlib,cctx->cfgmeta.ranlib,midwidth)) return SLBT_SYSTEM_ERROR(dctx,0); |