Skip to content

Commit

Permalink
Framework: partially sync with upstream
Browse files Browse the repository at this point in the history
Taken from: HardenedBSD
  • Loading branch information
fichtner committed Dec 4, 2019
1 parent 72dfd25 commit 69a18cb
Showing 1 changed file with 14 additions and 24 deletions.
38 changes: 14 additions & 24 deletions Mk/Uses/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@
# in modules-aware mode.
# no_targets Indicates that Go is needed at build time as a part of
# make/CMake build. This will setup build environment like
# GO_ENV, GO_BUILDFLAGS but will not create post-extract and
# do-{build,install,test} targets.
# GO_ENV, GO_BUILDFLAGS but will not create post-extract, do-build
# and do-install targets.
# run Indicates that Go is needed at run time and adds it to
# RUN_DEPENDS.
#
# You can set the following variables to control the process.
#
# GO_PKGNAME
# The name of the package when building in GOPATH mode. This
# is the directory that will be created in ${GOPATH}/src. If not set
# explicitly and GH_SUBDIR or GL_SUBDIR is present, GO_PKGNAME will
# be inferred from it.
# is the directory that will be created in GOPATH/src and seen
# by the `go` command. If not set explicitly and GH_SUBDIR or
# GL_SUBDIR is present, GO_PKGNAME will be inferred from it.
# It is not needed when building in modules-aware mode.
#
# GO_TARGET
# The packages to build. The default value is ${GO_PKGNAME}.
# GO_TARGET can also be a tuple in the form package:path where path can be
# either a simple filename or a full path starting with ${PREFIX}.
#
# GO_TEST_TARGET
# The packages to test. The default value is `./...` (the current package
# and all subpackages).
# The packages to build. If not set explicitly, defaults to
# GO_PKGNAME. GO_TARGET can also be a tuple in the form
# package:path where path can be either a simple filename or a
# full path starting with ${PREFIX}. Specifying a full path
# like ${PREFIX}/sbin/binary will install the resulting binary
# as ${PREFIX}/sbin/binary. Using just simple filename is a
# shortcut to installing it as ${PREFIX}/bin/filename.
#
# CGO_CFLAGS
# Additional CFLAGS variables to be passed to the C compiler by the `go`
Expand Down Expand Up @@ -72,9 +72,7 @@ GO_PKGNAME= ${GL_SUBDIR:S|^src/||}
GO_PKGNAME= ${PORTNAME}
. endif
.endif

GO_TARGET?= ${GO_PKGNAME}
GO_TEST_TARGET?= ./...

GO_BUILDFLAGS+= -v -buildmode=exe
.if !defined(WITH_DEBUG) && empty(GO_BUILDFLAGS:M-ldflags*)
Expand Down Expand Up @@ -104,7 +102,8 @@ GO_WRKSRC= ${WRKSRC}
GO_ENV+= GOPATH="" \
GOBIN="${GO_WRKDIR_BIN}"
.else
GO_WRKSRC= ${WRKDIR}/src/${GO_PKGNAME}
GO_WRKDIR_SRC= ${WRKDIR}/src
GO_WRKSRC= ${GO_WRKDIR_SRC}/${GO_PKGNAME}
GO_ENV+= GOPATH="${WRKDIR}" \
GOBIN=""
.endif
Expand Down Expand Up @@ -161,15 +160,6 @@ do-install:
done
.endif

.if !target(do-test) && empty(go_ARGS:Mno_targets)
do-test:
(cd ${GO_WRKSRC}; \
for t in ${GO_TEST_TARGET}; do \
${ECHO_MSG} "===> Testing $${t}"; \
${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} test ${GO_BUILDFLAGS} $${t}; \
done)
.endif

# Helper targets for port maintainers

.if ${go_ARGS:Mmodules}
Expand Down

0 comments on commit 69a18cb

Please sign in to comment.