From 39622ead92a1658952448643eac6612037b2ec64 Mon Sep 17 00:00:00 2001 From: Martin Raiber Date: Sun, 6 Nov 2022 12:40:00 +0100 Subject: [PATCH] Test compile with MINIZ_USE_UNALIGNED_LOADS_AND_STORES=1 --- amalgamate.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/amalgamate.sh b/amalgamate.sh index 63130d8..cfa72b1 100755 --- a/amalgamate.sh +++ b/amalgamate.sh @@ -23,6 +23,8 @@ do echo "Test compile with GCC and define $def..." gcc -ansi -pedantic -Wall -I$OUTPUT_PREFIX main.c $OUTPUT_PREFIX/miniz.c -o test.out -D${def} done +echo "Test compile with GCC and MINIZ_USE_UNALIGNED_LOADS_AND_STORES=1..." +gcc -ansi -pedantic -Wall -I$OUTPUT_PREFIX main.c $OUTPUT_PREFIX/miniz.c -o test.out -DMINIZ_USE_UNALIGNED_LOADS_AND_STORES=1 rm test.out rm main.c