http://llvm.org/bugs/show_bug.cgi?id=17583
Bug ID: 17583
Summary: Reference to non-existing function in
llvm/tools/clang/lib/AST/InheritViz.cpp
Product: clang
Version: unspecified
Hardware: Macintosh
OS: MacOS X
Status: NEW
Severity: release blocker
Priority: P
Component: C++
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Classification: Unclassified
LLVM compilation fails with this message:
llvm[4]: Compiling InheritViz.cpp for Debug+Asserts build
/Users/danielux/Builds/llvm/tools/clang/lib/AST/InheritViz.cpp:141:29: error:
incomplete type 'llvm::sys::Path' named in nested name specifier
sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
~~~~~^~~~~~
/Users/danielux/Builds/llvm/tools/clang/lib/AST/../../include/clang/Basic/FileManager.h:38:23:
note: forward declaration of 'llvm::sys::Path'
namespace sys { class Path; }
^
/Users/danielux/Builds/llvm/tools/clang/lib/AST/InheritViz.cpp:141:13: error:
variable has incomplete type 'sys::Path'
sys::Path Filename = sys::Path::GetTemporaryDirectory(&ErrMsg);
^
/Users/danielux/Builds/llvm/tools/clang/lib/AST/../../include/clang/Basic/FileManager.h:38:23:
note: forward declaration of 'llvm::sys::Path'
namespace sys { class Path; }
^
2 errors generated.
After looking in the source code, it seems GetTemporaryDirectory doesn't exist
but it was part of a former release.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs