diff options
author | 2022-06-12 01:00:07 -0700 | |
---|---|---|
committer | 2022-06-20 12:09:51 -0400 | |
commit | 0d2ea6a1ad78a476dca82b75e2bd3a7c8a9efdcd (patch) | |
tree | f5faeed87571da501423bb6192641edd103a38cf | |
parent | ca033baeb34c0a90883261300267591943764608 (diff) | |
download | meta-virtualization-0d2ea6a1ad78a476dca82b75e2bd3a7c8a9efdcd.tar.gz meta-virtualization-0d2ea6a1ad78a476dca82b75e2bd3a7c8a9efdcd.tar.bz2 meta-virtualization-0d2ea6a1ad78a476dca82b75e2bd3a7c8a9efdcd.zip |
riddler: adjust GOROOT, CGO_CFLAGS and CGO_LDFALGS
Adjust the GOROOT setting as directory specified by the original
one does not exist.
The CGO_CFLAGS and CGO_LDFLAGS should use target flags instead
of the nativesdk ones.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/riddler/riddler_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-containers/riddler/riddler_git.bb b/recipes-containers/riddler/riddler_git.bb index be751d6..e103331 100644 --- a/recipes-containers/riddler/riddler_git.bb +++ b/recipes-containers/riddler/riddler_git.bb @@ -26,7 +26,7 @@ EXTRA_OEMAKE="BUILDTAGS=''" do_compile() { export GOARCH="${TARGET_GOARCH}" - export GOROOT="${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/go" + export GOROOT="${STAGING_LIBDIR}/go" # Setup vendor directory so that it can be used in GOPATH. # # Go looks in a src directory under any directory in GOPATH but riddler @@ -44,8 +44,8 @@ do_compile() { export CGO_ENABLED="1" export CFLAGS="" export LDFLAGS="" - export CGO_CFLAGS="${BUILDSDK_CFLAGS} --sysroot=${STAGING_DIR_TARGET}" - export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" + export CGO_CFLAGS="${TARGET_CFLAGS}" + export CGO_LDFLAGS="${TARGET_LDFLAGS}" export GO111MODULE=off cd ${S}/src/import |