Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. # The directory that contains `stdlib.h`.
  2. # On POSIX-like systems, include directories be found with: `cc -E -Wp,-v -xc /dev/null`
  3. include_dir=C:\Program Files (x86)\Windows Kits\10\\Include\10.0.17134.0\ucrt
  4. # The system-specific include directory. May be the same as `include_dir`.
  5. # On Windows it's the directory that includes `vcruntime.h`.
  6. # On POSIX it's the directory that includes `sys/errno.h`.
  7. sys_include_dir=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.12.25827\lib\x64\\..\..\include
  8.  
  9. # The directory that contains `crt1.o` or `crt2.o`.
  10. # On POSIX, can be found with `cc -print-file-name=crt1.o`.
  11. # Not needed when targeting MacOS.
  12. crt_dir=C:\Program Files (x86)\Windows Kits\10\\Lib\10.0.17134.0\ucrt\x64\
  13.  
  14. # The directory that contains `crtbegin.o`.
  15. # On POSIX, can be found with `cc -print-file-name=crtbegin.o`.
  16. # Not needed when targeting MacOS.
  17. static_crt_dir=
  18.  
  19. # The directory that contains `vcruntime.lib`.
  20. # Only needed when targeting MSVC on Windows.
  21. msvc_lib_dir=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.12.25827\lib\x64\
  22.  
  23. # The directory that contains `kernel32.lib`.
  24. # Only needed when targeting MSVC on Windows.
  25. kernel32_lib_dir=C:\Program Files (x86)\Windows Kits\10\\Lib\10.0.17134.0\um\x64\
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement