From: Ahmed Hossam Date: Tue, 26 Oct 2021 18:56:42 +0000 (+0200) Subject: go.bbclass: Allow adding parameters to go ldflags X-Git-Tag: uninative-3.5~1058 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=eaa7a61dab9a1d7bb039f16abdd9aacb44faa595;p=openembedded-core.git go.bbclass: Allow adding parameters to go ldflags Currently, there is no clean way to pass extra parameters to the go tool link, which is passed by the go build ldflags flag, the append needs to happen inside the quotes of the ldflags parameter See [YOCTO #14554]. Add a variable to allow adding extra parameters to -ldflags in the GO_LDFLAGS variable, one of the main usecases is setting the application version. For example, adding to the recipe something like GO_EXTRA_LDFLAGS="-X main.Version=v1.0.0" or GO_EXTRA_LDFLAGS="-X main.Version=${PV}" Signed-off-by: Ahmed Hossam Signed-off-by: Alexandre Belloni --- diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass index 0dd0c5f1d2..aa54b4a08c 100644 --- a/meta/classes/go.bbclass +++ b/meta/classes/go.bbclass @@ -41,7 +41,8 @@ GO_EXTLDFLAGS ?= "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS} ${GO_RPATH_LINK} ${LDFLAGS GO_LINKMODE ?= "" GO_LINKMODE:class-nativesdk = "--linkmode=external" GO_LINKMODE:class-native = "--linkmode=external" -GO_LDFLAGS ?= '-ldflags="${GO_RPATH} ${GO_LINKMODE} -extldflags '${GO_EXTLDFLAGS}'"' +GO_EXTRA_LDFLAGS ?= "" +GO_LDFLAGS ?= '-ldflags="${GO_RPATH} ${GO_LINKMODE} ${GO_EXTRA_LDFLAGS} -extldflags '${GO_EXTLDFLAGS}'"' export GOBUILDFLAGS ?= "-v ${GO_LDFLAGS} -trimpath" export GOPATH_OMIT_IN_ACTIONID ?= "1" export GOPTESTBUILDFLAGS ?= "${GOBUILDFLAGS} -c"