[Scummvm-git-logs] scummvm master -> 5ab23653dbdcdbf3cc70776bd917bb10dd8b6920

lephilousophe noreply at scummvm.org
Wed Apr 30 21:21:23 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
5ab23653db BUILD: Support both $_host-peldd and peldd for mingw builds


Commit: 5ab23653dbdcdbf3cc70776bd917bb10dd8b6920
    https://github.com/scummvm/scummvm/commit/5ab23653dbdcdbf3cc70776bd917bb10dd8b6920
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-04-30T23:21:20+02:00

Commit Message:
BUILD: Support both $_host-peldd and peldd for mingw builds

toolchains/windows-9x currently only has a `peldd` binary, with no host
prefix.

Changed paths:
    configure


diff --git a/configure b/configure
index d2dfa7a072e..953e08ad34d 100755
--- a/configure
+++ b/configure
@@ -3802,6 +3802,8 @@ if test -n "$_host"; then
 			_strip=$_host-strip
 			if `which $_host-peldd >/dev/null 2>&1`; then
 				_ldd="$_host-peldd -t --ignore-errors"
+			elif `which peldd >/dev/null 2>&1`; then
+				_ldd="peldd -t --ignore-errors"
 			fi
 			;;
 		mips-sgi*)




More information about the Scummvm-git-logs mailing list