Set $asm_cmd for macOS in build.ps1

This commit is contained in:
Patrick Stankard 2020-03-23 17:33:41 -04:00
parent 84ff49ca8e
commit 277606213a
1 changed files with 1 additions and 4 deletions

View File

@ -35,10 +35,7 @@ $undefine_obj_file = "src/c/ext.o"
If ($IsWindows) { $asm_cmd = "bin/armips.exe" }
ElseIf ($IsLinux) { $asm_cmd = "bin/armips" }
Else {
Write-Host "TODO: what's the Mac version of armips?"
Exit -1
}
ElseIf ($IsMacOS) { $asm_cmd = "bin/armips" }
$includes_sym_file = [IO.Path]::ChangeExtension($includes_asm_file, "sym")
$output_rom_sym_file = [IO.Path]::ChangeExtension($output_rom_file, "sym")