[PATCH] D52066: [Driver] Fix missing MultiArch include dir on powerpcspe
    Kristina Brooks via Phabricator via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Fri Sep 14 05:43:41 PDT 2018
    
    
  
This revision was automatically updated to reflect the committed changes.
Closed by commit rC342231: [Driver] Fix missing MultiArch include dir on powerpcspe (authored by kristina, committed by ).
Repository:
  rL LLVM
https://reviews.llvm.org/D52066
Files:
  lib/Driver/ToolChains/Linux.cpp
Index: lib/Driver/ToolChains/Linux.cpp
===================================================================
--- lib/Driver/ToolChains/Linux.cpp
+++ lib/Driver/ToolChains/Linux.cpp
@@ -699,7 +699,8 @@
       "/usr/include/mips64el-linux-gnu",
       "/usr/include/mips64el-linux-gnuabi64"};
   const StringRef PPCMultiarchIncludeDirs[] = {
-      "/usr/include/powerpc-linux-gnu"};
+      "/usr/include/powerpc-linux-gnu",
+      "/usr/include/powerpc-linux-gnuspe"};
   const StringRef PPC64MultiarchIncludeDirs[] = {
       "/usr/include/powerpc64-linux-gnu"};
   const StringRef PPC64LEMultiarchIncludeDirs[] = {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52066.165476.patch
Type: text/x-patch
Size: 614 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180914/830cc4f9/attachment.bin>
    
    
More information about the cfe-commits
mailing list