summaryrefslogtreecommitdiffstats
path: root/meta/classes/go-mod.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/go-mod.bbclass')
-rw-r--r--meta/classes/go-mod.bbclass20
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/classes/go-mod.bbclass b/meta/classes/go-mod.bbclass
deleted file mode 100644
index cabb04d0ec..0000000000
--- a/meta/classes/go-mod.bbclass
+++ /dev/null
@@ -1,20 +0,0 @@
1# Handle Go Modules support
2#
3# When using Go Modules, the the current working directory MUST be at or below
4# the location of the 'go.mod' file when the go tool is used, and there is no
5# way to tell it to look elsewhere. It will automatically look upwards for the
6# file, but not downwards.
7#
8# To support this use case, we provide the `GO_WORKDIR` variable, which defaults
9# to `GO_IMPORT` but allows for easy override.
10#
11# Copyright 2020 (C) O.S. Systems Software LTDA.
12
13# The '-modcacherw' option ensures we have write access to the cached objects so
14# we avoid errors during clean task as well as when removing the TMPDIR.
15GOBUILDFLAGS_append = " -modcacherw"
16
17inherit go
18
19GO_WORKDIR ?= "${GO_IMPORT}"
20do_compile[dirs] += "${B}/src/${GO_WORKDIR}"