📄 xmemtest.aspc.bat
字号:
REM batch file to prepare AspectC++ files
if exist *.ah del /Q *.ah
if exist *.cpp del /Q *.cpp
if exist *.h del /Q *.h
if exist *.i del /Q *.i
REM copy original files to working directory
copy /Y ..\..\xmemaspc2.ah .
copy /Y ..\..\xmemtest.c xmemtest.cpp
copy /Y ..\..\xmem.h .
REM preprocess code with MS C Compiler to insert XMEM macros
cl /P /DXMEM /DXMEM_ASPECTCPP xmemtest.cpp
REM copy preprocessed code
copy /Y xmemtest.i xmemtest.cpp
REM call AspectC++ compiler (path needs to be adapted if necessary)
D:\Programme\ac\ac++ --config D:\Programme\ac\pumavc8.cfg -c xmemtest.cpp -p . -d . -I . -v9
REM perform Unix to DOS file format conversion
..\utod *.ah
..\utod *.cpp
..\utod *.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -