Sfoglia il codice sorgente

SunCC fix from Jens Maurer

[SVN r19079]
Beman Dawes 23 anni fa
parent
commit
cf1ac1f3d5
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      tools/regression/compiler_status.cpp

+ 5 - 0
tools/regression/compiler_status.cpp

@@ -207,6 +207,11 @@ namespace
     {
       if ( fs::is_directory( *itr ) )
       {
+        // SunCC creates an internal subdirectory everywhere it writes
+        // object files.  This confuses the target_directory() algorithm.
+        // This patch ignores the SunCC internal directory. Jens Maurer
+        if ( (*itr).leaf() == "SunWS_cache" ) continue;
+
         if ( child.empty() ) child = *itr;
         else
         {

粤ICP备19079148号