SVN commit 1304576 by lunakl: clang knows -frandom-seed, but ignores it M +2 -0 remote.cpp --- trunk/icecream/client/remote.cpp #1304575:1304576 @@ -584,8 +584,10 @@ // older compilers do not support the options we need to make it reproducable #if defined(__GNUC__) && ( ( (__GNUC__ == 3) && (__GNUC_MINOR__ >= 3) ) || (__GNUC__ >=4) ) + if (!compiler_is_clang(job.language())) { if ( rand() % 1000 < permill) torepeat = 3; + } #endif trace() << job.inputFile() << " compiled " << torepeat << " times on " << job.targetPlatform() << "\n";