mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 18:30:34 +08:00
7 lines
251 B
Batchfile
7 lines
251 B
Batchfile
set CURRENT_PATH=%~dp0%
|
|
cd %~dp0\..\python37\libs\
|
|
echo EXPORTS > python37.def
|
|
nm python37.lib | grep " T _" | sed "s/.* T _//" >> python37.def
|
|
dlltool --input-def python37.def --dllname python37 --output-lib libpython37_mingw.a
|
|
cd %CURRENT_PATH%\..\
|