forked from browndeer/coprthr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.in
596 lines (495 loc) · 16 KB
/
configure.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
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(coprthr, 1.1, [email protected])
#AC_CONFIG_SRCDIR([clmalloc.h])
#AC_CONFIG_HEADER([config.h])
AC_PREFIX_DEFAULT(/usr/local/browndeer)
AC_DEFUN([SET_OPT],
[if test x$1 != xno; then
echo "enabled $3"
$2=1
else
echo "disabled $3"
$2=0
fi;]
)
AC_CANONICAL_BUILD
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
#AC_PROG_LIBTOOL
AC_PATH_PROG([BASH],[bash],,[path=`$path`])
#AC_CHECK_PROG(F90,gfortran44,gfortran44)
# Checks for libraries.
# FIXME: Replace `main' with a function in `-lOpenCL':
AC_CHECK_LIB([OpenCL], [main])
# FIXME: Replace `main' with a function in `-ldl':
AC_CHECK_LIB([dl], [main])
# FIXME: Replace `main' with a function in `-lpthread':
AC_CHECK_LIB([pthread], [main])
AC_CHECK_LIB([elf],[elf64_getehdr])
PWD=`pwd`
### extract enable/disable options
AC_ARG_ENABLE(clgl,
AC_HELP_STRING([--enable-clgl],[enable clgl support (default=yes)]),, enable_clgl=yes)
AC_ARG_ENABLE(clete,
AC_HELP_STRING([--enable-clete],[enable clete expression template acceleration (default=yes)]),, enable_clete=yes)
AC_ARG_ENABLE(debug-libs,
AC_HELP_STRING([--enable-debug-libs],[enable building debug versions of librarires (default=yes)]),, enable_debug_libs=yes)
AC_ARG_ENABLE(cltrace,
AC_HELP_STRING([--enable-cltrace],[enable building cltrace tool (default=yes)]),, enable_cltrace=yes)
AC_ARG_ENABLE(clld,
AC_HELP_STRING([--enable-clld],[enable building clld tool (default=yes)]),, enable_clld=yes)
AC_ARG_ENABLE(libcoprthr,
AC_HELP_STRING([--enable-libcoprthr],[enable libcoprthr (default=no)]),, enable_libcoprthr=no)
AC_ARG_ENABLE(libocl,
AC_HELP_STRING([--enable-libocl],[enable libocl (default=yes)]),, enable_libocl=yes)
AC_ARG_ENABLE(libcoprthr-ncpu,
AC_HELP_STRING([--enable-libcoprthr-ncpu],[enable libcoprthr ncpu (default=yes)]),, enable_libcoprthr_ncpu=yes)
AC_ARG_ENABLE(fortran,
AC_HELP_STRING([--enable-fortran],[enable fortran bindings (default=no)]),, enable_fortran=yes)
enable_libcoprthr_ncpu=enable_libcoprthr;
echo enable_libcoprthr $enable_libcoprthr
### now process the selected options
SET_OPT($enable_clete, ENABLE_CLETE, "CLETE expression template acceleration")
SET_OPT($enable_debug_libs, ENABLE_DEBUG_LIBS, "building debug versions of librarires - use \<libname\>_d.so")
SET_OPT($enable_cltrace, ENABLE_CLTRACE, "building cltrace tool")
SET_OPT($enable_clld, ENABLE_CLLD, "building clld tool")
SET_OPT($enable_libcoprthr, ENABLE_LIBCOPRTHR, "building libcoprthr")
SET_OPT($enable_libocl, ENABLE_LIBOCL, "building libocl")
#SET_OPT($enable_libcoprthr_ncpu, ENABLE_NCPU, "libcoprthr ncpu support")
SET_OPT($enable_fortran, ENABLE_FORTRAN, "fortran binding support")
#SET_OPT($enable_libcoprthr_atigpu, ENABLE_ATIGPU, "libcoprthr atigpu support")
#SET_OPT($enable_libcoprthr_bdt_builtins, ENABLE_BDT_BUILTINS, "libcoprthr use bdt builtins")
#OPENCL_INCLUDE=
#OPENCL_LIB=
#OPENCL_LIBNAME=
#DEFAULT_DEFAULT_OPENCL_PLATFORM=
#AMD_SDK=
###
### OpenCL platform selection is somewhat complicated. Here are the rules:
###
### 1) gather locations of vendor include and lib paths following best
### known search path and save temporarily for use in the next steps
###
### 2) test for --with-opencl-platform, set DEFAULT_OPENCL_PLATFORM.
### If it is not set, use /etc/OpenCL/vendors to build list
### in this order:
### amdapp,nvidia,coprthr,intel
###
### 3) if set scan DEFAULT_OPENCL_PLATFORM in order and set OPENCL_INCLUDE
### and OPENCL_LIB to be first platform for which we have good paths.
###
### 4) unless --disable-libocl is used, override step 3 with libocl
###
### 5) test for --with-opencl-include and --with-opencl-lib, and override
### OPENCL_INCLUDE and OPENCL_LIB as necessary
###
### step 1)
### XXX add vendor checks to make sure there are no collisions -DAR
# find best known AMDAPP paths
if test -n "$(find /etc/OpenCL/vendors -maxdepth 1 -name 'ati*.icd' -print -quit)"; then
tmp_amdapp_sdk=1;
elif test -n "$(find /etc/OpenCL/vendors -maxdepth 1 -name 'amd*.icd' -print -quit)"; then
tmp_amdapp_sdk=1;
else
tmp_amdapp_sdk=0;
fi;
#if test $tmp_amdapp_sdk = 1; then
for d in /opt/AMDAPP /usr/local/atistream
do
if test -e $d/include/CL/cl.h; then
if test -e $d/lib/x86_64/libOpenCL.so; then
tmp_amdapp_include=$d/include;
tmp_amdapp_lib=$d/lib/x86_64;
break;
fi;
fi;
done;
#fi;
# find best known Nvidia paths
if test -n "$(find /etc/OpenCL/vendors -maxdepth 1 -name 'nvidia*.icd' -print -quit)"; then
tmp_nvidia_sdk=1;
else
tmp_nvidia_sdk=0;
fi;
for d in /usr/local/cuda
do
if test -e $d/OpenCL/common/inc/CL/cl.h; then
if test -e $d/OpenCL/common/lib/Linux64/libOpenCL.so; then
tmp_nvidia_include=$d/OpenCL/common/inc;
tmp_nvidia_lib=$d/OpenCL/common/lib/Linux64;
break;
elif test -e /usr/lib64/libOpenCL.so; then
tmp_nvidia_include=$d/OpenCL/common/inc;
tmp_nvidia_lib=/usr/lib64;
break;
fi;
elif test -e $d/include/CL/cl.h; then
if test -e $d/lib/libOpenCL.so; then
tmp_nvidia_include=$d/include;
tmp_nvidia_lib=$d/lib64;
break;
elif test -e /usr/lib64/libOpenCL.so; then
tmp_nvidia_include=$d/include;
tmp_nvidia_lib=/usr/lib64;
break;
fi;
fi;
done;
#else
# tmp_nvidia_sdk=0;
#fi;
# set COPRTHR paths for bootstrap
if test x$enable_libocl = xyes; then
tmp_coprthr_sdk=1
tmp_coprthr_include=$PWD/include
tmp_coprthr_lib=$PWD/src/libocl
else
tmp_coprthr_sdk=0
tmp_coprthr_include=
tmp_coprthr_lib=
fi;
# find best known Intel paths
if test -n "$(find /etc/OpenCL/vendors -maxdepth 1 -name 'intel*.icd' -print -quit)"; then
tmp_intel_sdk=1;
else
tmp_intel_sdk=0;
fi;
for d in /usr/local
do
if test -e $d/include/CL/cl.h; then
if test -e $d/lib64/libOpenCL.so; then
tmp_intel_include=$d/include;
tmp_intel_lib=$d/lib64;
break;
elif test -e /usr/lib/libOpenCL.so; then
tmp_intel_include=$d/include;
tmp_intel_lib=/usr/lib;
break;
fi;
fi;
done;
#else
# tmp_intel_sdk=0;
#fi;
### step 2)
# test for --with-opencl-platform specification
AC_ARG_WITH(opencl-platform,
AC_HELP_STRING([--with-opencl-platform=NAMELIST],
[specify default platform selection as a comma seperated list]),
[
if test x$withval = xyes; then
AC_MSG_ERROR([usage: --with-opencl-platform=NAMELIST])
else
DEFAULT_OPENCL_PLATFORM=$withval;
fi;
],
[
if test $tmp_amdapp_sdk -eq 1; then
DEFAULT_OPENCL_PLATFORM=amdapp;
fi;
if test $tmp_nvidia_sdk -eq 1; then
if ! test -z $DEFAULT_OPENCL_PLATFORM; then
DEFAULT_OPENCL_PLATFORM=$DEFAULT_OPENCL_PLATFORM,nvidia;
else
DEFAULT_OPENCL_PLATFORM=nvidia;
fi;
fi;
if test $tmp_coprthr_sdk -eq 1; then
if ! test -z $DEFAULT_OPENCL_PLATFORM; then
DEFAULT_OPENCL_PLATFORM=$DEFAULT_OPENCL_PLATFORM,coprthr;
else
DEFAULT_OPENCL_PLATFORM=coprthr;
fi;
fi;
if test $tmp_intel_sdk -eq 1; then
if ! test -z $DEFAULT_OPENCL_PLATFORM; then
DEFAULT_OPENCL_PLATFORM=$DEFAULT_OPENCL_PLATFORM,intel;
else
DEFAULT_OPENCL_PLATFORM=intel;
fi;
fi;
])
### step 3)
list2=`echo $DEFAULT_OPENCL_PLATFORM | awk '{sub(/,/," ");print}'`
for p in $list2
do
echo $p
case $p in
amd*)
OPENCL_INCLUDE=$tmp_amdapp_include;
OPENCL_LIB=$tmp_amdapp_lib;
OPENCL_LIBNAME=OpenCL;
break
;;
nvidia*)
OPENCL_INCLUDE=$tmp_nvidia_include;
OPENCL_LIB=$tmp_nvidia_lib;
OPENCL_LIBNAME=OpenCL;
break
;;
coprthr*)
OPENCL_INCLUDE=$tmp_coprthr_include;
OPENCL_LIB=$tmp_coprthr_lib;
OPENCL_LIBNAME=ocl;
break
;;
intel*)
OPENCL_INCLUDE=$tmp_intel_include;
OPENCL_LIB=$tmp_intel_lib;
OPENCL_LIBNAME=OpenCL;
break
;;
*)
echo "unknown OpenCL platform '" $p "'";
;;
esac
done
### step 4)
if test x$enable_libocl = xyes; then
OPENCL_INCLUDE=$tmp_coprthr_include;
OPENCL_LIB=$tmp_coprthr_lib;
OPENCL_LIBNAME=ocl;
fi;
### step 5)
# test for --with-opencl-include specification
AC_ARG_WITH(opencl-include,
AC_HELP_STRING([--with-opencl-include=DIR],
[specify OpenCL include path]),
[
if test x$withval = xyes; then
AC_MSG_ERROR([usage: --with-opencl-include=DIR])
elif ! test -e $withval/CL/cl.h; then
AC_MSG_ERROR([bad include path, could not find CL/cl.h])
else
OPENCL_INCLUDE=$withval;
fi;
],
[])
# test for --with-opencl-lib specification
AC_ARG_WITH(opencl-lib,
AC_HELP_STRING([--with-opencl-lib=DIR],
[specify OpenCL lib path]),
[
if test x$withval = xyes; then
AC_MSG_ERROR([usage: --with-opencl-lib=DIR])
elif ! test -e $withval/lib$OPENCL_LIBNAME.so; then
AC_MSG_ERROR([bad lib path, could not find $OPENCL_LIB])
else
OPENCL_LIB=$withval;
fi;
],
[])
echo "tmp_amdapp_sdk = " $tmp_amdapp_sdk
echo "tmp_amdapp_include = " $tmp_amdapp_include
echo "tmp_amdapp_lib = " $tmp_amdapp_lib
echo "tmp_nvidia_sdk = " $tmp_nvidia_sdk
echo "tmp_nvidia_include = " $tmp_nvidia_include
echo "tmp_nvidia_lib = " $tmp_nvidia_lib
echo "tmp_coprthr_sdk = " $tmp_coprthr_sdk
echo "tmp_coprthr_include = " $tmp_coprthr_include
echo "tmp_coprthr_lib = " $tmp_coprthr_lib
echo "tmp_intel_sdk = " $tmp_intel_sdk
echo "tmp_intel_include = " $tmp_intel_include
echo "tmp_intel_lib = " $tmp_intel_lib
### XXX consider making bootstrap mode a single test -DAR
if test -z $DEFAULT_OPENCL_PLATFORM; then
if test x$enable_libcoprthr = xyes; then
DEFAULT_OPENCL_PLATFORM=coprthr;
echo no default OpenCL platform, libcoprthr enabled, using bootstrap;
else
AC_MSG_ERROR([no default OpenCL platform, try --enable-libcoprthr])
fi
fi
if test -z $OPENCL_INCLUDE; then
if test x$enable_libcoprthr = xyes; then
OPENCL_INCLUDE=$PWD/include;
echo no OpenCL include path, libcoprthr enabled, using bootstrap;
else
AC_MSG_ERROR([no OpenCL include path, try --with-opencl-include=DIR])
fi
fi
if test -z $OPENCL_LIB; then
if test x$enable_libcoprthr = xyes; then
OPENCL_LIB=$PWD/src/libcoprthr;
echo no OpenCL lib path, libcoprthr enabled, using bootstrap;
else
AC_MSG_ERROR([no OpenCL lib path, try --with-opencl-lib=DIR])
fi
fi
if test -z $OPENCL_LIBNAME; then
if test x$enable_libcoprthr = xyes; then
OPENCL_LIBNAME=coprthr;
echo no OpenCL lib name, libcoprthr enabled, using bootstrap;
else
AC_MSG_ERROR([no OpenCL lib name])
fi
fi
echo "DEFAULT_OPENCL_PLATFORM = " $DEFAULT_OPENCL_PLATFORM
echo "OPENCL_INCLUDE = " $OPENCL_INCLUDE
echo "OPENCL_LIB = " $OPENCL_LIB
echo "OPENCL_LIBNAME = " $OPENCL_LIBNAME
if test x$OPENCL_LIBNAME = xcoprthr; then
enable_clgl=no;
fi
SET_OPT($enable_clgl, ENABLE_CLGL, "CLGL support")
AC_ARG_WITH(fortran,
AC_HELP_STRING([--with-fortran=PROG], [Use fortran compiler PROG]),
[
if test x$withval = xno; then
AC_MSG_ERROR([no fortran compiler specified])
else
F90=$withval
fi;
],
[])
if test x$enable_fortran = xyes; then
if ! test -d F90; then
AC_CHECK_PROG(F90,gfortran44,gfortran44)
fi;
fi;
echo $F90
### now address a constant annoyance.
### we will require a path for libelf and most importantly we will
### reject attempts to use libelf.so.1 because its useless -DAR
AC_ARG_WITH(libelf,
AC_HELP_STRING([--with-libelf=DIR], [specify path to libelf]),
[
if test x$withval = xno; then
AC_MSG_ERROR([usage: --with-libelf=DIR])
else
LIBELF_PATH=$withval
fi;
echo $LIBELF_PATH
],
[
if test -e /usr/local/lib/libelf.so; then
LIBELF_PATH=/usr/local;
else
AC_MSG_ERROR([cannot find libelf, try --with-libelf=DIR])
fi;
])
echo $LIBELF_PATH
# XXX this seems like a sledge hammer, but its all i could come up with -DAR
tmp_test_libelf=`readelf -d $LIBELF_PATH/lib/libelf.so | grep 'Library soname' | awk '{print $5}'`
if ! test x$tmp_test_libelf = x@<:@libelf.so.0@:>@; then
echo $tmp_test_libelf
AC_MSG_ERROR([incorrect version of libelf specified])
fi;
libelf_inc="-I$LIBELF_PATH/include"
libelf_lib="-L$LIBELF_PATH/lib -lelf"
### XXX clean up this syntax - above - for setting paths and such -DAR
### select C/C++ compilers for libcoprthr
AC_ARG_WITH(libcoprthr-cc,
AC_HELP_STRING([--with-libcoprthr-cc=PROG],
[use PROG for libcoprthr C compiler]),
[
if test x$withval = xno; then
AC_MSG_ERROR([no C compiler specified])
else
LIBCOPRTHR_CC=$withval
fi;
],
[ LIBCOPRTHR_CC=gcc ])
AC_ARG_WITH(libcoprthr-cxx,
AC_HELP_STRING([--with-libcoprthr-cxx=PROG],
[use PROG for libcoprthr C++ compiler]),
[
if test x$withval = xno; then
AC_MSG_ERROR([no C++ compiler specified])
else
LIBCOPRTHR_CXX=$withval
fi;
],
[ LIBCOPRTHR_CXX=g++ ])
AC_ARG_WITH(libcoprthr-model,
AC_HELP_STRING([--with-libcoprthr-model=default|template|no-template],
[select model for libcoprthr OCL compilation]),
[
if test x$withval = xtemplate; then
LIBCOPRTHR_MODEL=$withval
elif test x$withval = xno-template; then
LIBCOPRTHR_MODEL=$withval
elif test x$withval = xdefault; then
LIBCOPRTHR_MODEL=$withval
else
AC_MSG_ERROR([invalid libcoprthr model selected])
fi;
],
[ LIBCOPRTHR_MODEL=default ])
if test x$enable_libcoprthr = xyes; then
echo LIBCOPRTHR_CC = $LIBCOPRTHR_CC
echo LIBCOPRTHR_CXX = $LIBCOPRTHR_CXX
echo LIBCOPRTHR_MODEL = $LIBCOPRTHR_MODEL
fi;
### allow custom path for ICD files
AC_ARG_WITH(opencl-icd-path,
AC_HELP_STRING([--with-opencl-icd-path=DIR],
[set custom path for ICD files]),
[
if test x$withval = xno; then
AC_MSG_ERROR([no ICD path specified])
else
OPENCL_ICD_PATH=$withval
fi;
],
[ OPENCL_ICD_PATH=/etc/OpenCL/vendors ])
BASH=`which bash`
AC_SUBST(BASH)
AC_SUBST(F90)
AC_SUBST(ENABLE_CLGL)
AC_SUBST(ENABLE_CLETE)
AC_SUBST(ENABLE_DEBUG_LIBS)
AC_SUBST(ENABLE_CLTRACE)
AC_SUBST(ENABLE_CLLD)
AC_SUBST(ENABLE_LIBCOPRTHR)
AC_SUBST(ENABLE_LIBOCL)
AC_SUBST(ENABLE_NCPU)
#AC_SUBST(ENABLE_ATIGPU)
#AC_SUBST(ENABLE_BDT_BUILTINS)
AC_SUBST(OPENCL_INCLUDE)
AC_SUBST(OPENCL_LIB)
AC_SUBST(OPENCL_LIBNAME)
AC_SUBST(DEFAULT_OPENCL_PLATFORM)
AC_SUBST(libelf_inc)
AC_SUBST(libelf_lib)
AC_SUBST(LIBCOPRTHR_CC)
AC_SUBST(LIBCOPRTHR_CXX)
AC_SUBST(LIBCOPRTHR_MODEL)
AC_SUBST(OPENCL_ICD_PATH)
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([install-message.txt])
AC_CONFIG_FILES([src/libstdcl/Makefile])
AC_CONFIG_FILES([src/CLETE/Makefile])
AC_CONFIG_FILES([src/libocl/Makefile])
AC_CONFIG_FILES([src/libcoprthr/Makefile])
AC_CONFIG_FILES([src/libclelf/Makefile])
AC_CONFIG_FILES([tools/cltrace/Makefile])
AC_CONFIG_FILES([tools/xclnm/Makefile])
AC_CONFIG_FILES([tools/clld/Makefile])
AC_CONFIG_FILES([tools/clcc/Makefile])
AC_CONFIG_FILES([tools/clcc1/Makefile])
AC_CONFIG_FILES([tools/clnm/Makefile])
AC_CONFIG_FILES([test/Makefile])
AC_CONFIG_FILES([test/test_stdcl/Makefile])
AC_CONFIG_FILES([test/test_libcoprthr/Makefile])
AC_CONFIG_FILES([include/Makefile])
AC_CONFIG_FILES([examples/Makefile])
AC_CONFIG_FILES([examples/hello_stdcl/Makefile])
AC_CONFIG_FILES([examples/image2d_example/Makefile])
AC_CONFIG_FILES([examples/mpi_lock_example/Makefile])
AC_CONFIG_FILES([examples/clopen_example/Makefile])
AC_CONFIG_FILES([examples/clmulti_array_example/Makefile])
AC_CONFIG_FILES([examples/clvector_example/Makefile])
AC_CONFIG_FILES([examples/clete_clmulti_array_example/Makefile])
AC_CONFIG_FILES([examples/clete_clvector_example/Makefile])
AC_CONFIG_FILES([examples/bdt_em3d/Makefile])
AC_CONFIG_FILES([examples/bdt_nbody/Makefile])
AC_CONFIG_FILES([examples/bdt_nbody_tutorial/Makefile])
AC_CONFIG_FILES([examples/bdt_nbody_tutorial_2/Makefile])
AC_CONFIG_FILES([test/test_libcoprthr/scripts/run_tests.sh],[chmod +x test/test_libcoprthr/scripts/run_tests.sh])
AC_CONFIG_FILES([test/test_libcoprthr/scripts/run_quick_tests.sh],[chmod +x test/test_libcoprthr/scripts/run_quick_tests.sh])
AC_CONFIG_FILES([test/test_stdcl/scripts/run_tests.sh],[chmod +x test/test_stdcl/scripts/run_tests.sh])
AC_CONFIG_FILES([test/test_stdcl/scripts/run_quick_tests.sh],[chmod +x test/test_stdcl/scripts/run_quick_tests.sh])
AC_OUTPUT