diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-07-26 16:55:39 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-07-26 16:55:39 +0000 |
commit | 23dd3327a03b9b64b428ea07dae580326159e47b (patch) | |
tree | a7b60f4cc8b0fca4034c8da56f5ed9f3f3cfbc0b /lib/System | |
parent | 7107c3badfe78ec89dcab6c02cf1b1bcaccc42a8 (diff) |
For PR780:
Put the rest of lib/System into LinkAllVMCore.h. This makes all of
lib/System available to programs that #include LinkALlVMCore.h so that
loadable modules linked into those programs can depend on all of lib/System
being available.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r-- | lib/System/Alarm.cpp | 1 | ||||
-rw-r--r-- | lib/System/DynamicLibrary.cpp | 2 | ||||
-rw-r--r-- | lib/System/MappedFile.cpp | 1 | ||||
-rw-r--r-- | lib/System/Path.cpp | 2 | ||||
-rw-r--r-- | lib/System/Process.cpp | 1 | ||||
-rw-r--r-- | lib/System/Program.cpp | 1 | ||||
-rw-r--r-- | lib/System/Signals.cpp | 1 | ||||
-rw-r--r-- | lib/System/TimeValue.cpp | 1 |
8 files changed, 10 insertions, 0 deletions
diff --git a/lib/System/Alarm.cpp b/lib/System/Alarm.cpp index d782b293e3..e0b7f7223a 100644 --- a/lib/System/Alarm.cpp +++ b/lib/System/Alarm.cpp @@ -32,3 +32,4 @@ using namespace sys; #include "Win32/Alarm.inc" #endif +DEFINING_FILE_FOR(SystemAlarm) diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp index 435513d4ff..859092a52a 100644 --- a/lib/System/DynamicLibrary.cpp +++ b/lib/System/DynamicLibrary.cpp @@ -173,3 +173,5 @@ void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) { } #endif // LLVM_ON_WIN32 + +DEFINING_FILE_FOR(SystemDynamicLibrary) diff --git a/lib/System/MappedFile.cpp b/lib/System/MappedFile.cpp index a91a623d77..41b59461d3 100644 --- a/lib/System/MappedFile.cpp +++ b/lib/System/MappedFile.cpp @@ -32,3 +32,4 @@ using namespace sys; #include "Win32/MappedFile.inc" #endif +DEFINING_FILE_FOR(SystemMappedFile) diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp index efadfa9adf..1246038f84 100644 --- a/lib/System/Path.cpp +++ b/lib/System/Path.cpp @@ -107,3 +107,5 @@ std::string Path::GetDLLSuffix() { #if defined(LLVM_ON_WIN32) #include "Win32/Path.inc" #endif + +DEFINING_FILE_FOR(SystemPath) diff --git a/lib/System/Process.cpp b/lib/System/Process.cpp index 644a81e1a9..d69f78ecd1 100644 --- a/lib/System/Process.cpp +++ b/lib/System/Process.cpp @@ -32,3 +32,4 @@ using namespace sys; #include "Win32/Process.inc" #endif +DEFINING_FILE_FOR(SystemProcess) diff --git a/lib/System/Program.cpp b/lib/System/Program.cpp index 22c38e2657..e91a3d54c2 100644 --- a/lib/System/Program.cpp +++ b/lib/System/Program.cpp @@ -32,3 +32,4 @@ using namespace sys; #include "Win32/Program.inc" #endif +DEFINING_FILE_FOR(SystemProgram) diff --git a/lib/System/Signals.cpp b/lib/System/Signals.cpp index 2d0de9b930..229dd1434b 100644 --- a/lib/System/Signals.cpp +++ b/lib/System/Signals.cpp @@ -33,3 +33,4 @@ using namespace sys; #include "Win32/Signals.inc" #endif +DEFINING_FILE_FOR(SystemSignals) diff --git a/lib/System/TimeValue.cpp b/lib/System/TimeValue.cpp index 227d67701e..8ecfd22da7 100644 --- a/lib/System/TimeValue.cpp +++ b/lib/System/TimeValue.cpp @@ -56,3 +56,4 @@ TimeValue::normalize( void ) { #include "Win32/TimeValue.inc" #endif +DEFINING_FILE_FOR(SystemTimeValue) |