[lld] [RFC][lld][SPIRV] Add support for SPIR-V LTO (PR #178749)
Joseph Huber via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 17 09:11:12 PST 2026
================
@@ -0,0 +1,23 @@
+//===- Config.h -------------------------------------------------*- C++ -*-===//
+//
+// 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 LLD_SPIRV_CONFIG_H
+#define LLD_SPIRV_CONFIG_H
+
+#include <string>
+
+namespace lld::spirv {
+
+struct Config {
+ std::string targetTriple = "spirv64";
----------------
jhuber6 wrote:
Do we only expect spirv64 here?
https://github.com/llvm/llvm-project/pull/178749
More information about the llvm-commits
mailing list