1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
//! Pure FFI to [Jon Blow's VS discovery script](https://pastebin.com/3YvWQa5c).
//!
//! The rest of this crate's documentation is copied borderline verbatim
//! from the original C++ source code.
//!
//! HOW TO USE THIS CODE
//!
//! The purpose of this file is to find the folders that contain libraries
//! you may need to link against, on Windows, if you are linking with any
//! compiled C or C++ code. This will be necessary for many non-C++ programming
//! language environments that want to provide compatibility.
//!
//! We find the place where the Visual Studio libraries live (for example,
//! libvcruntime.lib), where the linker and compiler executables live
//! (for example, link.exe), and where the Windows SDK libraries reside
//! (kernel32.lib, libucrt.lib).
//!
//! We all wish you didn't have to worry about so many weird dependencies,
//! but we don't really have a choice about this, sadly.
//!
//! I don't claim that this is the absolute best way to solve this problem,
//! and so far we punt on things (if you have multiple versions of Visual Studio
//! installed, we return the first one, rather than the newest). But it
//! will solve the basic problem for you as simply as I know how to do it,
//! and because there isn't too much code here, it's easy to modify and expand.
//!
//!
//! Here is the API you need to know about:
//!
//! Call `vswhom_find_visual_studio_and_windows_sdk()`, look at the resulting
//! paths, then call `vswhom_free_resources()` on the result.
//!
//!
//! This file was about 400 lines before we started adding these comments.
//! You might think that's way too much code to do something as simple
//! as finding a few library and executable paths. I agree. However,
//! Microsoft's own solution to this problem, called "vswhere", is a
//! mere EIGHT THOUSAND LINE PROGRAM, spread across 70 files,
//! that they posted to github *unironically*.
//!
//! I am not making this up: https://github.com/Microsoft/vswhere
//!
//! Several people have therefore found the need to solve this problem
//! themselves. We referred to some of these other solutions when
//! figuring out what to do, most prominently ziglang's version,
//! by Ryan Saunderson.
//!
//! I hate this kind of code. The fact that we have to do this at all
//! is stupid, and the actual maneuvers we need to go through
//! are just painful. If programming were like this all the time,
//! I would quit.
//!
//! One other shortcut I took is that this is hardcoded to return the
//! folders for x64 libraries. If you want x86 or arm, you can make
//! slight edits to the code below, or, if enough people want this,
//! I can work it in here.
extern crate libc;
use libc::{wchar_t, c_int};
#[repr(C)]
pub struct Find_Result {
/// Zero if no Windows SDK found.
pub windows_sdk_version: c_int,
pub windows_sdk_root: *mut wchar_t,
pub windows_sdk_um_library_path: *mut wchar_t,
pub windows_sdk_ucrt_library_path: *mut wchar_t,
pub vs_exe_path: *mut wchar_t,
pub vs_library_path: *mut wchar_t,
}
extern "C" {
pub fn vswhom_find_visual_studio_and_windows_sdk() -> Find_Result;
pub fn vswhom_free_resources(result: *mut Find_Result);
}