mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
For PR351:
This file is no longer needed as system dependent functions have been encapsulated into lib/System. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19049 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
210b32b16f
commit
9a55e8517b
@ -1,32 +0,0 @@
|
||||
/*===-- Config/sys/mman.h - Autoconf sys/mman.h wrapper -----------*- C -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*
|
||||
* Description:
|
||||
* This header file includes the headers needed for the mmap() system/
|
||||
* function call. It also defines some macros so that all of our calls
|
||||
* to mmap() can act (more or less) the same, regardless of platform.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_MMAN_H
|
||||
#define _CONFIG_MMAN_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#if defined(HAVE_SYS_MMAN_H) && !defined(_MSC_VER)
|
||||
#include <sys/mman.h>
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_MMAP_ANONYMOUS
|
||||
#define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -1,34 +0,0 @@
|
||||
/*===-- Config/sys/resource.h -----------------------------------*- C++ -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*
|
||||
* This header file is the autoconf replacement for sys/resource.h (if it
|
||||
* lives on the system).
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_SYS_RESOURCE_H
|
||||
#define _CONFIG_SYS_RESOURCE_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#if defined(HAVE_SYS_RESOURCE_H) && !defined(_MSC_VER)
|
||||
|
||||
/*
|
||||
* In LLVM, we use sys/resource.h to use getrusage() and maybe some other
|
||||
* stuff. Some man pages say that you also need sys/time.h and unistd.h.
|
||||
* So, to be paranoid, we will try to include all three if possible.
|
||||
*/
|
||||
#include "llvm/Config/sys/time.h"
|
||||
#include <sys/resource.h>
|
||||
#include "llvm/Config/unistd.h"
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
@ -1,29 +0,0 @@
|
||||
/*===-- Config/sys/stat.h -----------------------------------*- ----C++ -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
* This header file includes the headers needed for the stat() system
|
||||
* call.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_SYS_STAT_H
|
||||
#define _CONFIG_SYS_STAT_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#ifdef HAVE_SYS_STAT_H
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define S_ISREG(X) ((X) & _S_IFREG)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -1,24 +0,0 @@
|
||||
/*===-- Config/sys/time.h ---------------------------------------*- C++ -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
* This header file is the autoconf replacement for sys/time.h (if it
|
||||
* lives on the system).
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_SYS_TIME_H
|
||||
#define _CONFIG_SYS_TIME_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#if defined(HAVE_SYS_TIME_H) && !defined(_MSC_VER)
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#endif
|
@ -1,25 +0,0 @@
|
||||
/*===-- Config/sys/types.h --------------------------------------*- C++ -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
* This header file is the autoconf substitute for sys/types.h. It
|
||||
* includes it for us if it exists on this system.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_SYS_TYPES_H
|
||||
#define _CONFIG_SYS_TYPES_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#ifdef HAVE_SYS_TYPES_H
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -1,24 +0,0 @@
|
||||
/*===-- Config/sys/wait.h ---------------------------------------*- C++ -*-===//
|
||||
*
|
||||
* The LLVM Compiler Infrastructure
|
||||
*
|
||||
* This file was developed by the LLVM research group and is distributed under
|
||||
* the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||||
*
|
||||
*===----------------------------------------------------------------------===//
|
||||
* This header file includes the headers needed for the wait() system
|
||||
* call.
|
||||
*===----------------------------------------------------------------------===//
|
||||
*/
|
||||
|
||||
#ifndef _CONFIG_SYS_WAIT_H
|
||||
#define _CONFIG_SYS_WAIT_H
|
||||
|
||||
#include "llvm/Config/config.h"
|
||||
|
||||
#ifdef HAVE_SYS_WAIT_H
|
||||
#include <sys/wait.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user