zlib: fix mapfile
[oi-userland.git] / components / developer / golang-122 / Makefile
blob59bd76fe763b902226355369c2ac84973e8e89c1
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
23 # Copyright 2023 Till Wegmueller
26 BUILD_STYLE= justmake
27 USE_COMMON_TEST_MASTER= no
28 CLONEY_ARGS= CLONEY_MODE="copy"
29 USE_PARALLEL_BUILD= yes
30 include ../../../make-rules/shared-macros.mk
32 COMPONENT_NAME= golang
33 COMPONENT_MAJOR_VERSION= 1.22
34 COMPONENT_VERSION= $(COMPONENT_MAJOR_VERSION).12
35 COMPONENT_SUMMARY= The Go Programming Language
36 COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
37 COMPONENT_PROJECT_URL= https://golang.org/
38 COMPONENT_ARCHIVE= go$(COMPONENT_VERSION).src.tar.gz
39 COMPONENT_ARCHIVE_URL= https://storage.googleapis.com/golang/$(COMPONENT_ARCHIVE)
40 COMPONENT_ARCHIVE_HASH= sha256:012a7e1f37f362c0918c1dfa3334458ac2da1628c4b9cf4d9ca02db986e17d71
41 COMPONENT_FMRI= developer/golang
42 COMPONENT_CLASSIFICATION= Development/Other Languages
43 COMPONENT_LICENSE= BSD-style, Patent Grant
44 COMPONENT_LICENSE_FILE= LICENSE
46 PATCH_EACH_ARCHIVE= 1
48 include $(WS_MAKE_RULES)/common.mk
50 # Note that bootstrapping can also happen with the direct predecessor
51 BOOTSTRAP_VERSION= 1.22
53 MEDIATEDUSRSHAREMAN1DIR= $(PROTO_DIR)/usr/share/golang/$(COMPONENT_MAJOR_VERSION)/man/man1
55 # Go has a number of supplementary tools and packages that are located in
56 # separate archives or source repositories. Because Go currently forces a
57 # recompile of all packages whenever the compiler changes, building and
58 # delivering them within the same build component build process is the best
59 # option for now.
61 # Bake in where Go package will be installed.
62 GOROOT_FINAL= /usr/lib/golang/$(COMPONENT_MAJOR_VERSION)
63 # Enable easier stack unwinding for debugging.
64 GOEXPERIMENT=
65 COMPONENT_BUILD_ENV += GOROOT_FINAL="$(GOROOT_FINAL)"
66 COMPONENT_BUILD_ENV += GOEXPERIMENT="$(GOEXPERIMENT)"
67 COMPONENT_BUILD_ENV += GOOS="illumos"
68 COMPONENT_BUILD_ENV += GOCACHE="$(SOURCE_DIR)/gocache"
69 COMPONENT_BUILD_ENV += GOPATH="$(SOURCE_DIR)/gopath"
70 COMPONENT_BUILD_ENV += GO_LDSO=/lib/64/ld.so.1
71 COMPONENT_BUILD_ENV += GOROOT_BOOTSTRAP=/usr/lib/golang/$(BOOTSTRAP_VERSION)
73 # For convenience during installation of supplementary packages.
74 COMPONENT_INSTALL_ENV += PATH="$(PROTO_DIR)$(GOROOT_FINAL)/bin:$(PATH)"
75 COMPONENT_INSTALL_ENV += GOROOT="$(PROTO_DIR)$(GOROOT_FINAL)"
76 COMPONENT_INSTALL_ENV += GOCACHE="$(SOURCE_DIR)/gocache"
77 COMPONENT_INSTALL_ENV += GOROOT_BOOTSTRAP=/usr/lib/golang/$(BOOTSTRAP_VERSION)
78 COMPONENT_INSTALL_ENV += GOPATH="$(SOURCE_DIR)/gopath"
80 # We have to fiddle with the package archives to get them into the same source
81 # directory so that we can use the standard build targets. We're effectively
82 # building multiple components using a single target.
83 COMPONENT_POST_UNPACK_ACTION= $(MV) go $(COMPONENT_SRC)
85 # Go doesn't have a standard Makefile-based build process, so override the
86 # default.
87 COMPONENT_BUILD_ACTION= \
88 cd $(@D)/src; $(ENV) $(COMPONENT_BUILD_ENV) ./make.bash
90 COMPONENT_TARGET_DIR= \
91 $(PROTOUSRLIBDIR)/$(COMPONENT_NAME)/$(COMPONENT_MAJOR_VERSION)
93 # We can't do any ASLR'ing as the Go 6l linker has no understanding of the
94 # -z aslr=... option. So just override where needed in the .p5m files.
95 ASLR_MODE = $(ASLR_DISABLE)
97 COMPONENT_TEST_ENV += PATH="$(@D)/bin:$(PATH)"
98 COMPONENT_TEST_ENV += GOROOT="$(@D)"
99 COMPONENT_TEST_ENV += GOCACHE="$(SOURCE_DIR)/gocache"
100 COMPONENT_TEST_ENV += TMPDIR="/var/tmp"
101 COMPONENT_TEST_DIR = $(@D)/src
102 COMPONENT_TEST_CMD = ./run.bash
103 COMPONENT_TEST_TARGETS =
104 # Remove measured times (eg. 11.106s, 0.312s or 1,16s):
105 COMPONENT_TEST_TRANSFORMS += '-e "s/[0-9][0-9].[0-9][0-9][0-9]s//" '
106 COMPONENT_TEST_TRANSFORMS += '-e "s/[0-9].[0-9][0-9][0-9]s//" '
107 COMPONENT_TEST_TRANSFORMS += '-e "s/[0-9].[0-9][0-9]s//" '
108 # Remove occurrences of "(cached)":
109 COMPONENT_TEST_TRANSFORMS += '-e "s/(cached)//" '
110 # Replace port numbers with nnnnn on localhost:
111 COMPONENT_TEST_TRANSFORMS += '-e "s/127.0.0.1\:[0-9]*/127.0.0.1\:nnnnn/" '
112 # Remove trailing random numbers on TestReadOnlyWriteFile:
113 COMPONENT_TEST_TRANSFORMS += '-e "s/TestReadOnlyWriteFile[0-9]*/TestReadOnlyWriteFile/" '
115 # Use this Command to copy the Go Source tree into the proto area. In order to deliver the Go SDK under GOROOT
116 # Additionally nuke all the funky binary files used for test suites. They keep bothering the packaging tools
117 define COMPONENT_INSTALL_ACTION=
118 ($(MKDIR) $(COMPONENT_TARGET_DIR)/src); \
119 (cd $(SOURCE_DIR) && \
120 /usr/gnu/bin/find . -maxdepth 1 -path "./$(COMPONENT_SRC_NAME)" \
121 -prune -o \( ! -iname ".*" \) -print \
122 -exec /usr/gnu/bin/cp -r \
123 --parents {} $(COMPONENT_TARGET_DIR) \;); \
124 (cd $(BUILD_DIR_64) && \
125 /usr/gnu/bin/find src -type f \
126 -exec /usr/gnu/bin/cp --parents {} $(COMPONENT_TARGET_DIR) \;); \
127 (cd $(BUILD_DIR_64) && $(CP) -r bin $(COMPONENT_TARGET_DIR)/); \
128 (cd $(BUILD_DIR_64) && $(CP) -r pkg $(COMPONENT_TARGET_DIR)/); \
129 (rm -r $(COMPONENT_TARGET_DIR)/pkg/obj); \
130 ($(MKDIR) -p $(MEDIATEDUSRSHAREMAN1DIR)); \
131 /usr/gnu/bin/find $(COMPONENT_TARGET_DIR)/src -type f \
132 | egrep -v '\.go|\.s|\.bash|\.txt|\.c|\.tmpl|\.h|\.pl|\.md|\.S|\.py|\.dist|\.rc|\.bat|README|Makefile|\.awk|\.rules|\.mod|\.json|LICENSE|PATENTS|\.bin'\
133 | xargs rm;
134 endef
136 # Manually added build dependencies
137 REQUIRED_PACKAGES += developer/golang-122
139 # Auto-generated dependencies
140 REQUIRED_PACKAGES += system/library