mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 22:52:59 -04:00
I originally copied the compile command from the Makefile, and modified it according to the needs However, it originally was passing on the `-s` and `-w` flag to the go linker From https://pkg.go.dev/cmd/link ``` -s Omit the symbol table and debug information. Implies the -w flag, which can be negated with -w=0. -w Omit the DWARF symbol table. ``` So when the install phase happened, portage was complaining about pre stripped files This should be fixed now Thanks goes to ago for finding this bug! Closes: https://bugs.gentoo.org/977875 Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>