📄 my_build_sys.bat
字号:
@echo off
rem Set the build environment
call ..\..\Common\bin\setup_env_common
call ..\..\Common\bin\setup_env_driver
rem Move into the correct src directory...
%PROJECT_DRIVE%
cd %PROJECT_DIR%\HASH_DRIVERS\HASH_WHIRLPOOL\src
rem The build utility can't handle source files not being in the same dir
copy ..\..\..\..\..\Common\Common\src\* .
copy ..\..\..\Common\src\* .
copy ..\..\Common\src\* .
rem Implementation...
copy ..\..\..\..\..\Common\HASH_DRIVERS\HASH_WHIRLPOOL\* .
rem libtomcrypt library...
copy ..\..\..\..\..\3rd_party\libtomcrypt\crypt-0.94\whirl.c .
rem whirlpool requires "zeromem" function
copy ..\..\..\..\..\3rd_party\libtomcrypt\crypt-0.94\mem.c .
echo Building SYS...
build -cgZ
rem Copying the binary over...
copy %FREEOTFE_OUTPUT_DIR%\FreeOTFEHashWhirlpool.sys %BIN_OUTPUT_DIR%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -