Index: Makefile.standalone |
diff --git a/Makefile.standalone b/Makefile.standalone |
index c1c5c475a66de5d722a9dcaf5fd591ebfcc728e1..c0b13b9259b48c475ddd209a0df58eda40bb5391 100644 |
--- a/Makefile.standalone |
+++ b/Makefile.standalone |
@@ -114,7 +114,8 @@ SRCS = \ |
ifndef MINIMAL |
SRCS += IceConverter.cpp \ |
- IceTypeConverter.cpp |
+ IceTypeConverter.cpp \ |
+ BitcodeMunge.cpp |
jvoung (off chromium)
2015/01/07 22:24:34
Could this be under the unittest directory, and th
Karl
2015/01/08 21:35:05
Done. Added CL flag GenerateUnitTestMessages, and
|
endif |
OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
@@ -122,6 +123,10 @@ OBJS=$(patsubst %.cpp, $(OBJDIR)/%.o, $(SRCS)) |
UNITTEST_SRCS = \ |
IceELFSectionTest.cpp |
+ifndef MINIMAL |
+ UNITTEST_SRCS += IceParseInstsTest.cpp |
+endif |
+ |
UNITTEST_OBJS = $(patsubst %.cpp, $(OBJDIR)/unittest/%.o, $(UNITTEST_SRCS)) |
UNITTEST_LIB_OBJS = $(filter-out $(OBJDIR)/llvm2ice.o,$(OBJS)) |