[llvm-commits] [llvm] r147427 - /llvm/trunk/unittests/VMCore/Makefile
Chandler Carruth
chandlerc at gmail.com
Mon Jan 2 00:40:40 PST 2012
Author: chandlerc
Date: Mon Jan 2 02:40:40 2012
New Revision: 147427
URL: http://llvm.org/viewvc/llvm-project?rev=147427&view=rev
Log:
Fix unittest makefile after r147425. This should unbreak the makefile
build. This didn't show up in the CMake build because the CMake build
for the unittests is rather poorly factored.
This probably isn't the correct fix. This should be a bitcode reader
unittest not a VMCore unittest. I'll move it and clean various parts of
the unittest up in a follow-up patch, but I wanted to unbreak the bots.
Modified:
llvm/trunk/unittests/VMCore/Makefile
Modified: llvm/trunk/unittests/VMCore/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/VMCore/Makefile?rev=147427&r1=147426&r2=147427&view=diff
==============================================================================
--- llvm/trunk/unittests/VMCore/Makefile (original)
+++ llvm/trunk/unittests/VMCore/Makefile Mon Jan 2 02:40:40 2012
@@ -9,7 +9,7 @@
LEVEL = ../..
TESTNAME = VMCore
-LINK_COMPONENTS := core support target ipa
+LINK_COMPONENTS := core support bitreader bitwriter target ipa
include $(LEVEL)/Makefile.config
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
More information about the llvm-commits
mailing list