76b614a869
This rarely seems to be a problem, but is exposed by building mplayer on a 32-bit x86 platform with USE_CWRAPPERS=yes. Possibly with Linux tie-ins, my NetBSD platforms are all 64 bit. In the failing scenario mplayer attempts (at least at configure time) to use "as" directly. This is wrapped by cwrappers, which attempts to execute $AS explicitly. The exec fails because $PREFIX/bin/as doesn't exist, and hasn't done for a long time. Correct all the tool paths to include the "g" prefix for all these tools.
81 lines
2.3 KiB
Makefile
81 lines
2.3 KiB
Makefile
# $NetBSD: builtin.mk,v 1.9 2015/06/08 06:49:55 dsainty Exp $
|
|
|
|
BINUTILS_PREFIX?= /usr
|
|
|
|
BUILTIN_PKG:= binutils
|
|
BUILTIN_FIND_FILES_VAR := BINUTILS_FILES
|
|
BUILTIN_FIND_FILES.BINUTILS_FILES := ${BINUTILS_PREFIX}/include/bfd.h
|
|
.include "../../mk/buildlink3/bsd.builtin.mk"
|
|
|
|
###
|
|
### Determine if there is a built-in implementation of the package and
|
|
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
|
|
###
|
|
.if !empty(BINUTILS_FILES:N__nonexistent__)
|
|
IS_BUILTIN.binutils?= yes
|
|
.else
|
|
IS_BUILTIN.binutils?= no
|
|
.endif
|
|
|
|
###
|
|
### Determine whether we should use the built-in implementation if it
|
|
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
|
|
###
|
|
.if !defined(USE_BUILTIN.binutils)
|
|
. if ${PREFER.binutils} == "pkgsrc"
|
|
USE_BUILTIN.binutils= no
|
|
. else
|
|
USE_BUILTIN.binutils= ${IS_BUILTIN.binutils}
|
|
. if defined(BUILTIN_PKG.binutils) && \
|
|
!empty(IS_BUILTIN.binutils:M[yY][eE][sS])
|
|
USE_BUILTIN.binutils= yes
|
|
. for dep in ${BUILDLINK_API_DEPENDS.binutils}
|
|
. if !empty(USE_BUILTIN.binutils:M[yY][eE][sS])
|
|
USE_BUILTIN.binutils!= \
|
|
if ${PKG_ADMIN} pmatch ${dep:Q} ${BUILTIN_PKG.binutils:Q}; then \
|
|
${ECHO} yes; \
|
|
else \
|
|
${ECHO} no; \
|
|
fi
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
#
|
|
# Some platforms don't have a toolchain that can replace pkgsrc binutils.
|
|
#
|
|
_INCOMPAT_BINUTILS= NetBSD-0.*-* NetBSD-1.[01234]*-* \
|
|
NetBSD-1.5.*-* NetBSD-1.5[A-X]-*
|
|
. for pattern in ${_INCOMPAT_BINUTILS} ${INCOMPAT_BINUTILS}
|
|
. if !empty(MACHINE_PLATFORM:M${pattern})
|
|
USE_BUILTIN.binutils= no
|
|
. endif
|
|
. endfor
|
|
. endif # PREFER.binutils
|
|
.endif
|
|
MAKEVARS+= USE_BUILTIN.binutils
|
|
|
|
# if USE_BINUTILS is defined, then force the use of a true binutils
|
|
# implementation.
|
|
#
|
|
.if defined(USE_BINUTILS)
|
|
. if !empty(IS_BUILTIN.binutils:M[nN][oO])
|
|
USE_BUILTIN.binutils= no
|
|
. endif
|
|
.endif
|
|
|
|
###
|
|
### The section below only applies if we are not including this file
|
|
### solely to determine whether a built-in implementation exists.
|
|
###
|
|
CHECK_BUILTIN.binutils?= no
|
|
.if !empty(CHECK_BUILTIN.binutils:M[nN][oO])
|
|
|
|
. if !empty(USE_BUILTIN.binutils:M[nN][oO])
|
|
AR= ${BUILDLINK_PREFIX.binutils}/bin/gar
|
|
AS= ${BUILDLINK_PREFIX.binutils}/bin/gas
|
|
LD= ${BUILDLINK_PREFIX.binutils}/bin/gld
|
|
NM= ${BUILDLINK_PREFIX.binutils}/bin/gnm
|
|
RANLIB= ${BUILDLINK_PREFIX.binutils}/bin/granlib
|
|
. endif
|
|
|
|
.endif # CHECK_BUILTIN.binutils
|