Index: src/gdb-jit.cc |
diff --git a/src/gdb-jit.cc b/src/gdb-jit.cc |
index d3cd44707c59150aaf261e519abb792b43d64f54..826b845070aff8eac0c5e0a85bccb9d0429dc405 100644 |
--- a/src/gdb-jit.cc |
+++ b/src/gdb-jit.cc |
@@ -46,12 +46,14 @@ class MachO; |
class MachOSection; |
typedef MachO DebugObject; |
typedef MachOSection DebugSection; |
-#else |
+#elif !defined(WIN32) // DO NOT SUBMIT |
danno
2012/07/25 13:50:42
What is this change for?
Sigurður Ásgeirsson
2012/07/25 14:38:35
Reverted, sorry.
|
#define __ELF |
class ELF; |
class ELFSection; |
typedef ELF DebugObject; |
typedef ELFSection DebugSection; |
+#else |
+typedef void DebugObject; |
#endif |
class Writer BASE_EMBEDDED { |