--
You received this message because you are subscribed to a topic in the Google Groups "DynamoRIO Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dynamorio-users/VbZ8CMV-e7M/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dynamorio-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dynamorio-users/88c29278-1477-4bd0-8ed9-f39b11516cb1n%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "DynamoRIO Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dynamorio-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dynamorio-users/CAF6hzxy%3DodO4wzmrDekUYBSy484VjHe4zjzBxtH1MJfT2TYzAw%40mail.gmail.com.
************************************************************************ Visual Studio 2019 Developer Command Prompt v16.11.7** Copyright (c) 2021 Microsoft Corporation**********************************************************************[vcvarsall.bat] Environment initialized for: 'x64'
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>
>cmake -G"Visual Studio 16 Win64" ..\dynamorioCMake Error: Could not create named generator Visual Studio 16 Win64
I had to do a 64 bit build because cmake could not find the assembler with the 32-bit build (I guess the masm was missing for some reason). Is 32-bit the recommended build (the wording on https://dynamorio.org/page_building.html#autotoc_md75 suggests this)?cmake -G"Visual Studio 16" -A x64 ..\dynamorio
Have you guys considered adding the instruction opcode bytes to the trace itself - perhaps add a record next to the PC memref(maybe during raw2trace)?. Then the trace would be self-contained.
By the way, the cmd listed in the documentation did not work for me.************************************************************************ Visual Studio 2019 Developer Command Prompt v16.11.7** Copyright (c) 2021 Microsoft Corporation**********************************************************************[vcvarsall.bat] Environment initialized for: 'x64'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>>cmake -G"Visual Studio 16 Win64" ..\dynamorioCMake Error: Could not create named generator Visual Studio 16 Win64Instead the following cmd did work:cmake -G"Visual Studio 16" -A x64 ..\dynamorio
I had to do a 64 bit build because cmake could not find the assembler with the 32-bit build (I guess the masm was missing for some reason). Is 32-bit the recommended build (the wording on https://dynamorio.org/page_building.html#autotoc_md75 suggests this)?