diff --git a/usage_examples/ios_toolchain/LDID.Makefile b/usage_examples/ios_toolchain/LDID.Makefile
index f166151d720dd557bdcc36bd0f7b5e6c6e663f0a..cc4939eaa83fac7b315eccae69152a651a65820b 100644
--- a/usage_examples/ios_toolchain/LDID.Makefile
+++ b/usage_examples/ios_toolchain/LDID.Makefile
@@ -22,7 +22,7 @@ OBJS:=$(subst .c,.o,$(OBJS))
 all: ldid
 
 %.o: %.cpp
-	$(CXX) $(FLAGS) -c -o $@ $<
+	$(CXX) -std=c++0x $(FLAGS) -c -o $@ $<
 
 %.o: %.c
 	$(CC) $(FLAGS) -c -o $@ $<