Advertisement
Guest User

DLL dependencies

a guest
Sep 13th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. == Original MinGW binary
  2.  
  3. NoTengoBattery@DESKTOP-M0E0M8K MINGW64 ~
  4. $ objdump -x /mingw64/bin/llvm-tblgen.exe | grep "DLL Name"
  5. DLL Name: ADVAPI32.dll
  6. DLL Name: KERNEL32.dll
  7. DLL Name: msvcrt.dll
  8. DLL Name: ole32.dll
  9. DLL Name: libwinpthread-1.dll
  10. DLL Name: SHELL32.dll
  11. DLL Name: libgcc_s_seh-1.dll
  12. DLL Name: libstdc++-6.dll
  13.  
  14. == Stage 1 binary
  15.  
  16. NoTengoBattery@DESKTOP-M0E0M8K MINGW64 ~
  17. $ objdump -x ~/llbld/build/bin/llvm-tblgen.exe | grep "DLL Name"
  18. DLL Name: libgcc_s_seh-1.dll
  19. DLL Name: libstdc++-6.dll
  20. DLL Name: ADVAPI32.dll
  21. DLL Name: KERNEL32.dll
  22. DLL Name: msvcrt.dll
  23. DLL Name: ole32.dll
  24. DLL Name: libwinpthread-1.dll
  25. DLL Name: SHELL32.dll
  26.  
  27. == Stage 2 binary
  28.  
  29. NoTengoBattery@DESKTOP-M0E0M8K MINGW64 ~
  30. $ objdump -x ~/llbld/build/tools/clang/stage2-bins/bin/llvm-tblgen.exe | grep "DLL Name"
  31. DLL Name: libc++.dll
  32. DLL Name: libc++abi.dll
  33. DLL Name: libunwind.dll
  34. DLL Name: ADVAPI32.dll
  35. DLL Name: KERNEL32.dll
  36. DLL Name: msvcrt.dll
  37. DLL Name: ole32.dll
  38. DLL Name: SHELL32.dll
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement