Commit dd82833cde04258f4cb62fe8521aa99a850dfe68

Tom St Denis 2016-01-31T12:54:06

Disable optimizations for mtest due to bug(s) in mpi.c causing it to fail checked against tfm/external

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/makefile b/makefile
index dbf085b..c167557 100644
--- a/makefile
+++ b/makefile
@@ -94,7 +94,7 @@ test_standalone: $(LIBNAME) demo/demo.o
 
 .PHONY: mtest
 mtest:
-	cd mtest ; $(CC) $(CFLAGS) mtest.c $(LFLAGS) -o mtest
+	cd mtest ; $(CC) $(CFLAGS) -O0 mtest.c $(LFLAGS) -o mtest
 
 timing: $(LIBNAME)
 	$(CC) $(CFLAGS) -DTIMER demo/timing.c $(LIBNAME) $(LFLAGS) -o ltmtest