adding several tool chain dependencies

This commit is contained in:
David Sparer
2018-02-09 13:09:58 -06:00
parent 2c1734aea6
commit 3d9d57b7fa
5 changed files with 2 additions and 2 deletions

Binary file not shown.

BIN
Tools/exes/link.exe Normal file

Binary file not shown.

BIN
Tools/exes/mspdbcore.dll Normal file

Binary file not shown.

View File

@@ -17,6 +17,6 @@ $path_outputExe = Join-Path -Path $TargetDir -ChildPath $TargetFileName
# Set LargeAddressAware
Write-Output "Setting LargeAddressAware on binary file:`n`"$path_outputExe`" `nwith:`n`"$path_editBin`""
& $path_editBin "/largeaddressaware" "$path_outputExe"
& "$path_editBin" /largeaddressaware "$path_outputExe"
Write-Output ""

View File

@@ -16,7 +16,7 @@ $path_dumpBin = Join-Path -Path $PSScriptRoot -ChildPath "exes\dumpbin.exe"
$path_outputExe = Join-Path -Path $TargetDir -ChildPath $TargetFileName
# Dump exe header
$output = & "$path_dumpBin" /NOLOGO /HEADERS $path_outputExe | Select-String large
$output = & "$path_dumpBin" /NOLOGO /HEADERS "$path_outputExe" | Select-String large
if ($output -eq $null)
{