From: Gordon Henriksen Date: Wed, 11 Jun 2008 10:46:24 +0000 (+0000) Subject: Better test for availability of __gnu_cxx::stdio_filebuf. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a068fd32e25b1eee3ad50636b169b0b06a0eb4c5;p=oota-llvm.git Better test for availability of __gnu_cxx::stdio_filebuf. If this doesn't work, I'll write a configure test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52213 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bitcode/Writer/BitWriter.cpp b/lib/Bitcode/Writer/BitWriter.cpp index 1aac5006d8f..8834964b040 100644 --- a/lib/Bitcode/Writer/BitWriter.cpp +++ b/lib/Bitcode/Writer/BitWriter.cpp @@ -28,7 +28,7 @@ int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { return 0; } -#ifdef __GNUC__ +#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR >= 4) #include // FIXME: Control this with configure? Provide some portable abstraction in @@ -49,4 +49,10 @@ int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { return 0; } +#else + +int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { + return -1; // Not supported. +} + #endif