[Libclc-dev] [PATCH] Fix build with LLVM 3.4
Aaron Watry
awatry at gmail.com
Thu Jul 18 11:17:15 PDT 2013
F_Binary and friends were moved to include/Support/FileSystem.h
v2: Maintain compatibility with LLVM 3.3
Signed-off-by: Aaron Watry <awatry at gmail.com>
---
utils/prepare-builtins.cpp | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/utils/prepare-builtins.cpp b/utils/prepare-builtins.cpp
index be1624b..4ad21e8 100644
--- a/utils/prepare-builtins.cpp
+++ b/utils/prepare-builtins.cpp
@@ -10,6 +10,7 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/system_error.h"
#include "llvm/Support/ToolOutputFile.h"
+#include "llvm/Config/config.h"
using namespace llvm;
@@ -66,7 +67,11 @@ int main(int argc, char **argv) {
std::string ErrorInfo;
OwningPtr<tool_output_file> Out
(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
+#if LLVM_VERSION_MAJOR > 3 || (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR > 3)
+ sys::fs::F_Binary));
+#else
raw_fd_ostream::F_Binary));
+#endif
if (!ErrorInfo.empty()) {
errs() << ErrorInfo << '\n';
exit(1);
--
1.8.1.2
More information about the Libclc-dev
mailing list