-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·670 lines (669 loc) · 17.6 KB
/
configure
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
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
#!/bin/sh
#
# BFI configure-like script to bootstrap ATLAS's C-based config scripts
# dependencies: sed, pwd
# shell built-in deps: echo, test
#
cc=gcc
cflags="-g -w"
prefix=/usr/local/atlas
incinstdir=ATL_NoOverride
libinstdir=ATL_NoOverride
flapack=ATL_NoOverride
flapacktar=ATL_NoOverride
f77=1
aff=1
fulllapack=0
usefko=0
usetids=0
tidlist=
#
# path is configure path without trailing configure :)
#
path=`echo $0 | sed -e "s/configure$//"`
#
# blddir is present directory
#
blddir=`pwd`
#
# If on cygwin, prefix blddir with /cygdrive/[c,d]/
#
if [ -d /cygdrive ]
then
if [ -d /cygdrive/c/cygwin/$blddir ]
then
blddir=/cygdrive/c/cygwin/$blddir
else
if [ -d /cygdrive/d/cygwin/$blddir ]
then
blddir=/cygdrive/d/cygwin/$blddir
fi
fi
fi
#
# topdir is simply path if the line does not begin with "../" and is
# blddir/path otherwise
chk=`echo "$path" | sed -e "s/^\.\.\///"`
if test "$chk" = "$path"
then
topdir="$path"
else
topdir="$blddir"/"$path"
fi
#
# Error out if topdir == blddir
#
touch $blddir/TstBld973.txt
if [ -f "$topdir/TstBld973.txt" ]
then
echo "ATLAS can no longer be configured in the exact source directory,"
echo "create a subdir such as MyObj. See ATLAS/INSTALL.txt for help."
rm $blddir/TstBld973.txt
exit 1
fi
rm $blddir/TstBld973.txt
#
# grab --cc=<c comp> and --cflags=<flags> to be used to build ATLAS's ANSI C
# config.c, and save the rest of the arguments to by passed to the
# soon-to-be-built xconfig
#
#echo other args=$*
bitwidth=0
rdbitwidth=0
dylib=0
accel=0 # 1: TI_C66_BM, 2: Xeon Phi
irtarg=0
valgrind=
rtarg=
for arg in "$@"
do
handled=0
flag=`echo "$arg" | sed -e "s/--help//"`
if test "$flag" != "$arg"
then
echo "ATLAS config includes this script, and probes written in C."
echo "Therefore, configure flags are union of script and probe flags."
echo "This configure script accepts the following flags:"
echo " --force-clang=/path/to/clang : use clang not gcc all C comps"
echo " --cc=<C compiler> : compiler to compile configure probes"
echo " --cflags='<flags>' : flags for above"
echo " --prefix=<dirname> : Toplevel installation directory."
echo " Default: /usr/local/atlas"
echo " --incdir=<dirname> : Installation dir for include files"
echo " Default: $prefix/include"
echo " --libdir=<dirname> : Installation dir for libraries"
echo " Default: $prefix/lib"
echo " --rtarg=<mach> : remote cross-compile target machine"
echo " --accel=[0/1/2] : build for accelerator:"
echo " 0: Don't build for accelerator"
echo " 1: Build for TI_C66_BM"
echo " 2: Build for Xeon Phi"
echo " --shared : same as --dylibs"
echo " --dylibs : build dynamic/shared libs in addition to static libs"
echo ' --force-tids="<#> threadIDlist"'
echo " --nof77 : You have no Fortran compiler installed. Note that"
echo " this will disallow building the F77 interface, and"
echo " some of the tests (eg, standard BLAS testers)"
echo " --with-netlib-lapack-tarfile=<path to lapack tarfile>"
echo " --use-ifko : use iFKO to improve ATLAS performance"
echo " --no-affinity : do not use affinity for threads"
echo " --gcc3pass=<gcc for frontend>,<assembler>:<linker>"
echo " Provide full paths for all compilers/assemblers"
echo "Attempting to build xconfig to get probe flags:"
rm -f Makefile > /dev/null 2>&1
echo BLDdir="$blddir" >> Makefile
echo TOPdir="$topdir" >> Makefile
echo "SRCdir = \$(TOPdir)/CONFIG/src" >> Makefile
echo "INCdir = \$(TOPdir)/CONFIG/include" >> Makefile
echo "mydir = \$(BLDdir)" >> Makefile
echo XCC="$cc" >> Makefile
echo CFLAGS="$cflags" >> Makefile
echo "INCFLAGS = -I\$(INCdir)" >> Makefile
echo "MYFLAGS =" >> Makefile
echo "XCFLAGS = \$(INCFLAGS) \$(MYFLAGS) \$(CFLAGS)" >> Makefile
cat "$path"/CONFIG/src/Makefile >> Makefile
make xconfig # > /dev/null 2>&1
./xconfig --help
exit 1
fi
#
# Look for config flag -b <bidwidth>, if we find it set bitwidth to read next
# args val, but don't set handled, since flag must be passed to config as well
#
if test $rdbitwidth -eq 1
then
rdbitwidth=0
if test "$arg" -eq "64"
then
bitwidth=64
fi
if test "$arg" -eq "32"
then
bitwidth=32
fi
fi
if test "$arg" = "-b"
then
rdbitwidth=1
fi
#
#
flag=`echo "$arg" | sed -e "s/--prefix=//"`
if test "$flag" != "$arg"
then
prefix="$flag"
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--libdir=//"`
if test "$flag" != "$arg"
then
libinstdir="$flag"
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--rtarg=//"`
if test "$flag" != "$arg"
then
irtarg=1
rtarg="$flag"
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--incdir=//"`
if test "$flag" != "$arg"
then
incinstdir="$flag"
handled=1
fi
flag=`echo "$arg" | sed -e "s/--force-clang=//"`
if test "$flag" != "$arg"
then
cc=$flag
pass="$pass -C ac $flag -C gc $flag"
handled=1
fi
flag=`echo "$arg" | sed -e "s/--accel=//"`
if test "$flag" != "$arg"
then
if test "$flag" -eq "1"
then
pass="$pass -A TI_C66_BM -D c -DATL_NOPREFETCH=1"
accel=1
elif test "$flag" -eq "2"
then
accel=2
pass="$pass -A XeonPHI"
fi
handled=1
fi
flag=`echo "$arg" | sed -e "s/--cripple-atlas-performance//"`
if test "$flag" != "$arg"
then
pass="$pass -Si cripple-perf 1"
handled=1
fi
flag=`echo "$arg" | sed -e "s/--valgrind//"`
if test "$flag" != "$arg"
then
valgrind=valgrind
handled=1
fi
flag=`echo "$arg" | sed -e "s/--force-tids=//"`
if test "$flag" != "$arg"
then
usetids=1
tidlist=$flag
pass="$pass -tl $flag"
handled=1
fi
flag=`echo "$arg" | sed -e "s/--shared//"`
if test "$flag" != "$arg"
then
dylib=1
pass="$pass -D c -DATL_DYLIBS"
cflags="$cflags -DATL_DYLIBS"
handled=1
fi
flag=`echo "$arg" | sed -e "s/--dylibs//"`
if test "$flag" != "$arg"
then
dylib=1
pass="$pass -D c -DATL_DYLIBS"
cflags="$cflags -DATL_DYLIBS"
handled=1
fi
# --gcc3pass=gcc,as:lnk
flag=`echo "$arg" | sed -e "s/--gcc3pass=//"`
if test "$flag" != "$arg"
then
ccC=`echo "$flag" | sed -e "s/,.*//"`
ccA=`echo "$flag" | sed -e "s/.*,//" -e "s/:.*//"`
ccL=`echo "$flag" | sed -e "s/.*://"`
echo "#define MYGCC \"$ccC\"" > $blddir/gcc3p.c
echo "#define MYASM \"$ccA\"" >> $blddir/gcc3p.c
echo "#define MYLNK \"$ccL\"" >> $blddir/gcc3p.c
cat $topdir/CONFIG/src/gcc3p.c >> $blddir/gcc3p.c
$ccL -O -o $blddir/gcc3p $blddir/gcc3p.c
cc=$blddir/gcc3p
cflags="$cflags -DATL_GCC3P"
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--apple-is-evil=//"`
if test "$flag" != "$arg"
then
ccF=`echo "$flag" | sed -e "s/,.*//"`
ccB=`echo "$flag" | sed -e "s/.*,//"`
echo "#define MYGCC \"$ccF\"" > $blddir/gccclang.c
echo "#define MYASM \"$ccB\"" >> $blddir/gccclang.c
echo "#define MYLNK \"$ccB\"" >> $blddir/gccclang.c
cat $topdir/CONFIG/src/gnuccw.c >> $blddir/gccclang.c
$ccB -O -o $blddir/gccclang $blddir/gccclang.c
cc=$blddir/gccclang
cflags="$cflags -DATL_GCCCLANG"
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--with-netlib-lapack-tarfile=//"`
if test "$flag" != "$arg"
then
flapacktar="$flag"
pass="$pass -Si lapackref 1"
handled=1
fulllapack=1
fi
flag=`echo "$arg" | sed -e "s/--use-ifko//"`
if test "$flag" != "$arg"
then
usefko=1
pass="$pass -Si fko 1"
handled=1
fi
#
#
flag=`echo "$arg" | sed -e "s/--noaffinity//"`
if test "$flag" != "$arg"
then
aff=0
handled=1
fi
#
flag=`echo "$arg" | sed -e "s/--nof77//"`
if test "$flag" != "$arg"
then
f77=0
pass="$pass -Si nof77 1"
handled=1
fulllapack=0
fi
#
flag=`echo "$arg" | sed -e "s/--cc=//"`
if test "$flag" != "$arg"
then
cc="$flag"
handled=1
else
flag=`echo "$arg" | sed -e "s/--cflags=//"`
if test "$flag" != "$arg"
then
handled=1
if test $dylib -eq 0
then
cflags="$flag"
else
cflags="$flag -DATL_DYLIBS"
fi
fi
fi
if test $handled -eq 0
then
#
# Get rid of leading and trailing spaces
#
arg=`echo "$arg" | sed -e "s/^ +//"`
arg=`echo "$arg" | sed -e "s/ +$//"`
#
# If flag have internal spaces, surround it with ''
#
flag=`echo "$arg" | sed -e "s/ //"`
if (test "$flag" != "$arg")
then
pass="$pass '`echo "$arg"`'"
else
pass="$pass $arg"
fi
fi
done
OSGUESS=`uname`
#
# Need to do some special crap for AIX installs
#
flag=`echo "$OSGUESS" | sed -e "s/AIX//"`
if test "$flag" != "$OSGUESS"
then
if test $bitwidth -eq 64
then
export OBJECT_MODE=64
if test $cc = "gcc"
then
flag=`echo "$cflags" | sed -e "s/-maix//"`
if test "$flag" = "$cflags"
then
cflags="$cflags -maix64"
fi
fi
else
export OBJECT_MODE=32
fi
fi
if test $incinstdir = "ATL_NoOverride"
then
incinstdir='$(DESTDIR)/include'
fi
if test $libinstdir = "ATL_NoOverride"
then
libinstdir='$(DESTDIR)/lib'
fi
#
# Copy the correct ATLrun.sh over
#
if test $accel -eq 1
then
cp "$path"/CONFIG/src/ATLrun_TI.sh ATLrun.sh
elif test $irtarg -ne 0
then
echo "#!/bin/sh" > ATLrun.sh
echo "rtarg=$rtarg" >> ATLrun.sh
echo "atldir=\$1" >> ATLrun.sh
echo "shift" >> ATLrun.sh
echo "exe=\$1" >> ATLrun.sh
echo "shift" >> ATLrun.sh
echo "ssh \$rtarg \"cd \$atldir ; ./\$exe \$*\"" >> ATLrun.sh
chmod u+x ATLrun.sh
elif test $usetids -eq 1
then
echo "#!/bin/sh" > ATLrun.sh
echo "atldir=\$1" >> ATLrun.sh
echo "shift" >> ATLrun.sh
flag=`echo "$tidlist" | sed -e "s/[0-9]* // ; s/\([0-9]\) /\1,/g ; s/, *$//"`
echo "taskset -c $flag \$atldir/\$*" >> ATLrun.sh
chmod u+x ATLrun.sh
else
cp "$path"/CONFIG/src/ATLrun.sh ATLrun.sh
fi
#
# Create the Makefile and copy the compiler info file
#
echo SHELL=/bin/sh > Makefile
echo BLDdir="$blddir" >> Makefile
echo TOPdir="$topdir" >> Makefile
echo "SRCdir = \$(TOPdir)/CONFIG/src" >> Makefile
echo "INCdir = \$(TOPdir)/CONFIG/include" >> Makefile
echo "mydir = \$(BLDdir)" >> Makefile
echo XCC="$cc" >> Makefile
echo CFLAGS="$cflags" >> Makefile
echo "INCFLAGS = -I\$(INCdir)" >> Makefile
echo "MYFLAGS =" >> Makefile
echo "XCFLAGS = \$(INCFLAGS) \$(MYFLAGS) \$(CFLAGS)" >> Makefile
if test $accel -eq 2
then
echo "CC = icc" >> Makefile
echo "CCFLAGS = \$(XCFLAGS) -mmic" >> Makefile
else
echo "CC = \$(XCC)" >> Makefile
echo "CCFLAGS = \$(XCFLAGS)" >> Makefile
fi
echo DESTDIR="$prefix" >> Makefile
echo INCINSTdir="$incinstdir" >> Makefile
echo LIBINSTdir="$libinstdir" >> Makefile
if test $accel -eq 1
then
echo atlrun = atlas_runTI >> Makefile
elif test $irtarg -ne 0
then
echo atlrun = atlas_runX >> Makefile
else
echo atlrun = atlas_run >> Makefile
fi
if test $f77 -eq 0
then
fulllapack=0
echo TESTS=C_test >> Makefile
echo PTTESTS=C_pttest >> Makefile
else
echo TESTS=test >> Makefile
echo PTTESTS=pttest >> Makefile
fi
#
# Setup targets to build dynamic/shared libs if user has requested it
#
echo "def : build" >> Makefile
echo "shared : dylibs" >> Makefile
echo "dylibs:" >> Makefile
if test $dylib -ne 0
then
echo " cd lib ; \$(MAKE) shared_all" >> Makefile
fi
#
# OS X/Darwin 10.5 or later needs special clean commands to get rid of *.dSYM
# directories that gcc creates whenever -g is thrown
# If we are doing dynamic/shared libs, we also need to look for Apple's libtool
# in preference to the gnu version
#
LIBTOOL=libtool
flag=`echo "$OSGUESS" | sed -e "s/Darwin//"`
if test "$flag" != "$OSGUESS"
then
echo "CLEANdep = OSXClean" >> Makefile
if test $dylib -eq 1
then
OUTTMP=`$LIBTOOL -V`
flag=`echo "$OUTTMP" | sed -e "s/Apple//"`
if test "$flag" != "$OUTTMP"
then
OUTTMP=`/usr/bin/libtool -V`
flag=`echo "$OUTTMP" | sed -e "s/Apple//"`
if test "$flag" != "$OUTTMP"
then
LIBTOOL=/usr/bin/libtool
else
echo "Cannot find Apple libtool for making shared libraries!"
exit 10
fi
fi
fi
else
echo "CLEANdep = " >> Makefile
fi
cat "$path"/CONFIG/src/Makefile >> Makefile
flag=`echo "$OSGUESS" | sed -e "s/Darwin//"`
if test "$flag" != "$OSGUESS"
then
echo "OSXClean:" >> Makefile
echo " rm -rf *.dSYM" >> Makefile
fi
cp "$path"/CONFIG/src/atlcomp.txt .
#
# Build and run xconfig
#
make -f Makefile xconfig
echo $valgrind ./xconfig -d s "$topdir" -d b "$blddir" "$pass"
#./xconfig -d s "$topdir" -d b "$blddir" `echo "$pass"`
if test $fulllapack -eq 0
then
echo $valgrind ./xconfig -d s "$topdir" -d b "$blddir" "$pass" | /bin/sh
else
echo $valgrind ./xconfig -d s "$topdir" -d b "$blddir" "$pass" \
-D c -DATL_FULL_LAPACK | /bin/sh
fi
ierr=$?
if test $ierr -ne 0
then
echo xconfig exited with $ierr
exit $ierr
fi
#
# Build subdirectory structure and copy all makefiles
#
make -f Makefile make_subdirs
cp -f "$path"/Make.top .
cp -f "$path"/CONFIG/src/ATLrun.sh bin/.
make -f Makefile startup
if test $flapacktar != "ATL_NoOverride"
then
chk=`echo "$flapacktar" | sed -e "s/^\.\.\///"`
if test "$chk" = "$flapacktar"
then
flatar="$flapacktar"
else
flatar="$blddir"/"$flapacktar"
fi
if [ -f "$flatar" ]
then
#
# Unpack the LAPACK tarfile into $blddir/src/lapack/reftmp
#
mkdir $blddir/src/lapack/reftmp
cd $blddir/src/lapack/reftmp
flag=`echo "$flatar" | sed -e "s/\.bz2//"`
if (test "$flag" != "$flatar")
then
bunzip2 -c $blddir/$flatar | tar xf -
else
flag=`echo "$flatar" | sed -e "s/\.gz//"`
if (test "$flag" != "$flatar")
then
gunzip -c $flatar | tar xf -
else
flag=`echo "$flatar" | sed -e "s/\.tgz//"`
if (test "$flag" != "$flatar")
then
gunzip -c $flatar | tar xf -
else
tar xf $flatar
fi
fi
fi
#
# LAPACK directory name changes with version, so we untar it to a temp
# directory, and then move it to a fixed name (reference). We don't
# use tar's ability to ignore the first directory, because this doesn't
# port to all OSes tars (would require gnu-tar specifically)
# Should only be one file!
#
for file in *
do
if [ -d "$file" ]
then
mv $file ../reference
fi
done
cd ..
rm -rf reftmp
else
echo "Cannot find '$flatar'"
exit -1
fi
fi
cd $blddir
if test $flapack != "ATL_NoOverride"
then
cp -f $flapack lib/liblapack.a
ar d lib/liblapack.a lsame.o xerbla.o csrot.o zdrot.o
fi
#
# Provide INSTALL directories to lib/Makefile
#
mv lib/Makefile lib/Make.tmp
echo LIBTOOL="$LIBTOOL" > lib/Makefile
echo DESTDIR="$prefix" >> lib/Makefile
echo INCINSTdir="$incinstdir" >> lib/Makefile
echo LIBINSTdir="$libinstdir" >> lib/Makefile
#
# Create initial version of MaxMalloc based on 32/64 bit address space
#
echo "#ifndef ATL_MaxMalloc" > include/atlas_maxmalloc.h
if test $bitwidth -eq 32
then
echo " #define ATL_MaxMalloc 268435456UL" >> include/atlas_maxmalloc.h
else
echo " #define ATL_MaxMalloc 1073741824UL" >> include/atlas_maxmalloc.h
fi
echo "#endif" >> include/atlas_maxmalloc.h
#
# Create standard target for making dynamic/shared according to flags
#
if test $dylib -eq 1
then
#
# OS X uses the dylib/libtool targets
#
flag=`echo "$OSGUESS" | sed -e "s/Darwin//"`
if test "$flag" != "$OSGUESS"
then
if test $f77 -eq 0
then
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) cdylib" >> lib/Makefile
echo " - \$(MAKE) ptcdylib" >> lib/Makefile
else
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) dylib" >> lib/Makefile
echo " - \$(MAKE) ptdylib" >> lib/Makefile
fi
else
#
# Cygwin uses dll targets
#
flag=`echo "$OSGUESS" | sed -e "s/CYGWIN//"`
if test "$flag" != "$OSGUESS"
then
if test $f77 -eq 0
then
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) cdlls" >> lib/Makefile
echo " - \$(MAKE) ptcdlls" >> lib/Makefile
else
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) dlls" >> lib/Makefile
echo " - \$(MAKE) ptdlls" >> lib/Makefile
fi
#
# For everybody else, we use the .so/shared targets (only tested on Linux)
#
else
if test $f77 -eq 0
then
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) cshared" >> lib/Makefile
echo " - \$(MAKE) cptshared" >> lib/Makefile
else
echo "shared_all :" >> lib/Makefile
echo " \$(MAKE) shared" >> lib/Makefile
echo " - \$(MAKE) ptshared" >> lib/Makefile
fi
fi
fi
fi
cat lib/Make.tmp >> lib/Makefile
rm -f lib/Make.tmp
if test $usefko -eq 1
then
if [ ! -e "$topdir/iFKO" ]
then
cd $topdir
bunzip2 -c CONFIG/ARCHS/ifko.tar.bz2 | tar xfm -
cd $blddir
fi
$topdir/iFKO/fko_atlconf
cd $blddir/iFKO
make fkoc
cd $blddir
fi
#
# Determine if affinity will be used; by default yes
#
echo "#define ATL_TAFFINITY $aff" > $blddir/tune/threads/res/aff.h
echo "DONE configure"
#