aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-30 09:52:48 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-06-02 10:50:59 +0000
commit0e956797b544645c00f7b7b3564b2ba0cb069079 (patch)
tree4b46e47c93528d91e951f94627d73f0ffe06c400 /README.md
parent805fabff309c9300b918b7f8e94da6a9d3e06abb (diff)
Update README.md
LLVM_INSTALL_DIR is now preferred. Also, adding it to the path is no longer required on Windows. Change-Id: Ibc1a12042845563a2e776dc5cc03525206189a58 Reviewed-by: Liang Qi <liang.qi@qt.io> Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index b7eacff50..cde05940d 100644
--- a/README.md
+++ b/README.md
@@ -27,18 +27,16 @@ PySide versions following 5.6 use a C++ parser based on
higher is required for building. Prebuilt versions of it can be downloaded from
[download.qt.io](http://download.qt.io/development_releases/prebuilt/libclang/).
-After unpacking the archive, set the environment variable *CLANG_INSTALL_DIR* to
+After unpacking the archive, set the environment variable *LLVM_INSTALL_DIR* to
point to the folder containing the *include* and *lib* directories of Clang:
7z x .../libclang-release_39-linux-Rhel7.2-gcc5.3-x86_64.7z
- export CLANG_INSTALL_DIR=$PWD/libclang
+ export LLVM_INSTALL_DIR=$PWD/libclang
-On Windows, the *PATH* variable must be set in addition for the shared library to be
-found:
+On Windows:
7z x .../libclang-release_39-windows-vs2015_64.7z
- SET CLANG_INSTALL_DIR=%CD%\libclang
- SET PATH=%CLANG_INSTALL_DIR%\bin;%PATH%
+ SET LLVM_INSTALL_DIR=%CD%\libclang
#### Build Instructions