1
0
Fork 0

feat: add assembler installer

This commit is contained in:
Kim, Jimin 2024-04-14 10:51:08 +09:00
parent cecd90d0de
commit 2029cbd408
Signed by: pomp
GPG key ID: 2B516173EDD492EB
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package installers
import "github.com/developomp/pompup/internal/wrapper"
func init() {
register(&Installer{
Name: "Assembler",
Desc: "Assembler",
Setup: func() {
wrapper.ParuOnce("yasm") // for x86_64, rewrite of nasm
},
})
}