clone and build rosettax87

This commit is contained in:
2025-07-25 14:17:25 -07:00
parent d03c5ee7cc
commit 3d55a8da05
8 changed files with 272 additions and 81 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)
}