mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-23 13:35:42 -04:00

It's always hard to remember when to include this file, and when you do include it it's hard to remember what preprocessor check it needs to be behind, and then you further have to remember whether it's windows.h or win32.h which you need to include. This patch changes the name to PosixApi.h, which is more appropriately named, and makes it independent of any preprocessor setting. There's still the issue of people not knowing when to include this, because there's not a well-defined set of things it exposes other than "whatever is missing on Windows", but at least this should make it less painful to fix when problems arise. This patch depends on LLVM revision r278170. llvm-svn: 278177
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
//===-- lldb-python.h --------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H
|
|
#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H
|
|
|
|
// Python.h needs to be included before any system headers in order to avoid redefinition of macros
|
|
|
|
#ifdef LLDB_DISABLE_PYTHON
|
|
// Python is disabled in this build
|
|
#else
|
|
#include "llvm/Support/Compiler.h"
|
|
#if defined(LLVM_ON_WIN32)
|
|
// If anyone #includes Host/PosixApi.h later, it will try to typedef pid_t. We need to ensure
|
|
// this doesn't happen.
|
|
#define NO_PID_T
|
|
#endif
|
|
#if defined(__linux__)
|
|
// features.h will define _POSIX_C_SOURCE if _GNU_SOURCE is defined. This value
|
|
// may be different from the value that Python defines it to be which results
|
|
// in a warning. Undefine _POSIX_C_SOURCE before including Python.h The same
|
|
// holds for _XOPEN_SOURCE.
|
|
#undef _POSIX_C_SOURCE
|
|
#undef _XOPEN_SOURCE
|
|
#endif
|
|
|
|
// Include python for non windows machines
|
|
#include <Python.h>
|
|
#endif // LLDB_DISABLE_PYTHON
|
|
|
|
#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H
|