[clang] [clang][MBD] set up module build daemon infrastructure (PR #67562)

via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 30 08:09:43 PDT 2023


================
@@ -0,0 +1,135 @@
+//===------------------------- SocketMsgSupport.h -------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_CLANG_TOOLING_MODULEBUILDDAEMON_SOCKETMSGSUPPORT_H
+#define LLVM_CLANG_TOOLING_MODULEBUILDDAEMON_SOCKETMSGSUPPORT_H
+
+#include "clang/Tooling/ModuleBuildDaemon/Client.h"
+#include "clang/Tooling/ModuleBuildDaemon/SocketSupport.h"
+
+using namespace clang;
+using namespace llvm;
+
+namespace cc1modbuildd {
----------------
tschuett wrote:

I believe that you still have to wrap everything into:
```
clang::tooling::
```

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


More information about the cfe-commits mailing list