Update tests.

This commit is contained in:
David Reid
2018-04-29 16:42:47 +10:00
parent 6901d9f18c
commit 9e14a9f8f8
2 changed files with 11 additions and 4 deletions
+9 -2
View File
@@ -1,7 +1,14 @@
@echo off
SET c_compiler=gcc
SET cpp_compiler=g++
SET options=-Wall -mavx
@echo on
%c_compiler% mal_test_0.c -o ./bin/mal_test_0.exe -Wall -mavx
%cpp_compiler% mal_test_0.cpp -o ./bin/mal_test_0_cpp.exe -Wall -mavx
%c_compiler% mal_test_0.c -o ./bin/mal_test_0.exe %options%
%cpp_compiler% mal_test_0.cpp -o ./bin/mal_test_0_cpp.exe %options%
%c_compiler% mal_profiling.c -o ./bin/mal_profiling.exe %options%
%cpp_compiler% mal_profiling.c -o ./bin/mal_profiling_cpp.exe %options%
%c_compiler% mal_dithering.c -o ./bin/mal_dithering.exe %options%
%cpp_compiler% mal_dithering.c -o ./bin/mal_dithering_cpp.exe %options%