The binaries are now build by https://github.com/Vector35/debugger-test-binaries/actions.
The debugger test binaries are now built by CMake. If you wish to run the unit test, there is no need to build these binaries. One only needs to build it when there are changes to the binaries.
cd test
python3 debugger_test.py- arm64
cd test
cmake -DARCH=arm64 .
makeBuild results are in binaries/Darwin-arm64.
- x86_64
cd test
cmake -DARCH=x86_64 .
makeBuild results are in binaries/Darwin-x86_64.
- x86_64
cd test
cmake -DARCH=x86_64 .
makeBuild results are in binaries/Linux-x86_64.
- x86
cd test
cmake -DARCH=x86 .
makeBuild results are in binaries/Linux-x86.
- x86_64
Open x64 Visual Studio command prompt
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86_64 .
nmake- x86 Open x86 Visual Studio command prompt
cd test
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DARCH=x86 .
nmake