ollydbg
ollydbg
OK, indeed, I have update the submodule too much(I mean I used the submodule's master head) Now, the header issue is gone, but here comes another issue: ~~~~ D:\code\temp\pe-util\build>cmake -G...
I'm using the latest msys2 and its 64bit gcc 11 mingw compiler, not sure why it does not have C++17 I enable the `-d` option of mingw32-make.exe, and here is...
> This is a [known issue](https://stackoverflow.com/a/56493176) with mingw. Use experimental filesystem instead. Oh, I see that you have explicitly enabled C++11? Here is what I see in CMakefiles ~~~~ set_target_properties(peldd...
> > This is a [known issue](https://stackoverflow.com/a/56493176) with mingw. Use experimental filesystem instead. > > On, I see that you have expcitily enabled C++11? Here is what I see in...
Here is the test result of the new built `peldd.exe` ~~~~ F:\code\cb-64bit>peldd codeblocks.exe SHFOLDER.dll codeblocks.dll exchndl.dll libgcc_s_seh-1.dll libstdc++-6.dll wxmsw315u_gcc_cb.dll F:\code\cb-64bit>peldd codeblocks.exe --all Error: Could not resolve: SHFOLDER.dll F:\code\cb-64bit>peldd codeblocks.dll libgcc_s_seh-1.dll...
> You need to provide the correct search paths using the options `-p`, `--search-env` or `--search-cwd`. OK, let me check it. BTW: I used another good tool to find the...
I just tried, but still no luck: ~~~~ F:\code\cb-64bit>peldd codeblocks.exe --search-env --all Error: Could not resolve: wxmsw315u_gcc_cb.dll ~~~~ In-fact, I can start the `codeblocks.exe` from the command line, and the...
> You probably need `--search-cwd` as well. Oh, this works, see the log below, thanks!! ~~~~ F:\code\cb-64bit>peldd codeblocks.exe --search-env --all --search-cwd C:\Windows\System32\KernelBase.dll C:\Windows\System32\ntdll.dll C:\Windows\System32\rpcrt4.dll C:\Windows\System32\shfolder.dll C:\Windows\System32\wsock32.dll F:\code\cb-64bit\codeblocks.dll F:\code\cb-64bit\exchndl.dll F:\code\cb-64bit\mgwhelp.dll F:\code\cb-64bit\wxmsw315u_gcc_cb.dll...
It looks like the search path parameter order matters, see this log: ~~~~ F:\code\cb-64bit>peldd codeblocks.exe --search-cwd --all --search-env C:\Windows\System32\KernelBase.dll C:\Windows\System32\ntdll.dll C:\Windows\System32\rpcrt4.dll C:\Windows\System32\shfolder.dll C:\Windows\System32\wsock32.dll F:\code\cb-64bit\codeblocks.dll F:\code\cb-64bit\exchndl.dll F:\code\cb-64bit\libgcc_s_seh-1.dll F:\code\cb-64bit\libstdc++-6.dll F:\code\cb-64bit\libwinpthread-1.dll F:\code\cb-64bit\mgwhelp.dll F:\code\cb-64bit\wxmsw315u_gcc_cb.dll...
> Thanks for posting your experience with this! I have two questions with it, which I haven't looked into the detail. IIRC, generating .def files for the executable is brittle...