-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlpfcxx.in
289 lines (246 loc) · 7.44 KB
/
lpfcxx.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#!/bin/bash
#
# Copyright 2021 Huawei Technologies Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name=`basename $0`
# define a function to print help
function printhelp()
{
echo "LPF Compiler Frontend"
echo "====================="
echo
echo "SYNPOSIS:"
echo " $name [-help] [-engine <engine>] <sources> ... <libs> ..."
echo
echo "DESCRIPTION"
echo "This command compiles C++ sources and links them with the LPF library"
echo
echo "OPTIONS"
echo " -help Shows this message"
echo
echo " -show[=quoted]"
echo " Command line that will be executed by this frontend."
echo " If 'quoted' is given, the printed parameters will be"
echo " quoted with single (') quotes."
echo
echo " -compile_info[=quoted]"
echo " Prints the generic compilation command, ignoring any"
echo " provided source, object, or output files. If 'quoted'"
echo " is given, the printed parameters will be quoted with"
echo " single (') quotes."
echo
echo " -link_lib_info[=quoted]"
echo " Prints the generic link command for linking libraries,"
echo " ignoring any provided source, object, or output files."
echo " If 'quoted' is given, the printed parameters will be"
echo " quoted with single (') quotes."
echo
echo " -link_exe_info[=quoted]"
echo " Prints the generic link command for linking executables,"
echo " ignoring any provided source, object, or output files."
echo " If 'quoted' is given, the printed parameters will be"
echo " quoted with single (') quotes."
echo
echo " -engine <engine>"
echo " Allow you to choose the engine. Currently supported"
echo " are: pthread, mpirma, mpimsg, hybrid, ibverbs"
echo
echo " <sources>"
echo " Source files, like .c, .cpp, .C, .cxx"
echo
echo " <lib>"
echo " Any C/C++ library. "
echo " LPF provides the following option libraries: "
echo " -llpf_hl Link with the higher-level libraries"
echo " -llpf_debug Use the debug core-interface layer"
echo " -lbsplib Link with BSPlib API as defined by Hill et al."
echo " -lmcbsp Link with MulticoreBSP C API"
echo
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
@CMAKE_CXX_COMPILER@ --help
}
# parse parameters
doPrinthelp=no
link_exe=yes
link_lib=no
show=
show_link_lib=
show_link_exe=
show_compile=
engine=imp
config=@LPFLIB_CONFIG_NAME@
extra_libs=
debug=no
state=
declare -a other_args
arg_number=0
for arg
do
case $arg in
-help)
doPrinthelp=yes
shift
;;
-show)
show=echo
shift
;;
-show=quoted)
show=quote
shift
;;
-link_lib_info)
show_link_lib=echo
shift
;;
-link_lib_info=quoted)
show_link_lib=quote
shift
;;
-link_exe_info)
show_link_exe=echo
shift
;;
-link_exe_info=quoted)
show_link_exe=quote
shift
;;
-compile_info)
show_compile=echo
shift
;;
-compile_info=quoted)
show_compile=quote
shift
;;
-engine)
state=engine
shift
;;
-llpf_hl)
extra_libs="$extra_libs hl"
shift
;;
-llpf_debug)
debug=yes
shift
;;
-lbsplib)
extra_libs="$extra_libs bsplib"
shift
;;
-lmcbsp)
extra_libs="$extra_libs mcbsp"
shift
;;
-c)
link_lib=no
link_exe=no
shift
;;
-shared)
link_lib=yes
link_exe=no
shift
;;
*) case $state in
engine)
engine=$arg
state=
shift
;;
*) other_args[$arg_number]="$arg"
arg_number=$((arg_number + 1))
shift
;;
esac
;;
esac
done
if [ $doPrinthelp = yes ]; then
printhelp
exit 0
fi
compiler="@CMAKE_CXX_COMPILER@"
cflags=( "-I@INSTALL_HEADERS@" @LPF_CORE_COMPILE_FLAGS@ )
lib_ldflags=( @LPF_CORE_LIB_LINK_FLAGS@ -shared )
exe_ldflags=( @LPF_CORE_LIB_LINK_FLAGS@ @LPF_CORE_EXE_LINK_FLAGS@ )
mcbsp_cflags=( "-I@INSTALL_HEADERS@/bsp" "-DLPF_USE_MCBSP_API=1" )
bsplib_cflags=( "-I@INSTALL_HEADERS@/bsp" )
defs=()
stdlibs=()
if [ x$debug = xyes ]; then
stdlibs=( "-llpf_debug" "@LIB_POSIX_THREADS@" "${stdlibs[@]}" )
cflags=( "-I@INSTALL_HEADERS@/lpf/debug" "${cflags[@]}" )
fi
for lib in $extra_libs
do
case $lib in
hl) if [ x$debug = xyes ]; then
stdlibs=( "-llpf_hl_debug" "${stdlibs[@]}" )
else
stdlibs=( "-llpf_hl" "${stdlibs[@]}" )
fi
;;
bsplib)
stdlibs=( "-lbsplib" "@LIB_POSIX_THREADS@" "-llpf_hl" "${stdlibs[@]}" )
cflags=( "${cflags[@]}" ${bsplib_cflags[@]} )
defs=()
;;
mcbsp)
stdlibs=( "-lbsplib" "@LIB_POSIX_THREADS@" "-llpf_hl" "${stdlibs[@]}" )
cflags=( "${cflags[@]}" ${mcbsp_cflags[@]} )
defs=()
;;
esac
done
case $engine in
mpimsg|mpirma|ibverbs) stdlibs=( @MPI_CXX_LIB_CMDLINE@ ${stdlibs[@]} ) ;;
*) ;;
esac
stdlibs=( "${stdlibs[@]}" "-llpf_core_univ_${engine}_${config}" )
compile_flags=( "${cflags[@]}" "${defs[@]}")
link_lib_flags=( "-L@INSTALL_LIB@" "${stdlibs[@]}" "${lib_ldflags[@]}" )
link_exe_flags=( "-L@INSTALL_LIB@" "${stdlibs[@]}" "${exe_ldflags[@]}" )
function quote() {
for arg
do
echo -ne "'${arg}' "
done
echo
}
if [ x"$show_compile" != "x" ]; then
$show_compile $compiler "${other_args[@]}" "${compile_flags[@]}"
exit 0
fi
if [ x"$show_link_exe" != "x" ]; then
$show_link_exe $compiler "${other_args[@]}" "${link_exe_flags[@]}"
exit 0
fi
if [ x"$show_link_lib" != "x" ]; then
$show_link_lib $compiler "${other_args[@]}" "${link_lib_flags[@]}"
exit 0
fi
if [ $link_exe = yes ]; then
$show $compiler "${other_args[@]}" "${compile_flags[@]}" "${link_exe_flags[@]}"
exitstatus=$?
elif [ $link_lib = yes ]; then
$show $compiler "${other_args[@]}" "${compile_flags[@]}" "${link_lib_flags[@]}"
exitstatus=$?
else
$show $compiler -c "${other_args[@]}" "${compile_flags[@]}"
exitstatus=$?
fi
exit $exitstatus