-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
172 lines (157 loc) · 4.91 KB
/
configure.ac
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.67])
AC_INIT([marisa], [0.2.5], [syata@acm.org])
AC_CONFIG_SRCDIR([lib/marisa.h])
AM_INIT_AUTOMAKE
# Checks for programs.
LT_INIT
AC_PROG_CXX
AC_PROG_INSTALL
AC_CONFIG_MACRO_DIR([m4])
# Checks for SSE availability.
AC_MSG_CHECKING([whether to use SSE2])
AC_ARG_ENABLE([sse2],
[AS_HELP_STRING([--enable-sse2],
[use SSE2 [default=no]])],
[],
[enable_sse2="no"])
AS_IF([test "x${enable_sse2}" != "xno"], [
enable_sse2="yes"
])
AC_MSG_RESULT([${enable_sse2}])
AC_MSG_CHECKING([whether to use SSE3])
AC_ARG_ENABLE([sse3],
[AS_HELP_STRING([--enable-sse3],
[use SSE3 [default=no]])],
[],
[enable_sse3="no"])
AS_IF([test "x${enable_sse3}" != "xno"], [
enable_sse3="yes"
])
AC_MSG_RESULT([${enable_sse3}])
AC_MSG_CHECKING([whether to use SSSE3])
AC_ARG_ENABLE([ssse3],
[AS_HELP_STRING([--enable-ssse3],
[use SSSE3 [default=no]])],
[],
[enable_ssse3="no"])
AS_IF([test "x${enable_ssse3}" != "xno"], [
enable_ssse3="yes"
])
AC_MSG_RESULT([${enable_ssse3}])
AC_MSG_CHECKING([whether to use SSE4.1])
AC_ARG_ENABLE([sse4.1],
[AS_HELP_STRING([--enable-sse4.1],
[use SSE4.1 [default=no]])],
[],
[enable_sse4_1="no"])
AS_IF([test "x${enable_sse4_1}" != "xno"], [
enable_sse4_1="yes"
])
AC_MSG_RESULT([${enable_sse4_1}])
AC_MSG_CHECKING([whether to use SSE4.2])
AC_ARG_ENABLE([sse4.2],
[AS_HELP_STRING([--enable-sse4.2],
[use SSE4.2 [default=no]])],
[],
[enable_sse4_2="no"])
AS_IF([test "x${enable_sse4_2}" != "xno"], [
enable_sse4_2="yes"
])
AC_MSG_RESULT([${enable_sse4_2}])
AC_MSG_CHECKING([whether to use SSE4])
AC_ARG_ENABLE([sse4],
[AS_HELP_STRING([--enable-sse4],
[use SSE4 [default=no]])],
[],
[enable_sse4="no"])
AS_IF([test "x${enable_sse4}" != "xno"], [
enable_sse4="yes"
])
AC_MSG_RESULT([${enable_sse4}])
AC_MSG_CHECKING([whether to use SSE4a])
AC_ARG_ENABLE([sse4a],
[AS_HELP_STRING([--enable-sse4a],
[use SSE4a [default=no]])],
[],
[enable_sse4a="no"])
AS_IF([test "x${enable_sse4a}" != "xno"], [
enable_sse4a="yes"
])
AC_MSG_RESULT([${enable_sse4a}])
AC_MSG_CHECKING([whether to use popcnt])
AC_ARG_ENABLE([popcnt],
[AS_HELP_STRING([--enable-popcnt],
[use POPCNT [default=no]])],
[],
[enable_popcnt="no"])
AS_IF([test "x${enable_popcnt}" != "xno"], [
enable_popcnt="yes"
])
AC_MSG_RESULT([${enable_popcnt}])
AS_IF([test "x${enable_popcnt}" != "xno"], [
enable_sse3="yes"
])
AS_IF([test "x${enable_sse4a}" != "xno"], [
enable_popcnt="yes"
enable_sse3="yes"
])
AS_IF([test "x${enable_sse4}" != "xno"], [
enable_popcnt="yes"
enable_sse4_2="yes"
])
AS_IF([test "x${enable_sse4_2}" != "xno"], [
enable_popcnt="yes"
enable_sse4_1="yes"
])
AS_IF([test "x${enable_sse4_1}" != "xno"], [
enable_ssse3="yes"
])
AS_IF([test "x${enable_ssse3}" != "xno"], [
enable_sse3="yes"
])
AS_IF([test "x${enable_sse3}" != "xno"], [
enable_sse2="yes"
])
AS_IF([test "x${enable_popcnt}" != "xno"], [
CXXFLAGS="$CXXFLAGS -DMARISA_USE_POPCNT -mpopcnt"
])
if test "x${enable_sse4a}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE4A -msse4a"
elif test "x${enable_sse4}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE4 -msse4"
elif test "x${enable_sse4_2}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE4_2 -msse4.2"
elif test "x${enable_sse4_1}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE4_1 -msse4.1"
elif test "x${enable_ssse3}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSSE3 -mssse3"
elif test "x${enable_sse3}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE3 -msse3"
elif test "x${enable_sse2}" != "xno"; then
CXXFLAGS="$CXXFLAGS -DMARISA_USE_SSE2 -msse2"
fi
AC_CONFIG_FILES([Makefile
marisa.pc
lib/Makefile
tests/Makefile
tools/Makefile])
AC_OUTPUT
AS_ECHO([])
AS_ECHO(["${PACKAGE_NAME} ${PACKAGE_VERSION} configuration:"])
AS_ECHO(["-------------------------------"])
AS_ECHO([" HOST: ${host}"])
AS_ECHO([" CXX: ${CXX}"])
AS_ECHO([" CXXFLAGS: ${CXXFLAGS}"])
AS_ECHO([" LDFLAGS: ${LDFLAGS}"])
AS_ECHO([" PREFIX: ${prefix}"])
AS_ECHO([])
AS_ECHO([" SSE2: ${enable_sse2}"])
AS_ECHO([" SSE3: ${enable_sse3}"])
AS_ECHO([" SSSE3: ${enable_ssse3}"])
AS_ECHO([" SSE4.1: ${enable_sse4_1}"])
AS_ECHO([" SSE4.2: ${enable_sse4_2}"])
AS_ECHO([" SSE4a: ${enable_sse4a}"])
AS_ECHO([" POPCNT: ${enable_popcnt}"])
AS_ECHO([])