@rem
设置python环境
@set
PYTHONHOME
=
D:\Python310_64
@set
PYTHONPATH
=
%
PYTHONHOME
%
\Lib\idlelib;
%
PYTHONHOME
%
\DLLs;
%
PYTHONHOME
%
\lib;
%
PYTHONHOME
%
;
%
PYTHONHOME
%
\lib\site
-
packages
@set
PATH
=
%
PYTHONHOME
%
;
%
PYTHONHOME
%
\Scripts;
%
PATH
%
@rem
设置git\nodejs\nasm\
7Z
路径
@set
PATH
=
C:\Program Files\Git\cmd;
%
PATH
%
@set
PATH
=
d:\nodejs;
%
PATH
%
@set
PATH
=
d:\nasm;
%
PATH
%
@set
PATH
=
d:\
7
-
Zip
;
%
PATH
%
@rem
vs2022 x64 cmd 环境初始化
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
@REM
取代码,漫长的下载,漫长的构建SDK工具链
git clone
-
-
recurse
-
submodules https:
/
/
github.com
/
frida
/
frida
cd frida
python releng\build
-
deps
-
windows.py
@rem
最终会生成 build\toolchain
-
windows
-
x86.exe 和build\sdk
-
windows
-
any
.exe 工具链及SDK自解压包
@rem
我们通过
7z
直接解压到当前目录,注意[
-
o.]紧跟当前目录点
@rem
这样我们就得到了四个版本需要的相关文件
cd build
7z
x sdk
-
windows
-
any
.exe
-
o.
7z
x toolchain
-
windows
-
x86.exe
-
o.
得到以下编译所需SDK和工具链目录,目录包含四个版本所需头文件和库等内容
build\sdk
-
windows
build\toolchain
-
windows
在打开vs2022前,我们先修正【frida\releng\frida.props】文件中的Python路径,如下
将
<PythonLocation Condition
=
"'$(PythonLocation)'=='' AND '$(Platform)'=='x64'"
>$(ProgramFiles)\Python310<
/
PythonLocation>
<PythonLocation Condition
=
"'$(PythonLocation)'=='' AND '$(Platform)'=='Win32'"
>$(MSBuildProgramFiles32)\Python310<
/
PythonLocation>
修改为自己Pyhont310的
32
和
64
位版本
<PythonLocation Condition
=
"'$(PythonLocation)'=='' AND '$(Platform)'=='x64'"
>D:\Python310_64<
/
PythonLocation>
<PythonLocation Condition
=
"'$(PythonLocation)'=='' AND '$(Platform)'=='Win32'"
>D:\Python310_32<
/
PythonLocation>
当然,到这里,在命令行输入快捷链接启动前,可以参考之前的文章修正vala相关文件的【“
%
s”】修改为【\
"%s\"
】,或等到编译出错再找相关c文件同名vala文件修改。
最后命令行通过快捷方式启动vs2022(为了继承上述配置的环境变量),打开frida.sln进行愉快的编译
"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2022.lnk"