1//===-- Config.h ------------------------------------------------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_Config_h_
11#define liblldb_Config_h_
12
13#if defined(__APPLE__)
14
15#include "lldb/Host/macosx/Config.h"
16
17#elif defined(__linux__)
18
19#include "lldb/Host/linux/Config.h"
20
21#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
22
23#include "lldb/Host/freebsd/Config.h"
24
25#elif defined(__MINGW__) || defined (__MINGW32__)
26
27#include "lldb/Host/mingw/Config.h"
28
29#else
30
31#error undefined platform
32
33#endif
34
35#endif // #ifndef liblldb_Config_h_
36