mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
docker-distribution: fix build error on new hosts
Fix settings for GOROOT, CGO_CFLAGS and CGO_LDFLAGS. The previous setting for GOROOT is no longer valid as the directory does not exist for now. So adjust the GOROOT setting. Currently CGO_CFLAGS is set to use BUILDSDK_CFLAGS, and this is incorrect. We need target flags instead of SDK related flags. Such setting happens to work for some hosts. However, when building on newer hosts, we get QA error like below: ERROR: docker-distribution-v2.7.1-r0 do_package_qa: QA Issue: /usr/sbin/registry contained in package docker-registry requires libc.so.6(GLIBC_2.34)(64bit), but no providers found in RDEPENDS_docker-registry? [file-rdeps] The above error was found on hardknott on host Fedora 35. Tracking down the error and I found it's using host stuff which is likely to be caused by using incorrect CGO_CFLAGS. As the master branch is using the same settings, it has the same issue. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
parent
9c8e3597f7
commit
1a312f283e
|
@ -25,15 +25,15 @@ EXTRA_OEMAKE="BUILDTAGS=''"
|
||||||
do_compile() {
|
do_compile() {
|
||||||
export GOARCH="${TARGET_GOARCH}"
|
export GOARCH="${TARGET_GOARCH}"
|
||||||
export GOPATH="${WORKDIR}/git/"
|
export GOPATH="${WORKDIR}/git/"
|
||||||
export GOROOT="${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/go"
|
export GOROOT="${STAGING_LIBDIR}/go"
|
||||||
# Pass the needed cflags/ldflags so that cgo
|
# Pass the needed cflags/ldflags so that cgo
|
||||||
# can find the needed headers files and libraries
|
# can find the needed headers files and libraries
|
||||||
export CGO_ENABLED="1"
|
export CGO_ENABLED="1"
|
||||||
export CFLAGS=""
|
export CFLAGS=""
|
||||||
export LDFLAGS=""
|
export LDFLAGS=""
|
||||||
export CGO_CFLAGS="${BUILDSDK_CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
|
export CGO_CFLAGS="${TARGET_CFLAGS}"
|
||||||
export GO_GCFLAGS=""
|
export GO_GCFLAGS=""
|
||||||
export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
|
export CGO_LDFLAGS="${TARGET_LDFLAGS}"
|
||||||
export GO111MODULE=off
|
export GO111MODULE=off
|
||||||
|
|
||||||
cd ${S}
|
cd ${S}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user