forked from MersenneTwister-Lab/SFMT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.armv7a
116 lines (84 loc) · 3.75 KB
/
Makefile.armv7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# @file Makefile.armv7a
# @brief Makefile.armv7a
#
# @author Masaki Ota
#
# The new BSD License is applied to this software.
# see LICENSE.txt
#
# @note
# We could compile test-neon-Mxxx using gcc-4.8(armv7a) of Linux.
#
WARN = -Wmissing-prototypes -Wall -Winline
OPTI = -O3 -finline-functions -fomit-frame-pointer -DNDEBUG \
-fno-strict-aliasing --param max-inline-insns-single=1800
STD = -std=c99
CC = arm-linux-gnueabihf-gcc-4.8
CCFLAGS = $(OPTI) $(WARN) $(STD)
NEONFLAGS = -DHAVE_NEON -mfpu=neon -ftree-vectorize
ARM_TARGET = test-arm-M19937
NEON_TARGET = test-neon-M19937
ALL_ARM_TARGET = test-arm-M607 test-arm-M1279 test-arm-M2281 test-arm-M4253 \
test-arm-M11213 test-arm-M19937 test-arm-M44497 test-arm-M86243 \
test-arm-M132049 test-arm-M216091
ALL_NEON_TARGET = test-neon-M607 test-neon-M1279 test-neon-M2281 \
test-neon-M4253 test-neon-M11213 test-neon-M19937 test-neon-M44497 \
test-neon-M86243 test-neon-M132049 test-neon-M216091
.PHONY: arm-check neon-check
arm: $(ARM_TARGET)
neon:$(NEON_TARGET)
arm-check: $(ALL_arm_TARGET)
./check.sh 32 test-arm
neon-check: $(ALL_NEON_TARGET)
./check.sh 32 test-neon
test-arm-M607: test.c SFMT.c SFMT.h SFMT-params607.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=607 -o $@ test.c SFMT.c
test-neon-M607: test.c SFMT.c SFMT.h SFMT-neon.h SFMT-params607.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=607 -o $@ test.c SFMT.c
test-arm-M1279: test.c SFMT.c SFMT.h SFMT-params1279.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=1279 -o $@ test.c SFMT.c
test-neon-M1279: test.c SFMT.c SFMT.h SFMT-neon.h SFMT-params1279.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=1279 -o $@ test.c SFMT.c
test-arm-M2281: test.c SFMT.c SFMT.h SFMT-params2281.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=2281 -o $@ test.c SFMT.c
test-neon-M2281: test.c SFMT.c SFMT.h SFMT-neon.h SFMT-params2281.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=2281 -o $@ test.c SFMT.c
test-arm-M4253: test.c SFMT.c SFMT.h SFMT-params4253.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=4253 -o $@ test.c SFMT.c
test-neon-M4253: test.c SFMT.c SFMT.h SFMT-neon.h SFMT-params4253.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=4253 -o $@ test.c SFMT.c
test-arm-M11213: test.c SFMT.c SFMT.h SFMT-params11213.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=11213 -o $@ test.c SFMT.c
test-neon-M11213: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params11213.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=11213 -o $@ test.c SFMT.c
test-arm-M19937: test.c SFMT.c SFMT.h SFMT-params19937.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=19937 -o $@ test.c SFMT.c
test-neon-M19937: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params19937.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=19937 -o $@ test.c SFMT.c
asm-neon-M19937: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params19937.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=19937 -s $@ test.c SFMT.c -S
test-arm-M44497: test.c SFMT.c SFMT.h SFMT-params44497.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=44497 -o $@ test.c SFMT.c
test-neon-M44497: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params44497.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=44497 -o $@ test.c SFMT.c
test-arm-M86243: test.c SFMT.c SFMT.h SFMT-params86243.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=86243 -o $@ test.c SFMT.c
test-neon-M86243: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params86243.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=86243 -o $@ test.c SFMT.c
test-arm-M132049: test.c SFMT.c SFMT.h SFMT-params132049.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=132049 -o $@ test.c SFMT.c
test-neon-M132049: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params132049.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=132049 -o $@ test.c SFMT.c
test-arm-M216091: test.c SFMT.c SFMT.h SFMT-params216091.h
$(CC) $(CCFLAGS) -DSFMT_MEXP=216091 -o $@ test.c SFMT.c
test-neon-M216091: test.c SFMT.c SFMT.h SFMT-neon.h \
SFMT-params216091.h
$(CC) $(CCFLAGS) $(NEONFLAGS) -DSFMT_MEXP=216091 -o $@ test.c SFMT.c
clean:
rm -f *.o *~