From dba808162da685c277908d0b7c1417bb7b7e18a7 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 27 May 2018 21:10:03 +1000 Subject: [PATCH] Update test build script to use AVX2 instead of AVX. --- tests/mal_build_tests_win32.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/mal_build_tests_win32.bat b/tests/mal_build_tests_win32.bat index c03c2715..0fb8be3a 100644 --- a/tests/mal_build_tests_win32.bat +++ b/tests/mal_build_tests_win32.bat @@ -1,14 +1,14 @@ @echo off SET c_compiler=gcc SET cpp_compiler=g++ -SET options=-Wall -mavx +SET options=-Wall -mavx2 @echo on %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_profiling.c -o ./bin/mal_profiling.exe %options% -s -O2 +%cpp_compiler% mal_profiling.c -o ./bin/mal_profiling_cpp.exe %options% -s -O2 %c_compiler% mal_dithering.c -o ./bin/mal_dithering.exe %options% %cpp_compiler% mal_dithering.c -o ./bin/mal_dithering_cpp.exe %options% \ No newline at end of file