mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-22 03:48:57 +00:00
For PR351:
Use the LLVM_ON_UNIX and LLVM_ON_WIN32 #defines to include the implementation instead of relying upon the "platform" link llvm-svn: 19132
This commit is contained in:
parent
27dbe5c161
commit
9cf9b6fe85
@ -99,6 +99,12 @@ Path::GetDLLSuffix() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Include the truly platform-specific parts of this class.
|
// Include the truly platform-specific parts of this class.
|
||||||
#include "platform/Path.cpp"
|
|
||||||
|
#if defined(LLVM_ON_UNIX)
|
||||||
|
#include "Unix/Path.cpp"
|
||||||
|
#endif
|
||||||
|
#if defined(LLVM_ON_WIN32)
|
||||||
|
#include "Win32/Path.cpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
|
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab
|
||||||
|
Loading…
x
Reference in New Issue
Block a user