Add option to build rosettax87 locally (#9)

Reviewed-on: #9
This commit is contained in:
2025-07-25 22:00:00 +00:00
parent d03c5ee7cc
commit 14db7719a3
10 changed files with 286 additions and 87 deletions

View File

@@ -0,0 +1,15 @@
package patching
import (
"fmt"
"testing"
)
func TestBuildRosetta(t *testing.T) {
rp, lp, err := BuildRosetta()
if err != nil {
t.Error(err)
}
fmt.Println("exe path:", rp)
fmt.Println("lib path:", lp)
}