Blame SOURCES/add-gobuild-and-gotest.patch

6e9160
From 1001f5a99439556c5ad3efe6045923e985a52f82 Mon Sep 17 00:00:00 2001
6e9160
From: =?UTF-8?q?Alejandro=20S=C3=A1ez?= <asm@redhat.com>
6e9160
Date: Wed, 23 Nov 2022 13:43:23 +0100
6e9160
Subject: [PATCH] Add %gobuild and %gotest
6e9160
6e9160
Both macros are define in rpm/macros.d/macros.go-compilers-gcc.
6e9160
CentOS Stream 9 go-srpm-macros discards that file and only installs rpm/macros.d/macros.go-srpm.
6e9160
6e9160
This commit adds %gobuild and %gotest to rpm/macros.d/macros.go-srpm with the same options that RHEL 8 uses.
6e9160
---
6e9160
 rpm/macros.d/macros.go-srpm | 8 ++++++++
6e9160
 1 file changed, 8 insertions(+)
6e9160
6e9160
diff --git a/rpm/macros.d/macros.go-srpm b/rpm/macros.d/macros.go-srpm
6e9160
index a46f81f..05cd6c9 100644
6e9160
--- a/rpm/macros.d/macros.go-srpm
6e9160
+++ b/rpm/macros.d/macros.go-srpm
6e9160
@@ -202,3 +202,11 @@ local processall = (rpm.expand("%{-a}") ~= "") and (rpm.expand("%{-z}") == "")
6e9160
 local    verbose = (rpm.expand("%{-v}") ~= "")
6e9160
 go.files("alt", suffix, processall, verbose)
6e9160
 }
6e9160
+
6e9160
+# Define commands for building
6e9160
+# BUILD_ID can be generated for golang build no matter of debuginfo
6e9160
+%gobuild(o:) \
6e9160
+CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all" go build -compiler gc -buildmode pie '-tags=rpm_crashtraceback libtrust_openssl ' -ldflags "-linkmode=external -compressdwarf=false ${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};\
6e9160
+
6e9160
+# Define commands for testing
6e9160
+%gotest() go test -compiler gc -ldflags "${LDFLAGS:-}" %{?**};
6e9160
-- 
6e9160
2.38.1
6e9160