├── LICENSE.MD └── README.MD /LICENSE.MD: -------------------------------------------------------------------------------- 1 | University of Illinois/NCSA Open Source License 2 | 3 | Copyright (c) 2017-2018 Arves100 and contributors. All rights reserved. 4 | 5 | Developed by: Arves100 and contributors 6 | 7 | Permission is hereby granted, free of charge, to any person 8 | obtaining a copy of this software and associated documentation files 9 | (the "Software"), to deal with the Software without restriction, 10 | including without limitation the rights to use, copy, modify, merge, 11 | publish, distribute, sublicense, and/or sell copies of the Software, 12 | and to permit persons to whom the Software is furnished to do so, 13 | subject to the following conditions: 14 | 15 | * Redistributions of source code must retain the above copyright notice, 16 | this list of conditions and the following disclaimers. 17 | 18 | * Redistributions in binary form must reproduce the above copyright 19 | notice, this list of conditions and the following disclaimers in the 20 | documentation and/or other materials provided with the distribution. 21 | 22 | * Neither the names of Arves100 nor the names of its 23 | contributors may be used to endorse or promote products derived from 24 | this Software without specific prior written permission. 25 | 26 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 27 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 28 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 29 | CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 30 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 31 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH 32 | THE SOFTWARE. 33 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | # LLVM Visual Studio 2017 Integration 2 | 3 | **NOTE:** This repository is no longer active as Microsoft even have an updated integration now for the current versions of Visual Studio. Please look at any of the forks around if you still wish to use this or be aware that there is no support under this code. 4 | 5 | This repository contains Visual Studio 2017 integration for various LLVM versions. 6 | 7 | Pull requests for new versions are welcome, just create a branch and adjust the configuration. 8 | 9 | ### How to use it? 10 | Simply fork the branch related to your version 11 | 12 | | LLVM Version | Branch | 13 | | ------------ | ------ | 14 | | 5.0.0 | v5.0 | 15 | | 6.0.0 | v6.0 | 16 | | 7.0.0 | v7.0 | 17 | | 8.0.0 | v8.0 | 18 | 19 | ### Automatic Installation 20 | 21 | Open a command prompt with Administrator rights (DO NOT OPEN AutoSetup.bat with admin rights it won't load the files) 22 | 23 | Go to the folder where AutoSetup.bat exists and type "AutoSetup" 24 | 25 | ### Manual Installation (If Automatic dosen't work) 26 | 27 | Go to "[Your Visual Studio Installation Directory]\Common7\IDE\VC\VCTargets\Platforms" 28 | 29 | ##### Performing x86 Toolset installation 30 | - Go to Win32\PlatformToolset 31 | - Create 2 folders called LLVM-vs2017 and LLVM-vs2017_xp 32 | - Go to LLVM-vs2017 33 | - Copy all files that starts with Toolset-llvm-vs2017-x86 34 | - Rename the name of all this files (not the extensions) into Toolset 35 | - Now go to LLVM-vs2017_xp 36 | - Copy all files that starts with Toolset-llvm-vs2017-xp-x86 37 | - Rename the name of all this files (not the extensions) into Toolset 38 | 39 | ##### Performing x64 Toolset installation 40 | - Go to x64\PlatformToolset 41 | - Create 2 folders called LLVM-vs2017 and LLVM-vs2017_xp 42 | - Go to LLVM-vs2017 43 | - Copy all files that starts with Toolset-llvm-vs2017-x64 44 | - Rename the name of all this files (not the extensions) into Toolset 45 | - Now go to LLVM-vs2017_xp 46 | - Copy all files that starts with Toolset-llvm-vs2017-xp-x64 47 | - Rename the name of all this files (not the extensions) into Toolset 48 | 49 | ### LICENSE 50 | 51 | Released under Uol-NCSA (Same license as LLVM) 52 | --------------------------------------------------------------------------------