-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
569 lines (522 loc) · 19 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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
dnl
dnl OMPi OpenMP Compiler
dnl == Copyright since 2001 the OMPi Team
dnl == Dept. of Computer Science & Engineering, University of Ioannina
dnl
dnl This file is part of OMPi.
dnl
dnl OMPi is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2 of the License, or
dnl (at your option) any later version.
dnl
dnl OMPi is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with OMPi; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
dnl
dnl This file must be processed by autoconf
dnl -----
dnl Configure.in file for OMPi
dnl -----
AC_INIT([OMPi compiler with torc extensions],[obsolete],[],[ompi])
AC_CONFIG_HEADERS([common/config.h])
# Make it shut up for subdir-objects till we solve it
AM_INIT_AUTOMAKE([-Wportability -Wno-unsupported tar-ustar])
# -----
# Give the user the option of including MPI support; needed by hompi, mpinode
# etc. This may change the system compiler stuff, so we must do it early.
# -----
AC_ARG_ENABLE(mpi,
AS_HELP_STRING([--enable-mpi],[enable MPI support]),
mpisupport=yes,
mpisupport=no)
# -----
# Before using AC_PROG_CC, check to see if the user has no CFLAGS
# so as to bypass configure's default autoconf flags (-g -O2).
# We don't want -g to be the default.
# Also check for CPPFLAGS and CC.
# -----
AC_MSG_CHECKING([for user-specified CFLAGS])
if test "x${CFLAGS}set" = xset; then
userCFLAGS=no
else
userCFLAGS=yes
fi
AC_MSG_RESULT(${userCFLAGS})
# Default CPPFLAG
AC_MSG_CHECKING([for user-specified CPPFLAGS])
if test "x${CPPFLAGS}set" = xset; then
CPPFLAGS='-D_REENTRANT'
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
fi
# Make CC=mpicc if user asked for MPI suppport
AC_MSG_CHECKING([for user-specified CC])
if test "x${CC}set" = xset; then
userCC=no
if test "x${mpisupport}" = xyes; then
CC="mpicc"
AC_MSG_RESULT(no; using mpicc by default)
else
AC_MSG_RESULT(no)
fi
else
userCC=yes
AC_MSG_RESULT(yes)
fi
# ----------------------------------------------------------------
# Standard stuff
# ----------------------------------------------------------------
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_CPP
AM_PROG_CC_C_O
AC_LANG([C])
AC_SEARCH_LIBS([strerror],[cposix])
AC_SEARCH_LIBS([dlopen], [dl dld],
[AC_DEFINE([HAVE_DLOPEN], [1], [Define if dlopen exists.])], [])
opencl_support=0
# CHECK instead of SEARCH to avoid OpenCL being added to the LDFLAGS
#AC_SEARCH_LIBS([clGetPlatformIDs],[OpenCL],
AC_CHECK_LIB([OpenCL],[clGetPlatformIDs],
opencl_support=1; [AC_DEFINE([HAVE_OPENCL], [1], [Define if OpenCL exists.])], [])
AC_PROG_MAKE_SET
AC_PROG_YACC
AM_PROG_LEX
AC_HEADER_STDC
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T
AC_TYPE_UINTPTR_T
LT_INIT
AC_OPENMP # Only required for enabling pragma macro replacement
# ----------------------------------------------------------------
# Figure out the system compiler
# ----------------------------------------------------------------
syscomp=""
# Intel
AC_CHECK_DECL(__INTEL_COMPILER, [ syscomp="intel" ])
if eval "test x${syscomp} = x"; then
# Sun Studio
AC_CHECK_DECL(__SUNPRO_C, [ syscomp="sun" ])
if eval "test x${syscomp} = x"; then
# MIPSpro
AC_CHECK_DECL(_SGI_COMPILER_VERSION, [ syscomp="mipspro" ])
if eval "test x${syscomp} = x"; then
# GCC Cygwin
AC_CHECK_DECL(__CYGWIN__, [ syscomp="cygwin" ])
if eval "test x${syscomp} = x"; then
# GCC
AC_CHECK_DECL(__GNUC__, [ syscomp="gcc" ])
fi
fi
fi
# Assume it is gcc after all
if eval "test x${syscomp} = x"; then
echo "*** Cannot determine what the system compiler is!"
echo "*** I am assuming it is a GNU compatible compiler."
syscomp="gcc"
fi
fi
# Ditch everything if MPI support wanted (let's hope mpicc exists)
if test "x${mpisupport}" = xyes && test "x${userCC}" = xno; then
syscomp="mpicc"
fi
echo ">> the system compiler is ${syscomp}"
AH_TEMPLATE(__SYSCOMPILER_intel, )
AH_TEMPLATE(__SYSCOMPILER_sun, )
AH_TEMPLATE(__SYSCOMPILER_mipspro, )
AH_TEMPLATE(__SYSCOMPILER_cygwin, )
AH_TEMPLATE(__SYSCOMPILER_gcc, )
AH_TEMPLATE(__SYSCOMPILER_mpicc, )
AC_DEFINE_UNQUOTED( [__SYSCOMPILER_${syscomp} ], [ 1 ],[ System compiler ])
# ----------------------------------------------------------------
# Figure out the OS
# ----------------------------------------------------------------
sysos=""
AC_CANONICAL_HOST
case "${host}" in
*-sgi-irix6* ) sysos="irix" ;;
*-linux* ) sysos="linux" ;;
*-solaris2* ) sysos="solaris" ;;
*-cygwin* ) sysos="cygwin" ;;
* ) sysos="linux"
echo "*** Cannot determine what the operating system is!"
echo "*** I am assuming it is GNU/Linux compatible."
;;
esac
echo ">> the operating system is ${sysos}"
AH_TEMPLATE(__SYSOS_irix, )
AH_TEMPLATE(__SYSOS_linux, )
AH_TEMPLATE(__SYSOS_solaris, )
AH_TEMPLATE(__SYSOS_cygwin, )
AC_DEFINE_UNQUOTED( [ __SYSOS_${sysos} ], [ 1 ], [ Host operating system ])
# -----
# We won't use ${host_cpu} to figure out the CPU type.
# Since the compilers predefine it, and the user may force a partiular cpu type
# with his args, we let it be discovered at sysdeps.h
# -----
# ----------------------------------------------------------------
# Now, we know the OS and the system compiler.
# If there are no user CFLAGS, we set some default ones.
# ----------------------------------------------------------------
if test "x${userCFLAGS}" = xno; then
case "${syscomp}" in
gcc ) CFLAGS='-O2'
if test "x${sysos}" = xirix; then
CPPFLAGS="${CPPFLAGS} -D__SGI_LIBC_NAMESPACE_QUALIFIER= "
CFLAGS='-O2'
fi
;;
cygwin ) CFLAGS='-O2' ;;
intel ) CFLAGS='-O2 -U__STRICT_ANSI__ -diag-disable 3180 -no-offload' ;;
mipspro ) CFLAGS='-O2' ;;
sun ) CPPFLAGS="${CPPFLAGS} -Dasm=__asm"
CFLAGS='-xO4' ;;
# For the moment, we only need to support the MPINODE module:
mpicc ) CFLAGS='-O2 -rdynamic' ;;
esac
fi
echo ">> CPPFLAGS = ${CPPFLAGS}"
echo ">> CFLAGS = ${CFLAGS}"
# ----------------------------------------------------------------
# More stuff we need
# ----------------------------------------------------------------
AC_C_INLINE
AC_TYPE_LONG_LONG_INT
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(char *)
LIBS="${LIBS} -lpthread"
AC_CHECK_FUNCS(pthread_setconcurrency)
AC_CHECK_FUNCS(realpath)
AC_CHECK_FUNCS(posix_memalign)
AC_CHECK_FUNCS(strncasecmp)
# Check if -lrt is needed: we use sched_yield() and clock_gettime()
needRT=no
AC_CHECK_FUNCS(sched_yield, [ break ],
[ AC_CHECK_LIB(rt, sched_yield, [ needRT=yes ],
[ AC_DEFINE_UNQUOTED(NO_SCHED_YIELD, , not found) ])
])
AC_CHECK_FUNCS(clock_gettime, [ break ],
[ AC_CHECK_LIB(rt, clock_gettime, [ needRT=yes ],
[ AC_DEFINE_UNQUOTED(NO_CLOCK_GETTIME, , not found) ])
])
AC_MSG_CHECKING([for struct timespec])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <time.h> ]],
[[ int x = sizeof(struct timespec); ]])],
AC_DEFINE_UNQUOTED(HAVE_TIMESPEC, 1, Define to 1 if wave struct timespec)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
)
if test "x${needRT}" = xyes; then
LIBS="${LIBS} -lrt"
fi
# -----
# Check if we have thread local storage
# -----
# Avoid __declspec(thread) as some compiler versions pass it with
# a plain warning...
#AC_MSG_CHECKING([for thread local storage])
#checks="__thread __declspec(thread) bummer"
#for word in $checks; do
# case $word in
# bummer ) AC_MSG_RESULT([no])
# ;;
# * ) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdlib.h> ]],
# [[ static ] $word [ int i; i++; ]])],
# AC_DEFINE_UNQUOTED(TLS_KEYWORD, $word, For thread local storage)
# AC_MSG_RESULT($word)
# break,
# )
# esac
#done
AC_MSG_CHECKING([for thread local storage])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdlib.h> ]],
[[ static __thread int i; i++; ]])],
AC_DEFINE_UNQUOTED(TLS_KEYWORD, __thread, For thread local storage)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
)
# -----
# Check if we have atomic operations
# Make sure that we have it on the rhs
# -----
AC_MSG_CHECKING([for atomic fetch&add])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[int i; i=__sync_fetch_and_add(&i,1); ]])],
[AC_DEFINE_UNQUOTED(HAVE_ATOMIC_FAA,, Atomic fetch & add)
AC_DEFINE_UNQUOTED(_faa, __sync_fetch_and_add, FAA function)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)]
)
AC_MSG_CHECKING([for atomic compare&swap])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[int i,j; j=__sync_bool_compare_and_swap(&i,0,1); ]])],
[AC_DEFINE_UNQUOTED(HAVE_ATOMIC_CAS,, Atomic boolean compare & swap)
AC_DEFINE_UNQUOTED(_cas, __sync_bool_compare_and_swap, CAS function)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)]
)
AC_MSG_CHECKING([for memory barrier])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[__sync_synchronize(); ]])],
[AC_DEFINE_UNQUOTED(HAVE_MEMBAR,, Memory barrier)
AC_DEFINE_UNQUOTED(_mb, __sync_synchronize, Membar function)
AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(no)]
)
# -----
# Check if we have all we need for explicit thread binding
# -----
AC_MSG_CHECKING([for pthread affinity])
# AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <pthread.h> #include <sched.h>]],
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[
#define _GNU_SOURCE
#include <pthread.h>
#include <sched.h>
#include <stdlib.h>]],
[[ cpu_set_t fullset, cpuset;
pthread_attr_t attr;
int cpu, i, x = 0;
if (pthread_getaffinity_np(pthread_self(), sizeof(cpu_set_t), &fullset) != 0)
return EXIT_FAILURE;
for (i = 0; i < CPU_SETSIZE; i++)
if (CPU_ISSET(i, &fullset))
{
cpu = i;
break;
}
CPU_ZERO(&cpuset);
CPU_SET(cpu, &cpuset);
x += pthread_attr_init(&attr);
x += pthread_attr_setaffinity_np(&attr, sizeof(cpu_set_t), (const cpu_set_t *)&fullset);
x += pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), (const cpu_set_t *)&cpuset);
if (x != 0) return EXIT_FAILURE; ]])],
AC_DEFINE_UNQUOTED(HAVE_PTHREAD_AFFINITY, 1, For pthread affinity)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
)
# -----
# Check if we have all we need for topology detection using HWLOC
# -----
AC_MSG_CHECKING([for hwloc])
AC_SUBST([LIBS],["${LIBS} -lhwloc"])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <hwloc.h>
#include <stdlib.h>]],
[[
hwloc_topology_t topology;
int x = 0;
x += hwloc_topology_init(&topology);
x += hwloc_topology_load(topology);
if (x < 0) exit(EXIT_FAILURE); ]])],
AC_DEFINE_UNQUOTED(HAVE_HWLOC, 1, Define if hwloc topology loaded successfully)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
AC_SUBST([LIBS],["${LIBS%-lhwloc}"])
)
# -----
# Check if we have gettid() wrapper
# -----
AC_MSG_CHECKING([for gettid (wrapper)])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <sys/types.h>]],
[[
pid_t tid = gettid(); ]])],
AC_DEFINE_UNQUOTED(HAVE_GETTID, 1, Define if gettid wrapper call succedded)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
)
# -----
# Check if we have
# -----
AC_MSG_CHECKING([for gettid (syscall)])
AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#define _GNU_SOURCE
#include <unistd.h>
#include <sys/syscall.h>]],
[[
pid_t tid = syscall(SYS_gettid); ]])],
AC_DEFINE_UNQUOTED(HAVE_GETTID_SYSCALL, 1, Define if syscall(SYS_gettid) call succedded)
AC_MSG_RESULT([yes]),
AC_MSG_RESULT([no])
)
# ----------------------------------------------------------------
# Give a debugging option; when developing, enable it by default.
# ----------------------------------------------------------------
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],[enable debugging (default: disabled)]),
if test "x${enable_debug}" = xyes; then
DEBUGFLAG="-g"
else
DEBUGFLAG=""
fi,
if test -d .git; then
DEBUGFLAG="-g"
AC_MSG_NOTICE([>> .git/ detected; debugging enabled by default])
else
DEBUGFLAG=""
fi)
# ----------------------------------------------------------------
# Give the option of a portable build
# ----------------------------------------------------------------
AC_ARG_ENABLE(portable,
AS_HELP_STRING([--enable-portable],[produce a portable build (default: disabled)]),
AC_MSG_NOTICE([>> building portably])
AC_DEFINE(PORTABLE_BUILD, , Define if on a portable build),
)
# ----------------------------------------------------------------
# The user chooses the execution entity library.
# A choice of xxx implies files in runtime/host/ee_xxx/ which will
# be compiled and used as the default library.
# ----------------------------------------------------------------
ortlib=""
AC_ARG_WITH(ortlib,
AS_HELP_STRING([--with-ortlib=libname],[the host runtime libraries to build (see runtime/host/ee_*; default: pthreads). If you want to build multiple libraries surround them with ""]),
[ ortlib=${withval} ],
[ ortlib=pthreads ])
# Check if the thread libraries exist
ortlibpath=""
for lib in ${ortlib}
do
if test -f "${srcdir}/runtime/host/ee_${lib}/ee.h" && test -f "${srcdir}/runtime/host/ee_${lib}/ortconf.${lib}"; then :;
else
AC_MSG_ERROR([>> cannot find ee.h or ortconf.${lib} in runtime/ee_${lib} (check --with-ortlib)])
fi
ortlibpath="${ortlibpath} ee_${lib}"
done
AC_MSG_NOTICE([building with "${ortlib}" host libraries])
# -----
# Give the user the option of not making this the default library
# -----
AC_ARG_ENABLE(defaultlib,
AS_HELP_STRING([--disable-defaultlib],[do not make this the default library]),
,
defaultlib=yes)
# ----------------------------------------------------------------
# Bits and pieces
# ----------------------------------------------------------------
# -----
# Check for spin locks
# -----
# Usually they are available with the _XOPEN_SOURCE macro
#AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #define _XOPEN_SOURCE 600
# #include <pthread.h>
# pthread_spinlock_t lock; ]],
# [[ pthread_spin_init(&lock,0); ]])],
# AC_DEFINE([HAVE_SPINLOCKS],[],[Through _XOPEN_SOURCE]), )
# -----
# Discover the available libraries
# -----
libpaths=""
for lib in ${srcdir}/runtime/host/ee_*/ # Find all library directories
do
if test -f "${lib}Makefile.am"; then # Make sure there is a Makefile.am
tmp="${lib#$srcdir/runtime/host/}" # Remove "${srcdir}/runtime/host/" from the path
libpaths="${libpaths} ${tmp%/}" # Add it to "libpaths"
fi
done
# ----------------------------------------------------------------
# Modules
# ----------------------------------------------------------------
# -----
# Discover the available modules
# -----
modpaths=""
allmods=""
for mod in ${srcdir}/runtime/devices/*/ # Find all module directories
do
# Skip the "DeviceTemplate" directory
if test "x${mod}" = "x${srcdir}/runtime/devices/DeviceTemplate/"
then
continue
fi
# Make sure there is a Makefile.am and a checkit.sh
if test -f "${mod}Makefile.am" && (test -f "${mod}/checkit.sh" ||
test "x${mod}" = "x${srcdir}/runtime/devices/opencl/"); then
tmp="${mod#$srcdir/runtime/devices/}" # Remove "${srcdir}/runtime/devices/" from the path
tmp="${tmp%/}" # Remove '/' from the end
modpaths="${modpaths} ${tmp}" # Add it to "modpaths"
allmods="${allmods} ${tmp}" # Add it to "allmods"
fi
done
# -----
# The user chooses which modules to install. If no modules are selected all
# the available modules are compiled and installed.
# -----
modules=""
AC_ARG_WITH(modules,
AS_HELP_STRING([--with-modules="module1 module2"],[the device libraries to build (see runtime/devices/; default: all available).]),
[ modules=${withval} ],
[ modules=${allmods} ])
# Check if the modules exist, and we can compile them
availmods=""
availmodpaths=""
for mod in ${modules}
do
# Skip the "mpinode" module if no support for MPI was requested
if test "x${mod}" = "xmpinode" && test "x${mpisupport}" = "xno"; then
continue
fi
if (test "x${mod}" = "xopencl" && test "${opencl_support}" -eq "1") ||
(test -f "${srcdir}/runtime/devices/${mod}/checkit.sh" && "${srcdir}/runtime/devices/${mod}/checkit.sh"); then
availmods="${availmods} ${mod}"
availmodpaths="${availmodpaths} ${mod}"
else
AC_MSG_WARN([>> cannot build "${mod}" module (check --with-modules)])
fi
done
availmods="${availmods:1}" # Get rid of the space infront of the first module
AC_MSG_NOTICE([building with "${availmods}" device libraries])
AC_DEFINE_UNQUOTED([MODULES_CONFIG], ["${availmods}"], [The installed device modules.])
# ----------------------------------------------------------------
# The following variables should be substituted in Makefile.in
# ----------------------------------------------------------------
AC_SUBST(DEBUGFLAG)
AC_SUBST(ortlib)
AC_SUBST(ortlibpath)
AC_SUBST(defaultlib)
AC_SUBST(libpaths)
AC_SUBST(modpaths)
AC_SUBST(availmodpaths)
# -----
# Finally, output the makefiles
# If you created a new library you should add it here
# -----
AC_CONFIG_FILES([Makefile
common/Makefile
ompicc/Makefile
compiler/Makefile
runtime/Makefile
runtime/host/Makefile
runtime/host/ee_pthreads/Makefile
runtime/host/ee_psthr/Makefile
runtime/host/ee_process/Makefile
runtime/devices/Makefile
runtime/devices/epiphany3/Makefile
runtime/devices/epiphany3/devpart/Makefile
runtime/devices/epiphany3/devpart-blockingws-only-task-single/Makefile
runtime/devices/epiphany3/devpart-blockingws/Makefile
runtime/devices/epiphany3/devpart-noexpltasks-blockingws/Makefile
runtime/devices/epiphany3/devpart-noexpltasks/Makefile
runtime/devices/epiphany3/devpart-noopenmp/Makefile
runtime/devices/epiphany3/devpart-only-atomic/Makefile
runtime/devices/epiphany3/devpart-only-critical/Makefile
runtime/devices/epiphany3/devpart-only-parallel-locks/Makefile
runtime/devices/epiphany3/devpart-only-parallel-reduction/Makefile
runtime/devices/epiphany3/devpart-only-parallel/Makefile
runtime/devices/epiphany3/devpart-only-single/Makefile
runtime/devices/epiphany3/devpart-only-static-for/Makefile
runtime/devices/epiphany3/devpart-only-static-guided-dynamic-for/Makefile
runtime/devices/epiphany3/devpart-only-static-ordered-for/Makefile
runtime/devices/epiphany3/devpart-only-tasks-1icv/Makefile
runtime/devices/epiphany3/devpart-only-tasks/Makefile
runtime/devices/epiphany3/hostpart/Makefile
runtime/devices/mpinode/Makefile
runtime/devices/mpinode/devpart/Makefile
runtime/devices/mpinode/hostpart/Makefile])
AC_OUTPUT