summaryrefslogtreecommitdiff
path: root/src/output/slbt_output_config.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-02-13 03:10:11 +0000
committermidipix <writeonce@midipix.org>2024-02-13 03:13:49 +0000
commitc578162753123ea7d2746d2032ceb439c7c31d32 (patch)
tree686bee282ea50e6eb7854259a2e02ef350b26997 /src/output/slbt_output_config.c
parent32c2302764dce9380c427b748bc634825d08a2f7 (diff)
downloadslibtool-c578162753123ea7d2746d2032ceb439c7c31d32.tar.bz2
slibtool-c578162753123ea7d2746d2032ceb439c7c31d32.tar.xz
driver: rename --config as --info in anticipation of a compatible --config.
Diffstat (limited to 'src/output/slbt_output_config.c')
-rw-r--r--src/output/slbt_output_config.c114
1 files changed, 0 insertions, 114 deletions
diff --git a/src/output/slbt_output_config.c b/src/output/slbt_output_config.c
deleted file mode 100644
index 71389e2..0000000
--- a/src/output/slbt_output_config.c
+++ /dev/null
@@ -1,114 +0,0 @@
-/*******************************************************************/
-/* slibtool: a skinny libtool implementation, written in C */
-/* Copyright (C) 2016--2024 SysDeer Technologies, LLC */
-/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
-/*******************************************************************/
-
-#include <stdio.h>
-#include <string.h>
-#include <stdbool.h>
-
-#include <slibtool/slibtool.h>
-#include "slibtool_driver_impl.h"
-#include "slibtool_dprintf_impl.h"
-#include "slibtool_errinfo_impl.h"
-
-#ifndef SLBT_TAB_WIDTH
-#define SLBT_TAB_WIDTH 8
-#endif
-
-#ifndef SLBT_KEY_WIDTH
-#define SLBT_KEY_WIDTH 16
-#endif
-
-static bool slbt_output_config_line(
- int fd,
- const char * key,
- const char * value,
- const char * annotation,
- int midwidth)
-{
- return (slbt_dprintf(fd,"%-*s%-*s%s\n",
- SLBT_KEY_WIDTH, key,
- midwidth, value ? value : "",
- annotation ? annotation : "") < 0)
- ? true : false;
-}
-
-int slbt_output_config(const struct slbt_driver_ctx * dctx)
-{
- const struct slbt_common_ctx * cctx;
- const char * compiler;
- const char * target;
- int len;
- int midwidth;
- int fdout;
-
- cctx = dctx->cctx;
- compiler = cctx->cargv[0] ? cctx->cargv[0] : "";
- target = cctx->target ? cctx->target : "";
- midwidth = strlen(compiler);
- fdout = slbt_driver_fdout(dctx);
-
- if ((len = strlen(target)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.host)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.flavor)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.ar)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.ranlib)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.windres)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.dlltool)) > midwidth)
- midwidth = len;
-
- if ((len = strlen(cctx->host.mdso)) > midwidth)
- midwidth = len;
-
- midwidth += SLBT_TAB_WIDTH;
- midwidth &= (~(SLBT_TAB_WIDTH-1));
-
- if (slbt_output_config_line(fdout,"key","value","annotation",midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"---","-----","----------",midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"compiler",cctx->cargv[0],"",midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"target",cctx->target,"",midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"host",cctx->host.host,cctx->cfgmeta.host,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"flavor",cctx->host.flavor,cctx->cfgmeta.flavor,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"ar",cctx->host.ar,cctx->cfgmeta.ar,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"ranlib",cctx->host.ranlib,cctx->cfgmeta.ranlib,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"windres",cctx->host.windres,cctx->cfgmeta.windres,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"dlltool",cctx->host.dlltool,cctx->cfgmeta.dlltool,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- if (slbt_output_config_line(fdout,"mdso",cctx->host.mdso,cctx->cfgmeta.mdso,midwidth))
- return SLBT_SYSTEM_ERROR(dctx,0);
-
- return 0;
-}