summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2020-08-25 15:40:52 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2020-08-25 15:40:52 +0800
commitef428e88dc04bfedb40f0ccd61b01da7ca139aa2 (patch)
treed399a30fa65ef9bcb41eab52fd5b629e627d26f9
parentb0ffd96e08e2cf6ab81d878696d07746ff2834ef (diff)
downloadgobject-introspection-ef428e88dc04bfedb40f0ccd61b01da7ca139aa2.tar.gz
MSVC.README.rst: Mention about the clang-cl support
Let people know how building G-I and running g-ir-scanner with clang-cl and friends is being supported, as this support is now added.
-rw-r--r--MSVC.README.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/MSVC.README.rst b/MSVC.README.rst
index d8941de4..ec5ddb56 100644
--- a/MSVC.README.rst
+++ b/MSVC.README.rst
@@ -109,3 +109,12 @@ the following so that we ensure the manifests are embedded to the built DLLs and
for /r %f in (*.dll.manifest) do if exist $(PREFIX)\bin\%~nf mt /manifest %f /outputresource:$(PREFIX)\bin\%~nf;2
for /r %f in (*.exe.manifest) do if exist $(PREFIX)\bin\%~nf mt /manifest %f /outputresource:$(PREFIX)\bin\%~nf;1
+
+Additional notes on using clang-cl (LLVM/CLang's Visual Studio compiler emulation)
+----------------------------------------------------------------------------------
+Support has been added to build GObject-Introspection with clang-cl, specifically for
+running g-ir-scanner with clang-cl and lld-link as the compiler and linker. To enable
+such support, you need to set *both* the environment variables CC and CXX to clang-cl
+prior to building GObject-Introspection or running g-ir-scanner. This is in line with
+building with clang-cl in place of using the stock Visual Studio compiler to perform
+builds with the Meson build system.