惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

博客园 - xiaobin80

Development Environment Preparation Visual Studio 2017 and Fx EOL 跟我学python(5)- 匹配数字 跟我学python(4)- 正则 跟我学python(3)--- 带shell功能的hello world 跟我学python(2)- 第一个程序 跟我学python --- 搭建开发平台 Debian server 安装 debian 与 ubuntu 之 - sudo Try Value 计算文件CRC32数值 docker ce on Debian 使用hugo在gitee上写blog spring cloud gateway - RequestRateLimiter postman使用 改进的冒泡算法 Create User - mysql COM调用 – VB、PB J-Link clone问题 修复山寨版的J-Link
Clang IDE的选择在Windows
xiaobin80 · 2026-04-03 · via 博客园 - xiaobin80
  • OS: Win10 21h2+

Clang

C:\msys64\clang64\bin

加到PATH

installation

open "MSYS2 CLANG64" from the Start menu.

  • clang
pacman -S mingw-w64-clang-x86_64-toolchain
  • cmake
pacman -S mingw-w64-x86_64-cmake
  • nija
pacman -S mingw-w64-x86_64-ninja

Clion

Clion bundles a version of the MinGW toolset for quick setup.
The exact version bundled is MinGW-w64 13.1
with posix threads, and seh exceptions.

Upgrade MingW bundled with Clion - option

把x86_64-15.2.0-release-posix-seh-ucrt-rt_v13-rev0.7z覆盖到

<CLion-HOME>\bin\mingw

Toolchain

Go to Settings | Build, Execution, Deployment | Toolchains and create a MinGW toolchain
Set the Toolset to C:\msys64\clang64. Set other paths manually in case they are not detected automatically.

  • Clion picture

toolchain

Visual Studio Code

path

把LLVM, CMAKE, ninja 加入到 Path中

MSVC

About: clang-cl is an alternative command-line interface to Clang,
designed for compatibility with the Visual C++ compiler, cl.exe.

Desktop development with C++

  • vs2019
    MSVC v142 - VS 2019 C++ x64/x86 build tools(Latest)
  • vs2022
    MSVC v143 - VS 2022 C++ x64/x86 build tools(Latest)
  • vs2026
    MSVC v145 - x64/x86 build tools(Latest)

Windows SDK

  • Windows 11 SDK (10.0.26100.7705)

cmake - visual studio