comparison test/Makefile.template @ 40:55cadb1fac4b

*: add mod operation, add GCC vector backend need to test it with old gcc though. :)
author Paper <paper@tflc.us>
date Sun, 27 Apr 2025 02:49:53 -0400
parents f9ca85d2f14c
children c6e0df09b86f
comparison
equal deleted inserted replaced
39:f9ca85d2f14c 40:55cadb1fac4b
1 CPPFLAGS += -O2 -I../include -Wall -Wpedantic -Werror=strict-aliasing 1 CPPFLAGS += -g -O2 -I../include -Wall -Wpedantic -Werror=strict-aliasing
2 CFLAGS += $(CPPFLAGS) -std=c99 2 CFLAGS += $(CPPFLAGS) -std=c99
3 CXXFLAGS += $(CPPFLAGS) -std=c++11 3 CXXFLAGS += $(CPPFLAGS) -std=c++11
4 4
5 HEADERS = ../include/vec/vec.h \ 5 HEADERS = ../include/vec/vec.h \
6 ../include/vec/cpu.h \ 6 ../include/vec/cpu.h \
14 ../include/vec/impl/x86/sse2.h \ 14 ../include/vec/impl/x86/sse2.h \
15 ../include/vec/impl/x86/sse3.h \ 15 ../include/vec/impl/x86/sse3.h \
16 ../include/vec/impl/x86/sse41.h \ 16 ../include/vec/impl/x86/sse41.h \
17 ../include/vec/impl/x86/sse42.h \ 17 ../include/vec/impl/x86/sse42.h \
18 ../include/vec/impl/generic.h \ 18 ../include/vec/impl/generic.h \
19 ../include/vec/impl/gcc.h \
19 test_align.h \ 20 test_align.h \
20 test_arith.h \ 21 test_arith.h \
21 test_compare.h \ 22 test_compare.h \
22 test_shift.h \ 23 test_shift.h \
23 test_benchmark.h \ 24 test_benchmark.h \