Reputation: 159
I am currently learning C, taking a CS50 online class via EDX/Harvard. They have us using Clang inside the CS50 IDE/Sandbox which is cloud-based. They haven't explained how to use Clang outside of that tho. Thus I am wondering; How do I setup clang in windows 10 ? as well as for use with VisualStudio Code?
Upvotes: 14
Views: 67942
Reputation: 3918
Install Clang using Visual Studio Installer.
(1) Open 'Visual Studio Installer'.
(2) Visual Studio Community 2022 -> click 'Modify'
(3) In the [Installation details] checkbox list, check 'C++ Clang tools for Windows'
(4) Install.
Add clang.exe
(created by the above procedure) to the Path
environment variable.
Now try clang --version
in the terminal.
Great, you're good to go :)
Edit: If you didn't change the default installation path, clang.exe
should likely be in C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\Llvm
such as (for x64) C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\Llvm\x64\bin
.
Upvotes: 8
Reputation: 96326
On Windows, Clang is not self-sufficient, and is supposed to be used in combination with an other compiler: either MinGW (GCC) or MSVC. Clang is going to use the standard library (and other libraries/headers) of that compiler, since it doesn't ship with ones of its own.
If you want to use it with MSVC and have it installed, running clang-cl
instead of cl
should just work.
But since you mentioned VSC, I assume you don't want MSVC. Then...
If you want to use it with MinGW and have it installed, use clang --target=x86_64-w64-windows-gnu
instead of gcc
, and it should also just work. (That's assuming your MinGW produces 64-bit apps. Replace x86_64
with i686
if it's 32-bit.)
If you don't have MinGW yet, you can get a fresh version from MSYS2. Then you have an option to install their unofficial build of Clang instead of the regular one, which has an advantage of using --target=x86_64-w64-windows-gnu
automatically (so you don't have to write it manually).
Upvotes: 18
Reputation: 5615
Expanding on HolyBlackCat's answer. The simplest way to get up and running using clang
is to download Visual Studio (not code) and choose the following toolsets during its installation-
Click install and clang
will be usable to you through the commandline, just like the CS50 terminal. You usually won't have to worry too much about playing with extra cmdline options other than the ones cs50 has taught you.
To create a C project in VS with clang-
Of course, this is not a silver bullet and will not guarantee an identical experience to development on linux. But if you're a beginner, you most likely will not notice any differences and this is a quick and easy way to get started with C dev on windows.
Also remember, once you have VS + Clang installed by following the above steps - you can also write code in VSCode (though it might need some configuration - specifically, you've to point it to the directory where the header files are) and use the terminal with clang
to compile.
Upvotes: 11