mirror of
https://github.com/rizinorg/cutter.git
synced 2024-11-23 12:59:59 +00:00
f97ab44072
* Update rizin to latest dev * Use jsdec for rizin 0.7.0 --------- Co-authored-by: wargio <wargio@libero.it>
18 lines
657 B
PowerShell
18 lines
657 B
PowerShell
$dist = $args[0]
|
|
$python = Split-Path((Get-Command python.exe).Path)
|
|
|
|
if (-not (Test-Path -Path 'jsdec' -PathType Container)) {
|
|
git clone https://github.com/rizinorg/jsdec.git --depth 1 --branch "v0.7.0"
|
|
}
|
|
cd jsdec
|
|
& meson.exe --buildtype=release --prefix="$dist" build
|
|
ninja -C build install
|
|
$ErrorActionPreference = 'Stop'
|
|
$pathdll = "$dist\lib\rizin\plugins\core_pdd.dll"
|
|
if(![System.IO.File]::Exists($pathdll)) {
|
|
type build\meson-logs\meson-log.txt
|
|
ls "$dist\lib\rizin\plugins\"
|
|
throw (New-Object System.IO.FileNotFoundException("File not found: $pathdll", $pathdll))
|
|
}
|
|
Remove-Item -Recurse -Force "$dist\lib\rizin\plugins\core_pdd.lib"
|