[clang] [llvm] [Driver][SYCL] Add initial SYCL offload compilation support (PR #117268)
Michael Toguchi via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 3 06:28:44 PST 2025
================
@@ -630,6 +630,11 @@ void toolchains::MinGW::AddHIPIncludeArgs(const ArgList &DriverArgs,
RocmInstallation->AddHIPIncludeArgs(DriverArgs, CC1Args);
}
+void toolchains::MinGW::addSYCLIncludeArgs(const ArgList &DriverArgs,
+ ArgStringList &CC1Args) const {
+ SYCLInstallation->addSYCLIncludeArgs(DriverArgs, CC1Args);
----------------
mdtoguchi wrote:
Initial testing found the need for this due to the general check for the updated header search locations. As reviews progressed with @tahonermann, it was suggested to not add the explicit header search locations as it was not determined yet (SYCL specific headers and libraries not yet part of the build) so now there is nothing being tested here for this target. This can be cleaned up and added again later when the headers are actually searched.
https://github.com/llvm/llvm-project/pull/117268
More information about the llvm-commits
mailing list