diff options
author | Ed Maste <emaste@freebsd.org> | 2014-03-05 13:57:24 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2014-03-05 13:57:24 +0000 |
commit | 32aa12b86c213254c1ea2af1e07c8f9926939485 (patch) | |
tree | 3e9c4ea6efa7ebc350c61f094385343c54d9ff36 /lldb/source/lldb.cpp | |
parent | 792d4b1559b14c7c8b11e7378cd7320454a82bd4 (diff) | |
download | bcm5719-llvm-32aa12b86c213254c1ea2af1e07c8f9926939485.tar.gz bcm5719-llvm-32aa12b86c213254c1ea2af1e07c8f9926939485.zip |
Build JITLoader on FreeBSD also
llvm-svn: 202980
Diffstat (limited to 'lldb/source/lldb.cpp')
-rw-r--r-- | lldb/source/lldb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/lldb.cpp b/lldb/source/lldb.cpp index c0a8545f504..23ae61b7b62 100644 --- a/lldb/source/lldb.cpp +++ b/lldb/source/lldb.cpp @@ -68,11 +68,11 @@ #if defined(__linux__) || defined(__FreeBSD__) #include "Plugins/Process/elf-core/ProcessElfCore.h" +#include "Plugins/JITLoader/GDB/JITLoaderGDB.h" #endif #if defined (__linux__) #include "Plugins/Process/Linux/ProcessLinux.h" -#include "Plugins/JITLoader/GDB/JITLoaderGDB.h" #endif #if defined (__FreeBSD__) @@ -150,7 +150,6 @@ lldb_private::Initialize () // Linux hosted plugins //---------------------------------------------------------------------- ProcessLinux::Initialize(); - JITLoaderGDB::Initialize(); #endif #if defined (__FreeBSD__) ProcessFreeBSD::Initialize(); @@ -158,6 +157,7 @@ lldb_private::Initialize () #if defined(__linux__) || defined(__FreeBSD__) ProcessElfCore::Initialize(); + JITLoaderGDB::Initialize(); #endif //---------------------------------------------------------------------- // Platform agnostic plugins @@ -233,7 +233,6 @@ lldb_private::Terminate () #if defined (__linux__) ProcessLinux::Terminate(); - JITLoaderGDB::Terminate(); #endif #if defined (__FreeBSD__) @@ -242,6 +241,7 @@ lldb_private::Terminate () #if defined(__linux__) || defined(__FreeBSD__) ProcessElfCore::Terminate(); + JITLoaderGDB::Terminate(); #endif ProcessGDBRemote::Terminate(); DynamicLoaderStatic::Terminate(); |