Actually check if lseek works instead of using a filename based heuristic.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 10 Apr 2015 18:16:30 +0000 (18:16 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 10 Apr 2015 18:16:30 +0000 (18:16 +0000)
llvm-svn: 234620

clang/lib/Frontend/FrontendActions.cpp

index 622ca82..082bf92 100644 (file)
@@ -600,15 +600,15 @@ void DumpTokensAction::ExecuteAction() {
 
 void GeneratePTHAction::ExecuteAction() {
   CompilerInstance &CI = getCompilerInstance();
-  if (CI.getFrontendOpts().OutputFile.empty() ||
-      CI.getFrontendOpts().OutputFile == "-") {
+  llvm::raw_fd_ostream *OS =
+    CI.createDefaultOutputFile(true, getCurrentFile());
+  if (!OS)
+    return;
+
+  if (!OS->supportsSeeking()) {
     // FIXME: Don't fail this way.
-    // FIXME: Verify that we can actually seek in the given file.
     llvm::report_fatal_error("PTH requires a seekable file for output!");
   }
-  llvm::raw_fd_ostream *OS =
-    CI.createDefaultOutputFile(true, getCurrentFile());
-  if (!OS) return;
 
   CacheTokens(CI.getPreprocessor(), OS);
 }