mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 22:40:24 +01:00
gallivm: Temporarily disable custom LLVMDumpValue on MSVC.
Seeing very weird crashes during std::cout initialization. The fault probably lies in the way I build LLVM on MSVC, but disable for now to allow more time to investigate.
This commit is contained in:
parent
e3205b0540
commit
2e524fd8bc
1 changed files with 3 additions and 2 deletions
|
|
@ -34,13 +34,14 @@
|
|||
#define __STDC_CONSTANT_MACROS
|
||||
#endif
|
||||
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm-c/Core.h"
|
||||
|
||||
#include "util/u_debug.h"
|
||||
|
||||
|
||||
#if defined(PIPE_OS_WINDOWS) || defined(PIPE_OS_EMBDDED)
|
||||
#if (defined(PIPE_OS_WINDOWS) && !defined(PIPE_CC_MSVC)) || defined(PIPE_OS_EMBDDED)
|
||||
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
class raw_debug_ostream :
|
||||
public llvm::raw_ostream
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue