Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 736170 - sys-cluster/knem-1.1.3 does not correctly handle KBUILD_OUTPUT
Summary: sys-cluster/knem-1.1.3 does not correctly handle KBUILD_OUTPUT
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Alexey Shvetsov
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-08-06 20:15 UTC by Daniel M. Weeks
Modified: 2020-08-08 00:42 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel M. Weeks 2020-08-06 20:15:32 UTC
The kernel eclass checks for KBUILD_OUTPUT work normally. However, the knem build system has separate options for the kernel source and build directories. When only the source directory (--with-linux) is set, the build location is assumed to be the same. The ebuild needs to set the build directory (--with-linux-build) explicitly when KBUILD_OUTPUT is used.

econf should specify --with-linux-build="${KBUILD_OUTPUT}"

Example of configure failure when KBUILD_OUTPUT is in use:

checking kernel Makefile... found in /usr/src/linux
configure: looked for kernel headers and build system using:
configure:   kernel headers in /usr/src/linux
configure:   kernel build in /usr/src/linux
configure: might need --with-linux-release, --with-linux, or --with-linux-build
configure: error: could not find kernel headers and build system


econf '--enable-hwloc' '--with-linux=/usr/src/linux' '--with-linux-release=5.4.48-gentoo' '--disable-debug'


Reproducible: Always