[Lldb-commits] [lldb] r242344 - [Makefiles] One more library rename to align with CMake

Keno Fischer kfischer at college.harvard.edu
Wed Jul 15 15:39:44 PDT 2015


Author: kfischer
Date: Wed Jul 15 17:39:44 2015
New Revision: 242344

URL: http://llvm.org/viewvc/llvm-project?rev=242344&view=rev
Log:
[Makefiles] One more library rename to align with CMake

This one I accidentally missed last time because I confused it with
the lldbUtility library. After this, all makefile libraries should
have the same names as their CMake counterparts.

Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/Plugins/Process/Utility/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=242344&r1=242343&r2=242344&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Wed Jul 15 17:39:44 2015
@@ -73,7 +73,7 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginSystemRuntimeMacOSX.a \
 	lldbPluginUnwindAssemblyInstEmulation.a \
 	lldbPluginUnwindAssemblyX86.a \
-	lldbPluginUtility.a \
+	lldbPluginProcessUtility.a \
 	lldbSymbol.a \
 	lldbTarget.a \
 	lldbUtility.a \

Modified: lldb/trunk/source/Plugins/Process/Utility/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/Makefile?rev=242344&r1=242343&r2=242344&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/Makefile (original)
+++ lldb/trunk/source/Plugins/Process/Utility/Makefile Wed Jul 15 17:39:44 2015
@@ -1,14 +1,14 @@
 ##===- source/Plugins/Utility/Makefile ---------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LLDB_LEVEL := ../../../..
-LIBRARYNAME := lldbPluginUtility
+LIBRARYNAME := lldbPluginProcessUtility
 BUILD_ARCHIVE = 1
 
 include $(LLDB_LEVEL)/Makefile





More information about the lldb-commits mailing list