[Libclc-dev] [PATCH] Fix build with LLVM 3.4
Tom Stellard
tom at stellard.net
Thu Jul 18 12:08:52 PDT 2013
On Thu, Jul 18, 2013 at 01:17:15PM -0500, Aaron Watry wrote:
> F_Binary and friends were moved to include/Support/FileSystem.h
>
> v2: Maintain compatibility with LLVM 3.3
>
Reviewed-by: Tom Stellard <thomas.stellard at amd.com>
> 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
>
>
> _______________________________________________
> Libclc-dev mailing list
> Libclc-dev at pcc.me.uk
> http://www.pcc.me.uk/cgi-bin/mailman/listinfo/libclc-dev
More information about the Libclc-dev
mailing list