[clang] [clang-tools-extra] [flang] [lldb] [llvm] [clang] Move options from clangDriver into new clangOptions library (NFC) (PR #163659)

Naveen Seth Hanig via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 31 05:18:58 PDT 2025


================
@@ -3,7 +3,7 @@ add_subdirectory(Basic)
 if(CLANG_ENABLE_CIR)
   add_subdirectory(CIR)
 endif()
-add_subdirectory(Driver)
----------------
naveen-seth wrote:

This is intentional. In `clang/include/clang/`, `CMakeLists.txt` files are only used for TableGen targets. `clang/include/clang/Driver` had a single TableGen target, and this patch moves that input and its `CMakeLists.txt` to `clang/include/clang/Options`, so we switch to `add_subdirectory(Options)`.

https://github.com/llvm/llvm-project/pull/163659


More information about the cfe-commits mailing list