forked from OSchip/llvm-project
Cygwin doesn't like .. through a link, so drop the ..
llvm-svn: 19076
This commit is contained in:
parent
92e8a5a0ea
commit
22dd8b15c0
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic unix implementation
|
||||
#include "../Unix/DynamicLibrary.cpp"
|
||||
#include "Unix/DynamicLibrary.cpp"
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic unix implementation
|
||||
#include "../Unix/MappedFile.cpp"
|
||||
#include "Unix/MappedFile.cpp"
|
||||
|
||||
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic unix implementation
|
||||
#include "../Unix/Memory.cpp"
|
||||
#include "Unix/Memory.cpp"
|
||||
#include "llvm/System/Process.h"
|
||||
#include <sys/types.h>
|
||||
#include <sys/mman.h>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic Unix implementation
|
||||
#include "../Unix/Path.cpp"
|
||||
#include "Unix/Path.cpp"
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic Unix implementation
|
||||
#include "../Unix/Process.cpp"
|
||||
#include "Unix/Process.cpp"
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//=== WARNING: Implementation here must contain only Cygwin specific code
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic Unix implementation
|
||||
#include "../Unix/Program.cpp"
|
||||
#include "Unix/Program.cpp"
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//=== WARNING: Implementation here must contain only Cygwin specific code
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic unix implementation
|
||||
#include "../Unix/Signals.cpp"
|
||||
#include "Unix/Signals.cpp"
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic unix implementation
|
||||
#include "../Unix/SysConfig.cpp"
|
||||
#include "Unix/SysConfig.cpp"
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Include the generic Unix implementation
|
||||
#include "../Unix/TimeValue.cpp"
|
||||
#include "Unix/TimeValue.cpp"
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
Loading…
Reference in New Issue