-
Notifications
You must be signed in to change notification settings - Fork 0
/
bagel-qdp-config.in
154 lines (131 loc) · 3.86 KB
/
bagel-qdp-config.in
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
# Be on the lookout for problems with undesirable CXXFLAGS and LDFLAGS
# propagating through this script. Send email to [email protected]
# if you find such a problem.
prefix="@prefix@"
exec_prefix="@exec_prefix@"
exec_prefix_set=no
version="@VERSION@"
bagel_qdp_cxx="@CXX@"
bagel_qdp_cxxflags="@CXXFLAGS@ @QDPXX_CXXFLAGS@ -I@includedir@"
bagel_qdp_ldflags="@LDFLAGS@ @QDPXX_LDFLAGS@ -L@libdir@"
bagel_qdp_libs="-lbagel_qdp @QDPXX_LIBS@ @LIBS@"
bagel_qdp_ranlib="@RANLIB@"
bagel_qdp_ar="@AR@"
usage()
{
cat <<EOF
Usage: bagel-config [OPTIONS]
Options:
[--prefix[=DIR]]
[--exec-prefix[=DIR]]
[--version]
[--cxx]
[--cxxflags]
[--ldflags]
[--libs]
[--ranlib]
[--ar]
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--prefix=*)
prefix=$optarg
if test $exec_prefix_set = no ; then
exec_prefix=$optarg
fi
;;
--prefix)
echo_prefix=yes
;;
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
;;
--exec-prefix)
echo_exec_prefix=yes
;;
--version)
echo $version
;;
--cxx)
echo $bagel_qdp_cxx
;;
--cxxflags)
echo_cxxflags=yes
;;
--ldflags)
echo_ldflags=yes
;;
--libs)
echo_libs=yes
;;
--ar)
echo ${bagel_qdp_ar}
;;
--ranlib)
echo ${bagel_qdp_ranlib}
;;
*)
usage 1 1>&2
;;
esac
shift
done
if test "X${echo_prefix}X" = "XyesX" ; then
echo $prefix
fi
if test "X${echo_exec_prefix}X" = "XyesX" ; then
echo $exec_prefix
fi
if test "X${echo_cxxflags}X" = "XyesX" ; then
output_cxxflags=
for i in $bagel_qdp_cxxflags ; do
case $i in
-I/usr/include) ;;
-g) ;;
# -O*) ;;
# -W*) ;;
*)
case " $output_cflags " in
*\ $i\ *) ;; # already there, skip it
*) output_cxxflags="$output_cxxflags $i" # add it to output
esac
esac
done
echo $output_cxxflags
fi
if test "X${echo_ldflags}X" = "XyesX" ; then
output_ldflags=
for i in $bagel_qdp_ldflags ; do
if test "X${i}X" != "X-I/usr/libX" ; then
case " $output_ldflags " in
*\ $i\ *) ;; # already there, skip it
*) output_ldflags="$output_ldflags $i" # add it to output
esac
fi
done
echo $output_ldflags
fi
if test "X${echo_libs}X" = "XyesX" ; then
rev_libs=
for i in $bagel_qdp_libs ; do
rev_libs="$i $rev_libs"
done
output_libs=
for i in $rev_libs ; do
case " $output_libs " in
*\ $i\ *) ;; # already there, skip it
*) output_libs="$i $output_libs" ;; # add it to output in reverse order
esac
done
echo $output_libs
fi