Skip to content

Commit

Permalink
Fix build arch path for darwin os. (#59)
Browse files Browse the repository at this point in the history
Signed-off-by: zhanluxianshen <[email protected]>
  • Loading branch information
zhanluxianshen authored Nov 22, 2024
1 parent ae31b33 commit 32614c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions builder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ func NewBuilder(outputDir string) *Builder {
}

func (p *Builder) GenAll() {
waRoot_darwin_amd64 := p.getWarootPath(darwin, arm64)
waRoot_darwin_arm64 := p.getWarootPath(darwin, amd64)
waRoot_darwin_amd64 := p.getWarootPath(darwin, amd64)
waRoot_darwin_arm64 := p.getWarootPath(darwin, arm64)
waRoot_linux_amd64 := p.getWarootPath(linux, amd64)
waRoot_windows_amd64 := p.getWarootPath(windows, amd64)
waRoot_wasip1_wasm := p.getWarootPath(wasip1, wasm)
Expand Down
1 change: 0 additions & 1 deletion waroot/src/src.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ func GetStackSize(backend, targetOS string) int {
}
}
panic("unreachable")
return 0
}

// 获取汇编基础代码
Expand Down

0 comments on commit 32614c6

Please sign in to comment.