Gregory Petrosyan
2010-Jan-05 10:11 UTC
[LLVMdev] [PATCH] test-suite/bullet: unbreak linking
Eliminate undefined references to powf, sqrtf and friends. Index: MultiSource/Benchmarks/Bullet/Makefile ==================================================================--- MultiSource/Benchmarks/Bullet/Makefile (revision 92512) +++ MultiSource/Benchmarks/Bullet/Makefile (working copy) @@ -1,7 +1,7 @@ LEVEL = ../../../ PROG = bullet CPPFLAGS += -I$(PROJ_SRC_DIR)/include -DNO_TIME -LDFLAGS = -lstdc++ +LDFLAGS = -lstdc++ -lm include $(LEVEL)/Makefile.config
On Jan 5, 2010, at 2:11 AM, Gregory Petrosyan wrote:> Eliminate undefined references to powf, sqrtf and friends.Thanks, applied in r92748, -Chris> > Index: MultiSource/Benchmarks/Bullet/Makefile > ==================================================================> --- MultiSource/Benchmarks/Bullet/Makefile (revision 92512) > +++ MultiSource/Benchmarks/Bullet/Makefile (working copy) > @@ -1,7 +1,7 @@ > LEVEL = ../../../ > PROG = bullet > CPPFLAGS += -I$(PROJ_SRC_DIR)/include -DNO_TIME > -LDFLAGS = -lstdc++ > +LDFLAGS = -lstdc++ -lm > > include $(LEVEL)/Makefile.config > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev