public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] libgloss: check for objcopy & objdump properly
@ 2023-12-27  5:29 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2023-12-27  5:29 UTC (permalink / raw)
  To: newlib

A bunch of ports hack together these values rather than setting them
up in the configure script for everyone.
---
 libgloss/Makefile.in  |   2 +
 libgloss/configure    | 186 ++++++++++++++++++++++++++++++++++++++++++
 libgloss/configure.ac |   2 +
 3 files changed, 190 insertions(+)

diff --git a/libgloss/configure.ac b/libgloss/configure.ac
index b22778896797..8326889a2167 100644
--- a/libgloss/configure.ac
+++ b/libgloss/configure.ac
@@ -257,6 +257,8 @@ AM_PROG_AR
 LD=${LD-ld}
 AC_SUBST(LD)
 AC_PROG_RANLIB
+AC_CHECK_TOOL(OBJCOPY, objcopy, :)
+AC_CHECK_TOOL(OBJDUMP, objdump, :)
 
 AC_DEFINE(HAVE_GNU_LD, 1, [Using GNU LD])
 
-- 
2.43.0


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-12-27  5:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-27  5:29 [PATCH] libgloss: check for objcopy & objdump properly Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).