Package Details: ryzen-stabilizator-git r19.90a2f7a-2

Git Clone URL: https://aur.archlinux.org/ryzen-stabilizator-git.git (read-only, click to copy)
Package Base: ryzen-stabilizator-git
Description: Simple Go program to enable/disable C6 C-state, processor boosting, address space layout randomization (ASLR) and the Power Supply Idle Control workaround on an AMD Ryzen processor, in order to help with the infamous 'MCE-random-reboots-while-idle' issue.
Upstream URL: https://github.com/qrwteyrutiyoup/ryzen-stabilizator
Licenses: Apache
Submitter: qrwteyrutiyoup
Maintainer: qrwteyrutiyoup
Last Packager: qrwteyrutiyoup
Votes: 9
Popularity: 0.000000
First Submitted: 2018-01-13 03:56 (UTC)
Last Updated: 2022-01-10 21:09 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Latest Comments

spyx33 commented on 2021-08-18 09:54 (UTC)

I don't know if something changed in go but, for me to build a package I had to make changes in PKGBUILD file in build() section:

build() {
  export GOPATH="${srcdir}/go"
  cd "${GOPATH}/src/${_pkgname}"
  go mod init
  go get
  go build -ldflags "-X main.version=${pkgver}-${pkgrel}"
}

I added line go mod init before go get and this was fix for me!