diff options
author | Brent Cook <busterb@gmail.com> | 2023-07-07 15:25:50 +0300 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-07-07 15:25:50 +0300 |
commit | 8de5d47868d040f070c0b187ea7130ccb7b043c5 (patch) | |
tree | 0c6bf956852eb17aace7206a5fd7f7f2365ffcb2 | |
parent | 081cee6207dc01747dd968b06637ab9ee2cdc496 (diff) | |
download | portable-8de5d47868d040f070c0b187ea7130ccb7b043c5.tar.gz portable-8de5d47868d040f070c0b187ea7130ccb7b043c5.tar.bz2 portable-8de5d47868d040f070c0b187ea7130ccb7b043c5.zip |
tweak Windows README
-rw-r--r-- | README.windows | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/README.windows b/README.windows index 1a9b7b5..4d74a2e 100644 --- a/README.windows +++ b/README.windows | |||
@@ -55,11 +55,11 @@ cv2pdb to generate Visual Studio and windbg compatible debug files. cv2pdb is a | |||
55 | tool developed for the D language and can be found here: | 55 | tool developed for the D language and can be found here: |
56 | https://github.com/rainers/cv2pdb | 56 | https://github.com/rainers/cv2pdb |
57 | 57 | ||
58 | Pre-built Windows binaries are available with LibreSSL releases if you do not | 58 | The mingw-w64 code is largely, but not 100%, compatible with code built from |
59 | have a mingw-w64 build environment. Mingw-w64 code is largely, but not 100%, | 59 | Visual Studio. Notably, FILE * pointers cannot be shared between code built for |
60 | compatible with code built from Visual Studio. Notably, FILE * pointers cannot | 60 | Mingw-w64 and Visual Studio. |
61 | be shared between code built for Mingw-w64 and Visual Studio. | ||
62 | 61 | ||
63 | As of LibreSSL 2.2.2, Visual Studio Native builds can be produced using CMake. | 62 | As of LibreSSL 2.2.2, Visual Studio Native builds can also be produced using |
64 | This produces ABI-compatible libraries for linking with native code generated | 63 | CMake. This produces ABI-compatible libraries for linking with native code |
65 | by Visual Studio. | 64 | generated by Visual Studio. Currently tested versions are VS 2019 and 2022, |
65 | though earlier versions may work as well. | ||