Commit 52296f41 authored by Robert Kimball's avatar Robert Kimball Committed by Avijit

use generated tmp file name for pch file (#258)

parent ee1f6929
......@@ -341,7 +341,7 @@ std::unique_ptr<llvm::Module> StaticCompiler::compile(const string& source)
void StaticCompiler::generate_pch(const string& source)
{
m_pch_path = file_util::path_join(file_util::get_temp_directory(), "ngraph.pch");
m_pch_path = file_util::tmp_filename();
m_compiler->getFrontendOpts().OutputFile = m_pch_path;
// Map code filename to a memoryBuffer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment