a1abd9761c
For a long time, when cross-building, say from native=amd64 to target=powerpc, it was necessary to: 1. cross-build a _powerpc_ package called cross-libtool-base-powerpc, and then 2. install the powerpc package _natively_ with `pkg_add -m x86_64' to override the architecture check that normally forbids this kind of shenanigans, in order to cross-build anything that uses libtool as a tool. This is partly because libtool doesn't follow the normal GNU convention of `./configure --build=<native platform> --host=<platform package will run on> --target=<platform package is configured to operate on>' -- in this example, build=amd64, host=amd64, target=powerpc. Instead, libtool expects to be cross-built itself, even if it's going to run as a tool. It's not as bonkers as it sounds at first: libtool is just a shell script, and it caches various information about the (cross-building!) toolchain it is built with so it can use that information later when it is run as a tool itself to cross-compile other software. To make this work, we need to create the toolchain wrappers for libtool _as if_ we were cross-building even if we are building a native package. So mk/tools uses a new flag TOOLS_USE_CROSS_COMPILE instead of USE_CROSS_COMPILE, and libtool internally sets MACHINE_ARCH=${TARGET_ARCH} (in the example above, powerpc) to make it look like we're cross-building. The new TOOLS_CROSS_DESTDIR is an alias for the (defaulted) CROSS_DESTDIR, which must now be set unconditionally in mk.conf in order for libtool to know where the cross-destdir will be; _CROSS_DESTDIR remains empty when building any native packages (including the native cross-libtool package). Finally, we need to make the resulting package be a native package, with MACHINE_ARCH set to the one that it will be installed on (in the example above, amd64), so I added an indirection _BUILD_DEFS.${var} to replace var on its own in the build definitions that get baked into the package, shown by `pkg_info -B'. Setting _BUILD_DEFS.MACHINE_ARCH=${NATIVE_MACHINE_ARCH} ensures that this mutant hybrid cross-built libtool still produces a native package. All of this logic is gated on setting USE_CROSS_COMPILE in mk.conf or LIBTOOL_CROSS_COMPILE in the package makefile, so it should be safe for non-cross-builds -- when USE_CROSS_COMPILE=no and you're not building cross-libtool, everything is as before.
170 lines
5.5 KiB
Makefile
170 lines
5.5 KiB
Makefile
# $NetBSD: cwrappers.mk,v 1.35 2022/04/04 11:23:06 riastradh Exp $
|
|
#
|
|
# This Makefile fragment implements integration of pkgtools/cwrappers.
|
|
|
|
.include "../../mk/wrapper/wrapper-defs.mk"
|
|
.include "../../mk/buildlink3/bsd.buildlink3.mk"
|
|
|
|
TOOL_DEPENDS+= cwrappers>=20220403:../../pkgtools/cwrappers
|
|
|
|
# XXX This should be PREFIX, but USE_CROSSBASE overrides it.
|
|
CWRAPPERS_SRC_DIR= ${LOCALBASE}/libexec/cwrappers
|
|
CWRAPPERS_CONFIG_DIR= ${WRKDIR}/.cwrapper/config
|
|
CONFIGURE_ENV+= CWRAPPERS_CONFIG_DIR=${CWRAPPERS_CONFIG_DIR}
|
|
MAKE_ENV+= CWRAPPERS_CONFIG_DIR=${CWRAPPERS_CONFIG_DIR}
|
|
ALL_ENV+= CWRAPPERS_CONFIG_DIR=${CWRAPPERS_CONFIG_DIR}
|
|
|
|
# TODO: Fix direct calls to CC and LIBTOOL to provide correct environment.
|
|
.export CWRAPPERS_CONFIG_DIR
|
|
|
|
CWRAPPERS_CONFIG.as= as
|
|
CWRAPPERS_CONFIG.cc= cc
|
|
CWRAPPERS_CONFIG.cxx= c++
|
|
CWRAPPERS_CONFIG.cpp= cpp
|
|
CWRAPPERS_CONFIG.f77= f77
|
|
CWRAPPERS_CONFIG.imake= imake
|
|
CWRAPPERS_CONFIG.ld= ld
|
|
CWRAPPERS_CONFIG.libtool= libtool
|
|
CWRAPPERS_CONFIG.shlibtool= shlibtool
|
|
|
|
CWRAPPERS_ALIASES.as= as
|
|
CWRAPPERS_ALIASES.cc= cc gcc clang
|
|
CWRAPPERS_ALIASES.cxx= c++ g++ cxx clang++
|
|
CWRAPPERS_ALIASES.cpp= cpp clang-cpp
|
|
CWRAPPERS_ALIASES.f77= f77 g77 gfortran
|
|
CWRAPPERS_ALIASES.imake= imake
|
|
CWRAPPERS_ALIASES.ld= ld
|
|
CWRAPPERS_ALIASES.libtool= libtool
|
|
CWRAPPERS_ALIASES.shlibtool= shlibtool
|
|
|
|
.if !empty(TOOLS_USE_CROSS_COMPILE:M[yY][eE][sS])
|
|
CWRAPPERS_ALIASES.cc+= ${CC:T}
|
|
CWRAPPERS_ALIASES.cxx+= ${CXX:T}
|
|
CWRAPPERS_ALIASES.ld+= ${LD:T}
|
|
.endif
|
|
|
|
CWRAPPERS_WRAPPEE.as= ${AS:Ufalse}
|
|
CWRAPPERS_WRAPPEE.cxx= ${PKG_CXX:Ufalse}
|
|
CWRAPPERS_WRAPPEE.cc= ${PKG_CC:Ufalse}
|
|
CWRAPPERS_WRAPPEE.cpp= ${PKG_CPP:Ufalse}
|
|
CWRAPPERS_WRAPPEE.f77= ${PKG_FC:Ufalse}
|
|
CWRAPPERS_WRAPPEE.imake= ${TOOLS_PATH.imake:Ufalse}
|
|
CWRAPPERS_WRAPPEE.ld= ${LD:Ufalse}
|
|
CWRAPPERS_WRAPPEE.libtool= ${PKG_LIBTOOL:Ufalse}
|
|
CWRAPPERS_WRAPPEE.shlibtool= ${PKG_SHLIBTOOL:Ufalse}
|
|
|
|
# TODO: Find and fix packages depending on the implicit include path.
|
|
CWRAPPERS_APPEND.cc+= -I${PREFIX}/include
|
|
CWRAPPERS_APPEND.cxx+= -I${PREFIX}/include
|
|
CWRAPPERS_APPEND.cpp+= -I${PREFIX}/include
|
|
|
|
.if defined(USE_IMAKE) || !empty(USE_TOOLS:Mimake)
|
|
CWRAPPERS_TRANSFORM.imake+= I:${PREFIX}/lib/X11/config:${PREFIX}/lib/X11/config
|
|
CWRAPPERS_APPEND.imake+= ${IMAKEOPTS}
|
|
.endif
|
|
|
|
.PHONY: generate-cwrappers
|
|
|
|
.for _target_ in ${WRAPPER_TARGETS}
|
|
generate-cwrappers: ${_target_}
|
|
.endfor
|
|
|
|
generate-cwrappers:
|
|
.for wrappee in as cxx cc cpp f77 imake ld libtool shlibtool
|
|
${RUN}echo worklog=${WRKLOG:Q} > ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
${RUN}echo wrksrc=${WRKSRC:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
${RUN}case ${wrappee} in *libtool) ;; *) echo path=${_PATH_COMPONENTS:N${WRAPPER_BINDIR}:ts::Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}};; esac
|
|
${RUN}echo exec_path=${WRAPPER_BINDIR}/${CWRAPPERS_ALIASES.${wrappee}:[1]} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
${RUN}echo exec=${CWRAPPERS_WRAPPEE.${wrappee}:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. for cmd in ${WRAPPER_REORDER_CMDS}
|
|
${RUN}echo reorder=${cmd:S/^reorder://:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. for cmd in ${CWRAPPERS_TRANSFORM.${wrappee}} ${_CWRAPPERS_TRANSFORM}
|
|
${RUN}echo transform=${cmd:u:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. for cmd in ${CWRAPPERS_APPEND.${wrappee}:U}
|
|
${RUN}echo append=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. for cmd in ${CWRAPPERS_PREPEND.${wrappee}:U}
|
|
${RUN}echo prepend=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. for cmd in ${_CWRAPPERS_UNWRAP}
|
|
${RUN}echo unwrap=${cmd:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. for alias in ${CWRAPPERS_ALIASES.${wrappee}}
|
|
${RUN}ln -s ${CWRAPPERS_SRC_DIR}/${CWRAPPERS_CONFIG.${wrappee}}-wrapper ${WRAPPER_BINDIR}/${alias}
|
|
. endfor
|
|
. if ${_PKGSRC_MKPIE} == "yes"
|
|
. if ${PKGSRC_OVERRIDE_MKPIE:tl} == "no"
|
|
. for arg in ${_MKPIE_LDFLAGS}
|
|
${RUN}echo append_executable=${arg} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endfor
|
|
. endif
|
|
. endif
|
|
. if !empty(TOOLS_USE_CROSS_COMPILE:M[yY][eE][sS])
|
|
${RUN}echo sysroot=${TOOLS_CROSS_DESTDIR:Q} >> ${CWRAPPERS_CONFIG_DIR}/${CWRAPPERS_CONFIG.${wrappee}}
|
|
. endif
|
|
.endfor
|
|
|
|
PREPEND_PATH+= ${WRAPPER_BINDIR}
|
|
|
|
_COOKIE.wrapper= ${WRKDIR}/.wrapper_done
|
|
|
|
.PHONY: wrapper
|
|
.if !target(wrapper)
|
|
. if exists(${_COOKIE.wrapper}) && !${_CLEANING}
|
|
wrapper:
|
|
@${DO_NADA}
|
|
. elif defined(_PKGSRC_BARRIER)
|
|
wrapper: check-vulnerable patch acquire-wrapper-lock ${_COOKIE.wrapper} release-wrapper-lock
|
|
. else
|
|
wrapper: barrier
|
|
. endif
|
|
.endif
|
|
|
|
.PHONY: acquire-wrapper-lock release-wrapper-lock
|
|
acquire-wrapper-lock: acquire-lock
|
|
release-wrapper-lock: release-lock
|
|
|
|
.if exists(${_COOKIE.wrapper}) && !${_CLEANING}
|
|
${_COOKIE.wrapper}:
|
|
@${DO_NADA}
|
|
.else
|
|
${_COOKIE.wrapper}: real-wrapper
|
|
.endif
|
|
|
|
.PHONY: real-wrapper
|
|
real-wrapper: wrapper-message wrapper-dirs wrapper-vars pre-wrapper do-wrapper post-wrapper wrapper-cookie error-check
|
|
|
|
.PHONY: wrapper-message
|
|
wrapper-message:
|
|
@${PHASE_MSG} "Creating toolchain wrappers for ${PKGNAME}"
|
|
|
|
.PHONY: wrapper-dirs
|
|
wrapper-dirs:
|
|
${RUN}${MKDIR} ${CWRAPPERS_CONFIG_DIR} ${WRAPPER_BINDIR}
|
|
|
|
.PHONY: pre-wrapper do-wrapper post-wrapper
|
|
|
|
do-wrapper: generate-cwrappers
|
|
|
|
.if !target(do-wrapper)
|
|
do-wrapper:
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
.if !target(pre-wrapper)
|
|
pre-wrapper:
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
.if !target(post-wrapper)
|
|
post-wrapper:
|
|
@${DO_NADA}
|
|
.endif
|
|
|
|
.PHONY: wrapper-cookie
|
|
wrapper-cookie:
|
|
${RUN} [ ! -f ${_COOKIE.wrapper} ]
|
|
${RUN} ${MKDIR} ${_COOKIE.wrapper:H}
|
|
${RUN} ${ECHO} ${PKGNAME} > ${_COOKIE.wrapper}
|