diff options
author | Stephen Wilson <wilsons@start.ca> | 2011-03-23 01:58:26 +0000 |
---|---|---|
committer | Stephen Wilson <wilsons@start.ca> | 2011-03-23 01:58:26 +0000 |
commit | 3e2a18f61e671bc5ff22ef9b4cf6031108dbab6d (patch) | |
tree | 30f622fe9695c59898a1d7c3c2bd35c5929c798c /lldb/lib | |
parent | b1fd32858177f9dbc2eab3069be0f1f66876edfb (diff) | |
download | bcm5719-llvm-3e2a18f61e671bc5ff22ef9b4cf6031108dbab6d.tar.gz bcm5719-llvm-3e2a18f61e671bc5ff22ef9b4cf6031108dbab6d.zip |
linux: add Host/linux subdirectory
Start putting linux specific host code in its own directory. For now, just
implement Host::GetOSVersion.
llvm-svn: 128133
Diffstat (limited to 'lldb/lib')
-rw-r--r-- | lldb/lib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 5cb956e0caa..d3398fa2c15 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -72,7 +72,8 @@ endif ifeq ($(HOST_OS),Linux) USEDLIBS += lldbPluginProcessLinux.a \ lldbPluginDynamicLoaderLinux.a \ - lldbPluginPlatformLinux.a + lldbPluginPlatformLinux.a \ + lldbHostLinux.a endif include $(LEVEL)/Makefile.common |