Discussion:
[ast-developers] clang scan-build (static analyser) log for ast-ksh.2013-08-07 ...
Roland Mainz
2013-08-11 04:56:14 UTC
Permalink
Hi!

----

Attached (as "clang_scan_build_ast_ksh_20130807_suse123_log001.txt")
is the build log containing the warnings of a "scan-build" (see
http://clang-analyzer.llvm.org/scan-build.html) run of clang's static
analyser. Note that the warnings are _not_ compiler warnings/errors...
these are warnins created while doing a static analysis of the code...
which seems to reveal some *SERIOUS* issues in the code (I say "seems"
since there are likely lots of "false positives" in the code... may of
them caused by the custom memory allocators used by libast which
"clang" doesn't recognises as such... ;-/ ) but likely there are a
couple of real big problems, too.
And there are often "gems" like this one (dead code):
-- snip --
src/cmd/msggen/msgcvt.c:686:2: warning: Value stored to 'argv' is never read
argv += opt_info.index;
^ ~~~~~~~~~~~~~~
-- snip --

The log was created with the following command-line:
-- snip --
$ (export CC='/usr/bin/clang -std=gnu1x -g -fno-omit-frame-pointer
-fno-optimize-sibling-calls -Wno-parentheses
-Wno-logical-op-parentheses -Wno-unused' LD="$CC" CCFLAGS="-g"; time
scan-build ksh ./bin/package make PACKAGE_OPTIONS='map-libc' 2>&1 |
tee -a 'clang_scan_build_ast_ksh_20130807_suse123_log001.txt'
-- snip --

Please read the logs... some examples of "false positives" would be
nice that I can try to fix some bugs in "clang" ... and likely some in
AST, too... :-)

----

Bye,
Roland
--
__ . . __
(o.\ \/ /.o) roland.mainz at nrubsig.org
\__\/\/__/ MPEG specialist, C&&JAVA&&Sun&&Unix programmer
/O /==\ O\ TEL +49 641 3992797
(;O/ \/ \O;)
-------------- next part --------------
scan-build: Using '/usr/bin/clang-3.3' for static analysis
package: update /home/test001/work/ast_ksh_20130807/build_clang/bin/execrate
package: initialize the /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64 view
package: update /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe
package: update /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mamake
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:387:13: warning: Access to field 'buf' results in a dereference of a null pointer (loaded from variable 'buf')
buf->end = buf->buf + CHUNK;
^~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:418:4: warning: Potential leak of memory pointed to by field 'buf'
report(3, "out of space [buffer resize]", NiL, (unsigned long)0);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:418:4: warning: Potential leak of memory pointed to by field 'nxt'
report(3, "out of space [buffer resize]", NiL, (unsigned long)0);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:419:14: warning: Potential leak of memory pointed to by field 'buf'
buf->end = buf->buf + m;
^~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:422:2: warning: Null pointer passed as an argument to a 'nonnull' parameter
memcpy(buf->nxt, str, n + 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:422:2: warning: Use of memory after it is freed
memcpy(buf->nxt, str, n + 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:451:6: warning: Null pointer passed as an argument to a 'nonnull' parameter
n = strlen(s);
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:454:2: warning: Null pointer passed as an argument to a 'nonnull' parameter
strcpy(t, s);
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:543:3: warning: String copy function overflows destination buffer
strcpy(root->name, name);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:610:11: warning: Access to field 'name' results in a dereference of a null pointer (loaded from variable 'r')
r->name = (char*)search(state.rules, name, (void*)r);
~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:629:11: warning: Access to field 'rule' results in a dereference of a null pointer (loaded from variable 'x')
x->rule = p;
~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:711:35: warning: Function call argument is an uninitialized value
if (!(vp = newof(0, View_t, 1, strlen(p) + n + 1)))
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:96:99: note: expanded from macro 'newof'
#define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:713:13: warning: Access to field 'node' results in a dereference of a null pointer (loaded from variable 'vp')
vp->node = n + 1;
~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:721:19: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'zp')
zp = zp->next = vp;
~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:925:7: warning: Null pointer passed as an argument to a 'nonnull' parameter
if (!stat(path, st))
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:938:6: warning: Null pointer passed as an argument to a 'nonnull' parameter
r = stat(s, st);
^~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1050:7: warning: Access to field 'fp' results in a dereference of a null pointer (loaded from field 'sp')
if (!state.sp->fp || (state.sp->flags & STREAM_KEEP))
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1509:9: warning: Array access (from variable 's') results in a null pointer dereference
if (s[0] && (s[0] != '-' || s[1]))
^~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1995:9: warning: Potential leak of memory pointed to by field 'buf'
return 0;
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:2359:2: warning: Potential memory leak
push(state.file, (Stdio_t*)0, STREAM_MUST);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 warnings generated.
package: update /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/proto
../../lib/libast/port/astlicense.c:500:2: warning: Value stored to 'level' is never read
level = 0;
^ ~
../../lib/libast/port/astlicense.c:576:4: warning: Value stored to 'n' is never read
n = 0;
^ ~
../../lib/libpp/ppproto.c:608:12: warning: The right operand of '-' is a garbage value
n = ip - im;
^ ~~
../../lib/libpp/ppproto.c:617:8: warning: The left expression of the compound assignment is an uninitialized value. The computed value will also be garbage
im -= c;
~~ ^
../../lib/libpp/ppproto.c:910:5: warning: Value stored to 'line' is never read
line = proto->line;
^ ~~~~~~~~~~~
../../lib/libpp/ppproto.c:955:6: warning: Value stored to 'bp' is never read
bp = ip;
^ ~~
../../lib/libpp/ppproto.c:1293:9: warning: Value stored to 'om' is never read
om = (v = (op += 4)) + 1;
^ ~~~~~~~~~~~~~~~~~~~
../../lib/libpp/ppproto.c:1308:10: warning: Value stored to 'om' is never read
om = (e = ++op) + 1;
^ ~~~~~~~~~~~~~~
../../lib/libpp/ppproto.c:1476:10: warning: Value stored to 'group' is never read
group = 0;
^ ~
../../lib/libpp/ppproto.c:1790:38: warning: Value stored to 'call' is never read
do{(ip=proto->ip);(op=proto->op);call=proto->call;}while(0);
^ ~~~~~~~~~~~
../../lib/libpp/ppproto.c:1823:32: warning: The left operand of '-' is a garbage value
op = memcopy(op, m, e - m);
~ ^
../../lib/libpp/ppproto.c:1830:15: warning: The left operand of '>' is a garbage value
if (m > bp) op = memcopy(op, bp, m - bp);
~ ^
../../lib/libpp/ppproto.c:1849:32: warning: The left operand of '-' is a garbage value
op = memcopy(op, m, e - m);
~ ^
../../lib/libpp/ppproto.c:1856:15: warning: The left operand of '>' is a garbage value
if (m > bp) op = memcopy(op, bp, m - bp);
~ ^
proto.c:369:7: warning: Dereference of undefined pointer value
*e = '_';
~~~^~~~~
proto.c:371:7: warning: Assigned value is garbage or undefined
*e = x;
^ ~
16 warnings generated.
package: update /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ratz
ratz.c:3725:13: warning: Value stored to 'level' is never read
level = *p - '0';
^ ~~~~~~~~
ratz.c:3727:11: warning: Value stored to 'strategy' is never read
strategy = Z_FILTERED;
^ ~~~~~~~~~~
ratz.c:3729:11: warning: Value stored to 'strategy' is never read
strategy = Z_HUFFMAN_ONLY;
^ ~~~~~~~~~~~~~~
ratz.c:3731:11: warning: Value stored to 'strategy' is never read
strategy = Z_RLE;
^ ~~~~~
ratz.c:3946:25: warning: The left operand of '!=' is a garbage value
if (s->stream.state != NULL) {
~~~~~~~~~~~~~~~ ^
5 warnings generated.
package: update /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/release
package: make with mamake
package: make output captured in /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/package/gen/make.out
package: make start at Sun Aug 11 06:08:59 CEST 2013 in /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64
CC=cc
SHELL=/usr/bin/ksh
HOSTTYPE=linux.i386-64
NPROC=2
PACKAGEROOT=/home/test001/work/ast_ksh_20130807/build_clang
INSTALLROOT=/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64
PATH=/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ok:/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin:/home/test001/work/ast_ksh_20130807/build_clang/bin:/usr/lib64/mpi/gcc/openmpi/bin:/home/test001/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/mit/bin:/usr/lib/mit/sbin
+ mamake -r '*/*' -k install PACKAGE_OPTIONS=map-libc
+ mamake -C cmd/INIT -k PACKAGE_OPTIONS=map-libc install
probing C language processor /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/cc for mam information
+ 1> hurl
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/hurl.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/hurl.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2003-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w hurl -a -x hurl
+ chmod u+w,+x hurl
+ 1> iffe
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/iffe.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/iffe.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?Phong Vo <phongvo at gmail.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w iffe -a -x iffe
+ chmod u+w,+x iffe
+ 1> mktest
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mktest.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mktest.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2005-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w mktest -a -x mktest
+ chmod u+w,+x mktest
+ 1> package
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/package.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/package.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w package -a -x package
+ chmod u+w,+x package
+ 1> regress
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/regress.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/regress.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1995-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w regress -a -x regress
+ chmod u+w,+x regress
+ 1> rt
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/rt.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/rt.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2005-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w rt -a -x rt
+ chmod u+w,+x rt
+ 1> crossexec
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/crossexec.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/crossexec.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w crossexec -a -x crossexec
+ chmod u+w,+x crossexec
+ 1> ditto
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ditto.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ditto.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?Lefty Koutsofios <ek at research.att.com>][-copyright?Copyright (c) 2001-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w ditto -a -x ditto
+ chmod u+w,+x ditto
+ 1> execrate
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/execrate.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/execrate.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2002-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w execrate -a -x execrate
+ chmod u+w,+x execrate
+ 1> filter
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/filter.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/filter.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"
!
+ test -w filter -a -x filter
+ chmod u+w,+x filter
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ignore.sh ignore
+ test -w ignore -a -x ignore
+ chmod u+w,+x ignore
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/silent.sh silent
+ test -w silent -a -x silent
+ chmod u+w,+x silent
+ cc -g '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:387:13: warning: Access to field 'buf' results in a dereference of a null pointer (loaded from variable 'buf')
buf->end = buf->buf + CHUNK;
^~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:418:4: warning: Potential leak of memory pointed to by field 'buf'
report(3, "out of space [buffer resize]", NiL, (unsigned long)0);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:418:4: warning: Potential leak of memory pointed to by field 'nxt'
report(3, "out of space [buffer resize]", NiL, (unsigned long)0);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:419:14: warning: Potential leak of memory pointed to by field 'buf'
buf->end = buf->buf + m;
^~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:422:2: warning: Null pointer passed as an argument to a 'nonnull' parameter
memcpy(buf->nxt, str, n + 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:422:2: warning: Use of memory after it is freed
memcpy(buf->nxt, str, n + 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:451:6: warning: Null pointer passed as an argument to a 'nonnull' parameter
n = strlen(s);
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:454:2: warning: Null pointer passed as an argument to a 'nonnull' parameter
strcpy(t, s);
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:543:3: warning: String copy function overflows destination buffer
strcpy(root->name, name);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:610:11: warning: Access to field 'name' results in a dereference of a null pointer (loaded from variable 'r')
r->name = (char*)search(state.rules, name, (void*)r);
~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:629:11: warning: Access to field 'rule' results in a dereference of a null pointer (loaded from variable 'x')
x->rule = p;
~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:711:35: warning: Function call argument is an uninitialized value
if (!(vp = newof(0, View_t, 1, strlen(p) + n + 1)))
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:96:99: note: expanded from macro 'newof'
#define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:713:13: warning: Access to field 'node' results in a dereference of a null pointer (loaded from variable 'vp')
vp->node = n + 1;
~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:721:19: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'zp')
zp = zp->next = vp;
~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:925:7: warning: Null pointer passed as an argument to a 'nonnull' parameter
if (!stat(path, st))
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:938:6: warning: Null pointer passed as an argument to a 'nonnull' parameter
r = stat(s, st);
^~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1050:7: warning: Access to field 'fp' results in a dereference of a null pointer (loaded from field 'sp')
if (!state.sp->fp || (state.sp->flags & STREAM_KEEP))
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1509:9: warning: Array access (from variable 's') results in a null pointer dereference
if (s[0] && (s[0] != '-' || s[1]))
^~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:1995:9: warning: Potential leak of memory pointed to by field 'buf'
return 0;
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamake.c:2359:2: warning: Potential memory leak
push(state.file, (Stdio_t*)0, STREAM_MUST);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 warnings generated.
+ cc -g -o mamake mamake.o
+ cc -g -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/proto.c
../../lib/libast/port/astlicense.c:500:2: warning: Value stored to 'level' is never read
level = 0;
^ ~
../../lib/libast/port/astlicense.c:576:4: warning: Value stored to 'n' is never read
n = 0;
^ ~
../../lib/libpp/ppproto.c:608:12: warning: The right operand of '-' is a garbage value
n = ip - im;
^ ~~
../../lib/libpp/ppproto.c:617:8: warning: The left expression of the compound assignment is an uninitialized value. The computed value will also be garbage
im -= c;
~~ ^
../../lib/libpp/ppproto.c:910:5: warning: Value stored to 'line' is never read
line = proto->line;
^ ~~~~~~~~~~~
../../lib/libpp/ppproto.c:955:6: warning: Value stored to 'bp' is never read
bp = ip;
^ ~~
../../lib/libpp/ppproto.c:1293:9: warning: Value stored to 'om' is never read
om = (v = (op += 4)) + 1;
^ ~~~~~~~~~~~~~~~~~~~
../../lib/libpp/ppproto.c:1308:10: warning: Value stored to 'om' is never read
om = (e = ++op) + 1;
^ ~~~~~~~~~~~~~~
../../lib/libpp/ppproto.c:1476:10: warning: Value stored to 'group' is never read
group = 0;
^ ~
../../lib/libpp/ppproto.c:1790:38: warning: Value stored to 'call' is never read
do{(ip=proto->ip);(op=proto->op);call=proto->call;}while(0);
^ ~~~~~~~~~~~
../../lib/libpp/ppproto.c:1823:32: warning: The left operand of '-' is a garbage value
op = memcopy(op, m, e - m);
~ ^
../../lib/libpp/ppproto.c:1830:15: warning: The left operand of '>' is a garbage value
if (m > bp) op = memcopy(op, bp, m - bp);
~ ^
../../lib/libpp/ppproto.c:1849:32: warning: The left operand of '-' is a garbage value
op = memcopy(op, m, e - m);
~ ^
../../lib/libpp/ppproto.c:1856:15: warning: The left operand of '>' is a garbage value
if (m > bp) op = memcopy(op, bp, m - bp);
~ ^
proto.c:369:7: warning: Dereference of undefined pointer value
*e = '_';
~~~^~~~~
proto.c:371:7: warning: Assigned value is garbage or undefined
*e = x;
^ ~
16 warnings generated.
+ cc -g -o proto proto.o
+ cc -g -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c:3725:13: warning: Value stored to 'level' is never read
level = *p - '0';
^ ~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c:3727:11: warning: Value stored to 'strategy' is never read
strategy = Z_FILTERED;
^ ~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c:3729:11: warning: Value stored to 'strategy' is never read
strategy = Z_HUFFMAN_ONLY;
^ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c:3731:11: warning: Value stored to 'strategy' is never read
strategy = Z_RLE;
^ ~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/ratz.c:3946:25: warning: The left operand of '!=' is a garbage value
if (s->stream.state != NULL) {
~~~~~~~~~~~~~~~ ^
5 warnings generated.
+ cc -g -o ratz ratz.o
+ cc -g '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1994-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/release.c
+ cc -g -o release release.o
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mprobe.sh mprobe
+ test -w mprobe -a -x mprobe
+ chmod u+w,+x mprobe
+ cat /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/C+probe /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/make.probe
+ 1> probe.sh
+ cp probe.sh probe
+ test -w probe -a -x probe
+ chmod u+w,+x probe
+ test '' '=' hurl
+ /usr/bin/cmp -s hurl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/hurl
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/hurl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/hurl.old
+ 2> /dev/null
+ true
+ /bin/cp hurl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/hurl
+ test '' '=' iffe
+ /usr/bin/cmp -s iffe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/iffe
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/iffe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/iffe.old
+ 2> /dev/null
+ true
+ /bin/cp iffe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/iffe
+ test '' '=' mktest
+ /usr/bin/cmp -s mktest /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mktest
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mktest /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mktest.old
+ 2> /dev/null
+ true
+ /bin/cp mktest /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mktest
+ test '' '=' package
+ /usr/bin/cmp -s package /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/package
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/package /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/package.old
+ 2> /dev/null
+ true
+ /bin/cp package /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/package
+ test '' '=' regress
+ /usr/bin/cmp -s regress /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/regress
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/regress /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/regress.old
+ 2> /dev/null
+ true
+ /bin/cp regress /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/regress
+ test '' '=' rt
+ /usr/bin/cmp -s rt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/rt
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/rt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/rt.old
+ 2> /dev/null
+ true
+ /bin/cp rt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/rt
+ test '' '=' execrate
+ /usr/bin/cmp -s execrate /home/test001/work/ast_ksh_20130807/build_clang/bin/execrate
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/bin/execrate /home/test001/work/ast_ksh_20130807/build_clang/bin/execrate.old
+ 2> /dev/null
+ /bin/cp execrate /home/test001/work/ast_ksh_20130807/build_clang/bin/execrate
+ test '' '=' ignore
+ /usr/bin/cmp -s ignore /home/test001/work/ast_ksh_20130807/build_clang/bin/ignore
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/bin/ignore /home/test001/work/ast_ksh_20130807/build_clang/bin/ignore.old
+ 2> /dev/null
+ /bin/cp ignore /home/test001/work/ast_ksh_20130807/build_clang/bin/ignore
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/mamprobe.sh mamprobe
+ test -w mamprobe -a -x mamprobe
+ chmod u+w,+x mamprobe
+ test '' '=' mamprobe
+ /usr/bin/cmp -s mamprobe /home/test001/work/ast_ksh_20130807/build_clang/bin/mamprobe
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/bin/mamprobe /home/test001/work/ast_ksh_20130807/build_clang/bin/mamprobe.old
+ 2> /dev/null
+ /bin/cp mamprobe /home/test001/work/ast_ksh_20130807/build_clang/bin/mamprobe
+ test '' '=' package
+ /usr/bin/cmp -s package /home/test001/work/ast_ksh_20130807/build_clang/bin/package
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/bin/package /home/test001/work/ast_ksh_20130807/build_clang/bin/package.old
+ 2> /dev/null
+ /bin/cp package /home/test001/work/ast_ksh_20130807/build_clang/bin/package
+ test '' '=' silent
+ /usr/bin/cmp -s silent /home/test001/work/ast_ksh_20130807/build_clang/bin/silent
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/bin/silent /home/test001/work/ast_ksh_20130807/build_clang/bin/silent.old
+ 2> /dev/null
+ /bin/cp silent /home/test001/work/ast_ksh_20130807/build_clang/bin/silent
+ test '' '=' crossexec
+ /usr/bin/cmp -s crossexec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/crossexec
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/crossexec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/crossexec.old
+ 2> /dev/null
+ true
+ /bin/cp crossexec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/crossexec
+ test '' '=' ditto
+ /usr/bin/cmp -s ditto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ditto
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ditto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ditto.old
+ 2> /dev/null
+ true
+ /bin/cp ditto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ditto
+ test '' '=' filter
+ /usr/bin/cmp -s filter /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/filter
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/filter /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/filter.old
+ 2> /dev/null
+ true
+ /bin/cp filter /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/filter
+ test '' '=' package.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/package.mk /home/test001/work/ast_ksh_20130807/build_clang/lib/package/package.mk
+ 2> /dev/null
+ test '' '=' CONVERT.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/CONVERT.mk /home/test001/work/ast_ksh_20130807/build_clang/lib/package/CONVERT.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/lib/package/CONVERT.mk /home/test001/work/ast_ksh_20130807/build_clang/lib/package/CONVERT.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/CONVERT.mk /home/test001/work/ast_ksh_20130807/build_clang/lib/package/CONVERT.mk
+ test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make
+ test '' '=' package.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/package.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/package.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/package.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/package.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/package.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/package.mk
+ test '' '=' PROBE.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/PROBE.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/PROBE.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/PROBE.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/PROBE.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/PROBE.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/PROBE.mk
+ test '' '=' TEST.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/TEST.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/TEST.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/TEST.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/TEST.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/TEST.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/TEST.mk
+ test '' '=' WWW.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/WWW.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/WWW.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/WWW.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/WWW.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/WWW.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/WWW.mk
+ test '' '=' MSGFUN.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MSGFUN.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGFUN.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGFUN.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGFUN.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MSGFUN.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGFUN.mk
+ test '' '=' MSGKEY.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MSGKEY.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGKEY.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGKEY.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGKEY.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MSGKEY.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MSGKEY.mk
+ test '' '=' MAPLIB.mk
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MAPLIB.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MAPLIB.mk
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MAPLIB.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MAPLIB.mk.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/MAPLIB.mk /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/make/MAPLIB.mk
+ test '' '=' mamake
+ /usr/bin/cmp -s mamake /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mamake
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mamake /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mamake.old
+ 2> /dev/null
+ /bin/cp mamake /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mamake
+ test '' '=' proto
+ /usr/bin/cmp -s proto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/proto
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/proto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/proto.old
+ 2> /dev/null
+ /bin/cp proto /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/proto
+ test '' '=' ratz
+ /usr/bin/cmp -s ratz /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ratz
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ratz /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ratz.old
+ 2> /dev/null
+ /bin/cp ratz /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ratz
+ test '' '=' release
+ /usr/bin/cmp -s release /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/release
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/release /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/release.old
+ 2> /dev/null
+ /bin/cp release /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/release
+ test ! -x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/mkdir -a -x /bin/mkdir
+ mkdir -p
+ 2> /dev/null
+ :
+ test -d ./-p
+ test '' '=' C+probe
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/C+probe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/probe
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/probe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/probe.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/C+probe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/probe
+ test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/pp
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/pp
+ test '' '=' mprobe
+ /usr/bin/cmp -s mprobe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/probe
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/probe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/probe.old
+ 2> /dev/null
+ true
+ /bin/cp mprobe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/probe
+ test '' '=' mprobe
+ /usr/bin/cmp -s mprobe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/mprobe
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/mprobe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/mprobe.old
+ 2> /dev/null
+ true
+ /bin/cp mprobe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/mam/mprobe
+ test '' '=' probe
+ /usr/bin/cmp -s probe /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe
+ 2> /dev/null
+ t=linux.i386-64
+ ifs=$' \t\n'
+ IFS=.
+ set x linux i386-64
+ IFS=$' \t\n'
+ t=linux
+ set x /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/INIT/probe.win32
+ :
+ shift
+ :
+ shift
+ break
+ :
+ 1> probe.ini
+ test '' '=' probe.ini
+ /usr/bin/cmp -s probe.ini /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe.ini
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe.ini /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe.ini.old
+ 2> /dev/null
+ true
+ /bin/cp probe.ini /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/probe/C/make/probe.ini
+ test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast
+ proto -f /dev/null
+ 1> h.49232.h
+ cmp -s h.49232.h prototyped.h
+ 2> /dev/null
+ mv h.49232.h prototyped.h
+ test '' '=' prototyped.h
+ /usr/bin/cmp -s prototyped.h /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/prototyped.h
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/prototyped.h /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/prototyped.h.old
+ 2> /dev/null
+ true
+ /bin/cp prototyped.h /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/prototyped.h
+ test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib
+ test '' '=' dl.req
+ /usr/bin/cmp -s dl.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dl
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dl.old
+ 2> /dev/null
+ true
+ /bin/cp dl.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dl
+ test '' '=' iconv.req
+ /usr/bin/cmp -s iconv.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/iconv
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/iconv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/iconv.old
+ 2> /dev/null
+ true
+ /bin/cp iconv.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/iconv
+ test '' '=' w.req
+ /usr/bin/cmp -s w.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/w
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/w /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/w.old
+ 2> /dev/null
+ true
+ /bin/cp w.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/w
+ test '' '=' intl.req
+ /usr/bin/cmp -s intl.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/intl
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/intl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/intl.old
+ 2> /dev/null
+ true
+ /bin/cp intl.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/intl
+ test '' '=' m.req
+ /usr/bin/cmp -s m.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/m
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/m /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/m.old
+ 2> /dev/null
+ true
+ /bin/cp m.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/m
+ test '' '=' socket.req
+ /usr/bin/cmp -s socket.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/socket
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/socket /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/socket.old
+ 2> /dev/null
+ true
+ /bin/cp socket.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/socket
+ test '' '=' dbm.req
+ /usr/bin/cmp -s dbm.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dbm
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dbm /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dbm.old
+ 2> /dev/null
+ true
+ /bin/cp dbm.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dbm
+ mamake -C lib/libast -k PACKAGE_OPTIONS=map-libc install
probing C language processor /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/cc for mam information
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/standards
iffe: test: is sys/types.h a header ... yes
iffe: test: _ALL_SOURCE & _POSIX_SOURCE & _POSIX_C_SOURCE & _XOPEN_SOURCE & _GNU_SOURCE & __EXTENSIONS__ works ... yes
iffe: test: is -lm a library ... yes
iffe: test: _ISOC99_SOURCE plays nice ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/lib
iffe: test: is sys/types.h a header ... yes
iffe: test: is universe a command ... no
iffe: test: is dirent.h a header ... yes
iffe: test: is direntry.h a header ... no
iffe: test: is filio.h a header ... no
iffe: test: is fmtmsg.h a header ... yes
iffe: test: is fnmatch.h a header ... yes
iffe: test: is jioctl.h a header ... no
iffe: test: is libgen.h a header ... yes
iffe: test: is limits.h a header ... yes
iffe: test: is locale.h a header ... yes
iffe: test: is ndir.h a header ... no
iffe: test: is nl_types.h a header ... yes
iffe: test: is process.h a header ... no
iffe: test: is syslog.h a header ... yes
iffe: test: is utime.h a header ... yes
iffe: test: is vfork.h a header ... no
iffe: test: is netdb.h a header ... yes
iffe: test: is netinet/in.h a header ... yes
iffe: test: <wchar.h> and isw*() really work ... yes
iffe: test: is wchar.h a header ... yes
iffe: test: is wctype.h a header ... yes
iffe: test: is _tzname a library data symbol ... no
iffe: test: is tzname a library data symbol ... yes
iffe: test: is fcntl.h a header ... yes
iffe: test: is AT_FDCWD a macro ... yes
iffe: test: is BSDsetpgrp a library function ... no
iffe: test: is _cleanup a library function ... no
iffe: test: is atexit a library function ... yes
iffe: test: is bcopy a library function ... yes
iffe: test: is bzero a library function ... yes
iffe: test: is catclose a library function ... yes
iffe: test: is catgets a library function ... yes
iffe: test: is catopen a library function ... yes
iffe: test: is confstr a library function ... yes
iffe: test: is dirread a library function ... no
iffe: test: is dup2 a library function ... yes
iffe: test: is execlp a library function ... yes
iffe: test: is execve a library function ... yes
iffe: test: is execvp a library function ... yes
iffe: test: is execvpe a library function ... yes
iffe: test: is fchmod a library function ... yes
iffe: test: is fcntl a library function ... yes
iffe: test: is fmtmsg a library function ... yes
iffe: test: is fnmatch a library function ... yes
iffe: test: is fork a library function ... yes
iffe: test: is fsync a library function ... yes
iffe: test: is -lsocket a library ... no
iffe: test: is getaddrinfo a library function ... yes
iffe: test: is getconf a library function ... no
iffe: test: is getdents a library function ... no
iffe: test: is getdirentries a library function ... yes
iffe: test: is getdtablesize a library function ... yes
iffe: test: is getdate a library function ... yes
iffe: test: is getgroups a library function ... yes
iffe: test: is gethostname a library function ... yes
iffe: test: is getlogin a library function ... yes
iffe: test: is getpagesize a library function ... yes
iffe: test: is getrlimit a library function ... yes
iffe: test: is getuniverse a library function ... no
iffe: test: is getopt a library function ... yes
iffe: test: is getsubopt a library function ... yes
iffe: test: is getopt_long a library function ... yes
iffe: test: is getopt_long_only a library function ... yes
iffe: test: is glob a library function ... yes
iffe: test: is index a library function ... yes
iffe: test: is iswblank a library function ... yes
iffe: test: is iswctype a library function ... yes
iffe: test: is killpg a library function ... yes
iffe: test: is link a library function ... yes
iffe: test: is localeconv a library function ... yes
iffe: test: is madvise a library function ... yes
iffe: test: is sys/socket.h a header ... yes
iffe: test: is htons a library function ... yes
iffe: test: is htonl a library function ... yes
iffe: test: is mbtowc a library function ... yes
iffe: test: is mbrtowc a library function ... yes
iffe: test: is memalign a library function ... yes
iffe: test: is memchr a library function ... yes
iffe: test: is memcpy a library function ... yes
iffe: test: is memdup a library function ... no
iffe: test: is memmove a library function ... yes
iffe: test: is memset a library function ... yes
iffe: test: is mkdir a library function ... yes
iffe: test: is mkfifo a library function ... yes
iffe: test: is mktemp a library function ... yes
iffe: test: is mktime a library function ... yes
iffe: test: is mount a library function ... yes
iffe: test: is on_exit a library function ... yes
iffe: test: is onexit a library function ... no
iffe: test: is opendir a library function ... yes
iffe: test: is pathconf a library function ... yes
iffe: test: is pipe2 a library function ... yes
iffe: test: is readlink a library function ... yes
iffe: test: is remove a library function ... yes
iffe: test: is rename a library function ... yes
iffe: test: is rewinddir a library function ... yes
iffe: test: is rindex a library function ... yes
iffe: test: is rmdir a library function ... yes
iffe: test: is setlocale a library function ... yes
iffe: test: is setpgid a library function ... yes
iffe: test: is setpgrp a library function ... yes
iffe: test: is setpgrp2 a library function ... no
iffe: test: is setregid a library function ... yes
iffe: test: is setreuid a library function ... yes
iffe: test: is setsid a library function ... yes
iffe: test: is setuid a library function ... yes
iffe: test: is sigaction a library function ... yes
iffe: test: is sigprocmask a library function ... yes
iffe: test: is sigsetmask a library function ... yes
iffe: test: is sigunblock a library function ... no
iffe: test: is sigvec a library function ... yes
iffe: test: is strchr a library function ... yes
iffe: test: is strcoll a library function ... yes
iffe: test: is strdup a library function ... yes
iffe: test: is strerror a library function ... yes
iffe: test: is strcasecmp a library function ... yes
iffe: test: is strncasecmp a library function ... yes
iffe: test: is strrchr a library function ... yes
iffe: test: is strstr a library function ... yes
iffe: test: is strmode a library function ... no
iffe: test: is strxfrm a library function ... yes
iffe: test: is strftime a library function ... yes
iffe: test: is swab a library function ... yes
iffe: test: is symlink a library function ... yes
iffe: test: is sysconf a library function ... yes
iffe: test: is sysinfo a library function ... yes
iffe: test: is syslog a library function ... yes
iffe: test: is telldir a library function ... yes
iffe: test: is tmpnam a library function ... yes
iffe: test: is tzset a library function ... yes
iffe: test: is universe a library function ... no
iffe: test: is unlink a library function ... yes
iffe: test: is utime a library function ... yes
iffe: test: is wctype a library function ... yes
iffe: test: is ftruncate a library function ... yes
iffe: test: is truncate a library function ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is creat64 a library function ... yes
iffe: test: is ftruncate64 a library function ... yes
iffe: test: is lseek64 a library function ... yes
iffe: test: is open64 a library function ... yes
iffe: test: is truncate64 a library function ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is fstat64 a library function ... yes
iffe: test: is lstat64 a library function ... yes
iffe: test: is stat64 a library function ... yes
iffe: test: is sys/statvfs.h a header ... yes
iffe: test: is fstatvfs64 a library function ... yes
iffe: test: is statvfs64 a library function ... yes
iffe: test: is opendir64 a library function ... no
iffe: test: is readdir64 a library function ... yes
iffe: test: is rewinddir64 a library function ... no
iffe: test: is seekdir64 a library function ... no
iffe: test: is telldir64 a library function ... no
iffe: test: is closedir64 a library function ... no
iffe: test: is accept4 a library function ... yes
iffe: test: is socketpair a library function ... yes
iffe: test: is faccessat a library function ... yes
iffe: test: is fchmodat a library function ... yes
iffe: test: is fchownat a library function ... yes
iffe: test: is fstatat a library function ... yes
iffe: test: is linkat a library function ... yes
iffe: test: is mkdirat a library function ... yes
iffe: test: is mkfifoat a library function ... yes
iffe: test: is mknodat a library function ... yes
iffe: test: is openat a library function ... yes
iffe: test: is readlinkat a library function ... yes
iffe: test: is renameat a library function ... yes
iffe: test: is symlinkat a library function ... yes
iffe: test: is unlinkat a library function ... yes
iffe: test: is fstatat64 a library function ... yes
iffe: test: is openat64 a library function ... yes
iffe: test: lchmod implemented ... no
iffe: test: lchown implemented ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is strtod a library function ... yes
iffe: test: is strtold a library function ... yes
iffe: test: is strtol a library function ... yes
iffe: test: is strtoll a library function ... yes
iffe: test: is strtoul a library function ... yes
iffe: test: is strtoull a library function ... yes
iffe: test: is strtod a symbol that needs a prototype ... no
iffe: test: is strtold a symbol that needs a prototype ... no
iffe: test: is strtol a symbol that needs a prototype ... no
iffe: test: is strtoll a symbol that needs a prototype ... no
iffe: test: is strtoul a symbol that needs a prototype ... no
iffe: test: is strtoull a symbol that needs a prototype ... no
iffe: test: is signal.h a header ... yes
iffe: test: is sigflag a library function ... no
iffe: test: is sigflag a symbol that needs a prototype ... yes
iffe: test: is sys/dir.h a header ... yes
iffe: test: is direct a type or typedef ... no
iffe: test: is d_reclen a member of struct direct ... yes
iffe: test: is dirent a type or typedef ... no
iffe: test: is d_fileno a member of struct dirent ... yes
iffe: test: is d_ino a member of struct dirent ... yes
iffe: test: is d_namlen a member of struct dirent ... no
iffe: test: is d_off a member of struct dirent ... yes
iffe: test: is d_reclen a member of struct dirent ... yes
iffe: test: is d_type a member of struct dirent ... yes
iffe: test: is DIR a type or typedef ...
iffe: test: is struct DIR a non-opaque struct ...
iffe: test: is struct DIR a non-opaque struct ... no
iffe: test: is dd_fd a member of struct DIR ...
iffe: test: is dd_fd a member of struct DIR ... no
iffe: test: is flock a type or typedef ... no
iffe: test: is l_type a member of struct flock ... yes
iffe: test: is sys/filio.h a header ... no
iffe: test: is sys/jioctl.h a header ... no
iffe: test: is sys/localedef.h a header ... no
iffe: test: is sys/ptem.h a header ... no
iffe: test: is sys/resource.h a header ... yes
iffe: test: is sys/stream.h a header ... no
iffe: test: is sys/systeminfo.h a header ... no
iffe: test: is sys/universe.h a header ... no
iffe: test: is sys/vfork.h a header ... no
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is ino64_t a type or typedef ... yes
iffe: test: is off64_t a type or typedef ... yes
iffe: test: is struct dirent64 a type or typedef ... yes
iffe: test: is DIR64 a type or typedef ... no
iffe: test: errno can be assigned ... yes
iffe: test: fd is first arg to poll() ... yes
iffe: test: fd is second arg to poll() ... no
iffe: test: is _lib_poll_fd_1||_lib_poll_fd_2 true ... yes
iffe: test: poll with no fds ignores timeout ... no
iffe: test: is sys/select.h a header ... yes
iffe: test: select() has standard 5 arg interface ... yes
iffe: test: select() requires <sys/select.h> ... yes
iffe: test: full duplex pipes ... no
iffe: test: vfork exists and it works ... yes
iffe: test: vfork child shares data with parent ... yes
iffe: test: ioctl(I_PEEK) works on pipe() ... no
iffe: test: recv(MSG_PEEK) works on socketpair() ... yes
iffe: test: is string.h a header ... yes
iffe: test: standard memcmp interface that works ... yes
iffe: test: is sys/mman.h a header ... yes
iffe: test: standard memccpy interface that works ... yes
iffe: test: utime works with 0 time vector ... yes
iffe: test: cross{ ... }end ... yes
iffe: test: stuck with standard _cleanup ... yes
iffe: test: stuck with standard remove() ... no
iffe: test: stuck with standard signal ... no
iffe: test: standard strcoll works ... yes
iffe: test: stuck with standard strtod ... no
iffe: test: stuck with standard strtold ... no
iffe: test: stuck with standard strtol ... no
iffe: test: [ pid ] + fd + directory path format ... yes
iffe: test: output{ ... }end ... yes
iffe: test: largefile 64 broken ... no
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/common
iffe: test: is sys/types.h a header ... yes
iffe: test: is pthread.h a header ... yes
iffe: test: is stdarg.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdint.h a header ... yes
iffe: test: is inttypes.h a header ... yes
iffe: test: is types.h a header ... no
iffe: test: is unistd.h a header ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is long double a type or typedef ... yes
iffe: test: is size_t a type or typedef ... yes
iffe: test: is ssize_t a type or typedef ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is __va_list a type or typedef ... no
iffe: test: is sys/stat.h a header ... yes
iffe: test: is sys/socket.h a header ... yes
iffe: test: is SF_APPEND a macro ... no
iffe: test: is SF_CLOSE a macro ... no
iffe: test: Microsoft import/export nonsense ... no
iffe: test: standard C prototypes ok ... yes
iffe: test: standard C void* ok ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: <stdarg.h>+<wchar.h> works ... yes
iffe: test: LL numeric suffix supported ... yes
iffe: test: output{ ... }end ... yes
iffe: test: output{ ... }end ... yes
iffe: test: output{ ... }end ... yes
iffe: test: is int8_t a type or typedef ... yes
iffe: test: is uint8_t a type or typedef ... yes
iffe: test: is int16_t a type or typedef ... yes
iffe: test: is uint16_t a type or typedef ... yes
iffe: test: is int32_t a type or typedef ... yes
iffe: test: is uint32_t a type or typedef ... yes
iffe: test: is int64_t a type or typedef ... yes
iffe: test: is uint64_t a type or typedef ... yes
iffe: test: is intmax_t a type or typedef ... yes
iffe: test: is uintmax_t a type or typedef ... yes
iffe: test: is uintptr_t a type or typedef ... yes
iffe: test: is _Bool a type or typedef ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: is -lpthread a library ... yes
iffe: test: __thread keyword exists and works with -lpthread ... yes
iffe: test: output{ ... }end ...
iffe: test: output{ ... }end ...
iffe: test: output{ ... }end ...
iffe: test: output{ ... }end ...
iffe: test: output{ ... }end ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: run{ ... }end ... no
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/api
iffe: test: is sys/types.h a header ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/eaccess
iffe: test: is sys/types.h a header ... yes
iffe: test: is eaccess a library function ... yes
iffe: test: is euidaccess a library function ... yes
iffe: test: macro{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/mmap
iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/mman.h a header ... yes
iffe: test: standard mmap interface that works ... yes
iffe: test: mmap64 interface and implementation work ... yes
iffe: test: use mmap MAP_ANON to get raw memory ... yes
iffe: test: use mmap on /dev/zero to get raw memory ... yes
iffe: test: mmap is worth using ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/vmalloc
iffe: test: is sys/types.h a header ... yes
iffe: test: is atexit a library function ... yes
iffe: test: is getpagesize a library function ... yes
iffe: test: is mallinfo a library function ... yes
iffe: test: is mallopt a library function ... yes
iffe: test: is memalign a library function ... yes
iffe: test: is mstats a library function ... no
iffe: test: is onexit a library function ... no
iffe: test: is pvalloc a library function ... yes
iffe: test: is strdup a library function ... yes
iffe: test: is valloc a library function ... yes
iffe: test: is vmalloc a library function ... no
iffe: test: is _malloc a library function ... no
iffe: test: is __malloc a library function ... no
iffe: test: is __libc_malloc a library function ... yes
iffe: test: is alloca.h a header ... yes
iffe: test: is malloc.h a header ... yes
iffe: test: is stat.h a header ... no
iffe: test: is stdlib.h a header ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is mallinfo a type or typedef ... no
iffe: test: is arena a member of struct mallinfo ... yes
iffe: test: is mstats a type or typedef ... no
iffe: test: is bytes_total a member of struct mstats ... no
iffe: test: is sys/stat.h a header ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is ssize_t a type or typedef ... yes
iffe: test: sbrk() works as expected ... yes
iffe: test: map malloc to _ast_malloc ... no
iffe: test: map malloc to _ast_malloc -- wimp-o mach? ... no
iffe: test: alloca exists ... yes
iffe: test: alloca is based on malloc() ... no
iffe: test: stack grows downward ... yes
iffe: test: gnu malloc hooks work ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/options
iffe: test: is sys/types.h a header ... yes
iffe: test: is map-libc set in $PACKAGE_OPTIONS ... no
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/map.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/map.c ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/map.c ... yes
+ cmp -s FEATURE/map ast_map.h
+ 2> /dev/null
+ rm -f ast_map.h
+ silent test -d .
+ /bin/cp FEATURE/map ast_map.h
+ sed '/define _def_map_ast/d'
+ 0< FEATURE/common 1> 1.57831.x
+ cmp -s ast_common.h 1.57831.x
+ 2> /dev/null
+ mv 1.57831.x ast_common.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/param.sh
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/param.sh ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/param.sh ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/aso
iffe: test: is sys/types.h a header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: gcc 4.1+ 64 bit memory atomic operations model ... yes
iffe: test: cat{ ... }end ... yes
+ 1> conf
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/conf.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/conf.sh
+ 0<< \!
HOSTTYPE="linux.i386-64"
!
+ silent test -w conf -a -x conf
+ chmod u+w,+x conf
+ /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/src/lib/libast/conf -v /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/conf.tab cc -D_BLD_DLL -fPIC -D_BLD_ast -g
conf: read /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/conf.tab
conf: check /usr/bin/getconf(1),confstr(2),pathconf(2),sysconf(2),sysinfo(2) configuration names
conf: check macros/enums as static initializers
conf: probe for ABI_AIO_XFER_MAX <limits.h> value
conf: probe for ABI_ASYNCHRONOUS_IO <limits.h> value
conf: probe for ABI_ASYNC_IO <limits.h> value
conf: probe for AUDIT <limits.h> value
conf: probe for AVAIL_PROCESSORS <limits.h> value
conf: probe for CHAR_BIT <limits.h> value
conf: probe for CHAR_MAX <limits.h> value
conf: probe for CHAR_MIN <limits.h> value
conf: probe for CHILD_MAX <limits.h> value
conf: probe for CLOCKS_PER_SEC <limits.h> value
conf: probe for CPU_KEYBITS1 <limits.h> value
conf: probe for CPU_VERSION <limits.h> value
conf: probe for EXEC_INTERPRETER_LENGTH <limits.h> value
conf: probe for HOSTID <limits.h> value
conf: probe for HW_SERIAL <limits.h> value
conf: probe for INT_MIN <limits.h> value
conf: probe for IO_TYPE <limits.h> value
conf: probe for IP_SECOPTS <limits.h> value
conf: probe for _POSIX_JOB_CONTROL minmax value
conf: probe for KERN_POINTERS <limits.h> value
conf: probe for KERN_SIM <limits.h> value
conf: probe for _POSIX_LFS_CFLAGS minmax value
conf: probe for LLONG_MAX <limits.h> value
conf: probe for LLONG_MIN <limits.h> value
conf: probe for LONG_MAX <limits.h> value
conf: probe for LONG_MIN <limits.h> value
conf: probe for MB_LEN_MAX <limits.h> value
conf: probe for MCAS_OFFSET <limits.h> value
conf: probe for MIN_HOLE_SIZE <limits.h> value
conf: probe for MMAP_FIXED_ALIGNMENT <limits.h> value
conf: probe for MSEM_LOCKID <limits.h> value
conf: probe for NL_MAX <limits.h> value
conf: probe for NL_SPECMAX <limits.h> value
conf: probe for NPROC_CONF <limits.h> value
conf: probe for NPROC_ONLN <limits.h> value
conf: probe for NSS_BUFLEN_GROUP <limits.h> value
conf: probe for NSS_BUFLEN_PASSWD <limits.h> value
conf: probe for NUM_PROCESSORS <limits.h> value
conf: probe for OPEN_MAX <limits.h> value
conf: probe for OPEN_MAX_CEIL <limits.h> value
conf: probe for OSREL_MAJ <limits.h> value
conf: probe for OSREL_MIN <limits.h> value
conf: probe for OSREL_PATCH <limits.h> value
conf: probe for _POSIX_PAGESIZE minmax value
conf: probe for PID_MAX <limits.h> value
conf: probe for _SVID_PID_MAX minmax value
conf: probe for PROC_RSRC_MGR <limits.h> value
conf: probe for PTHREAD_THREADS_MAX <limits.h> value
conf: probe for PTRDIFF_MAX <limits.h> value
conf: probe for PTRDIFF_MIN <limits.h> value
conf: probe for RELEASE <limits.h> value
conf: probe for _POSIX_SAVED_IDS minmax value
conf: probe for SCHAR_MAX <limits.h> value
conf: probe for SCHAR_MIN <limits.h> value
conf: probe for SECURITY_CLASS <limits.h> value
conf: probe for _AST_SF_BUFSIZE minmax value
conf: probe for _AST_SH minmax value
conf: probe for SHRT_MIN <limits.h> value
conf: probe for SIG_ATOMIC_MAX <limits.h> value
conf: probe for SIG_ATOMIC_MIN <limits.h> value
conf: probe for SLVM_MAXNODES <limits.h> value
conf: probe for SOFTPOWER <limits.h> value
conf: probe for STD_BLK <limits.h> value
conf: probe for SYSPID_MAX <limits.h> value
conf: probe for TMP_MAX <limits.h> value
conf: probe for UCHAR_MAX <limits.h> value
conf: probe for UCHAR_MIN <limits.h> value
conf: probe for UID_MAX <limits.h> value
conf: probe for ULLONG_MAX <limits.h> value
conf: probe for ULONG_MAX <limits.h> value
conf: probe for USHRT_MAX <limits.h> value
conf: probe for VERSION_88 <limits.h> value
conf: probe for VERSION_88 <limits.h> value
conf: probe for VERSION_90 <limits.h> value
conf: probe for VERSION_90 <limits.h> value
conf: probe for VERSION_93 <limits.h> value
conf: probe for VERSION_93 <limits.h> value
conf: probe for WCHAR_MAX <limits.h> value
conf: probe for WCHAR_MIN <limits.h> value
conf: probe for WINT_MAX <limits.h> value
conf: probe for WINT_MIN <limits.h> value
conf: generate conftab.h string table header
conf: generate conftab.c string table
conf: generate conflim.h supplemental <limits.h> values
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/limits.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/limits.c ...
./suse59138.c:141:2: warning: Value stored to 'uc' is never read
uc = ~uc;
^ ~~~
./suse59138.c:150:2: warning: Value stored to 'ull' is never read
ull = ~ull;
^ ~~~~
2 warnings generated.
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/limits.c ... yes
+ cmp -s FEATURE/limits ast_limits.h
+ 2> /dev/null
+ rm -f ast_limits.h
+ silent test -d .
+ /bin/cp FEATURE/limits ast_limits.h
+ cmp -s FEATURE/api ast_api.h
+ 2> /dev/null
+ rm -f ast_api.h
+ silent test -d .
+ /bin/cp FEATURE/api ast_api.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/wctype
iffe: test: is sys/types.h a header ... yes
iffe: test: is wctype an include path for the native header ... yes
iffe: test: run{ ... }end ... yes
+ cmp -s FEATURE/wctype ast_wctype.h
+ 2> /dev/null
+ rm -f ast_wctype.h
+ silent test -d .
+ /bin/cp FEATURE/wctype ast_wctype.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/wchar
iffe: test: is sys/types.h a header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is wchar.h a header ... yes
iffe: test: is mbstowcs a library function ... yes
iffe: test: is wctomb a library function ... yes
iffe: test: is wcrtomb a library function ... yes
iffe: test: is wcscmp a library function ... yes
iffe: test: is wcscoll a library function ... yes
iffe: test: is wcslen a library function ... yes
iffe: test: is wcstombs a library function ... yes
iffe: test: is wcsxfrm a library function ... yes
iffe: test: is wcwidth a library function ... yes
iffe: test: is towlower a library function ... yes
iffe: test: is towupper a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is mbstate_t a type or typedef ... yes
iffe: test: is wchar an include path for the native header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: <wchar.h> requires native <stdio.h> ... yes
iffe: test: <stdio.h> defines __va_list for <wchar.h> ... no
iffe: test: is wctype.h a header ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is iswalpha a symbol that needs a prototype ... yes
iffe: test: run{ ... }end ... yes
+ cmp -s FEATURE/wchar ast_wchar.h
+ 2> /dev/null
+ rm -f ast_wchar.h
+ silent test -d .
+ /bin/cp FEATURE/wchar ast_wchar.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sys
iffe: test: is sys/types.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdint.h a header ... yes
iffe: test: is inttypes.h a header ... yes
iffe: test: is string.h a header ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is limits.h a header ... yes
iffe: test: is fcntl.h a header ... yes
iffe: test: is locale.h a header ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is dev_t a type or typedef ... yes
iffe: test: is nlink_t a type or typedef ... yes
iffe: test: is gid_t a type or typedef ... yes
iffe: test: is mode_t a type or typedef ... yes
iffe: test: is uid_t a type or typedef ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is wchar.h a header ... yes
iffe: test: is wchar_t a type or typedef ... yes
iffe: test: is pid_t a type or typedef ... yes
iffe: test: is ssize_t a type or typedef ... yes
iffe: test: is wint_t a type or typedef ... yes
iffe: test: is sys/socket.h a header ... yes
iffe: test: is socklen_t a type or typedef ... yes
iffe: test: is size_t a type or typedef ... yes
iffe: test: is clock_t a type or typedef ... yes
iffe: test: is ino_t a type or typedef ... yes
iffe: test: is off_t a type or typedef ... yes
iffe: test: is ptrdiff_t a type or typedef ... yes
iffe: test: is time_t a type or typedef ... yes
iffe: test: is div_t a type or typedef ... yes
iffe: test: is ldiv_t a type or typedef ... yes
iffe: test: output{ ... }end ... no
iffe: test: is offsetof a macro ... yes
iffe: test: is EXIT_FAILURE a macro ... yes
iffe: test: is EXIT_SUCCESS a macro ... yes
iffe: test: is MB_CUR_MAX a macro ... yes
iffe: test: is RAND_MAX a macro ... yes
iffe: test: is STDIN_FILENO a macro ... yes
iffe: test: is STDOUT_FILENO a macro ... yes
iffe: test: is STDERR_FILENO a macro ... yes
iffe: test: is NULL a macro ... yes
iffe: test: is SEEK_SET a macro ... yes
iffe: test: is SEEK_CUR a macro ... yes
iffe: test: is SEEK_END a macro ... yes
iffe: test: is F_OK a macro ... yes
iffe: test: is X_OK a macro ... yes
iffe: test: is W_OK a macro ... yes
iffe: test: is R_OK a macro ... yes
iffe: test: is spawnvex a library function ... no
iffe: test: is _exit a symbol that needs a prototype ... no
iffe: test: is abort a symbol that needs a prototype ... no
iffe: test: is abs a symbol that needs a prototype ... no
iffe: test: is access a symbol that needs a prototype ... no
iffe: test: is alarm a symbol that needs a prototype ... no
iffe: test: is atexit a symbol that needs a prototype ... no
iffe: test: is atof a symbol that needs a prototype ... no
iffe: test: is atoi a symbol that needs a prototype ... no
iffe: test: is atol a symbol that needs a prototype ... no
iffe: test: is bsearch a symbol that needs a prototype ... no
iffe: test: is calloc a symbol that needs a prototype ... no
iffe: test: is cfree a symbol that needs a prototype ... no
iffe: test: is chdir a symbol that needs a prototype ... no
iffe: test: is chown a symbol that needs a prototype ... no
iffe: test: is close a symbol that needs a prototype ... no
iffe: test: is confstr a symbol that needs a prototype ... no
iffe: test: is div a symbol that needs a prototype ... no
iffe: test: is dup a symbol that needs a prototype ... no
iffe: test: is dup2 a symbol that needs a prototype ... no
iffe: test: is eaccess a symbol that needs a prototype ... yes
iffe: test: is execl a symbol that needs a prototype ... no
iffe: test: is execle a symbol that needs a prototype ... no
iffe: test: is execlp a symbol that needs a prototype ... no
iffe: test: is execv a symbol that needs a prototype ... no
iffe: test: is execve a symbol that needs a prototype ... no
iffe: test: is execve a symbol that needs a prototype ... no
iffe: test: is execvp a symbol that needs a prototype ... no
iffe: test: is execvpe a symbol that needs a prototype ... yes
iffe: test: is exit a symbol that needs a prototype ... no
iffe: test: is fork a symbol that needs a prototype ... no
iffe: test: is fpathconf a symbol that needs a prototype ... no
iffe: test: is free a symbol that needs a prototype ... no
iffe: test: is fsync a symbol that needs a prototype ... no
iffe: test: is ftruncate a symbol that needs a prototype ... no
iffe: test: is getcwd a symbol that needs a prototype ... no
iffe: test: is getegid a symbol that needs a prototype ... no
iffe: test: is getenv a symbol that needs a prototype ... no
iffe: test: is geteuid a symbol that needs a prototype ... no
iffe: test: is getgid a symbol that needs a prototype ... no
iffe: test: is getgroups a symbol that needs a prototype ... no
iffe: test: is getlogin a symbol that needs a prototype ... no
iffe: test: is getpgrp a symbol that needs a prototype ... no
iffe: test: is getpid a symbol that needs a prototype ... no
iffe: test: is getppid a symbol that needs a prototype ... no
iffe: test: is gettxt a symbol that needs a prototype ... yes
iffe: test: is getuid a symbol that needs a prototype ... no
iffe: test: is isatty a symbol that needs a prototype ... no
iffe: test: is labs a symbol that needs a prototype ... no
iffe: test: is ldiv a symbol that needs a prototype ... no
iffe: test: is link a symbol that needs a prototype ... no
iffe: test: is lseek a symbol that needs a prototype ... no
iffe: test: is malloc a symbol that needs a prototype ... no
iffe: test: is mblen a symbol that needs a prototype ... no
iffe: test: is mbstowcs a symbol that needs a prototype ... no
iffe: test: is mbtowc a symbol that needs a prototype ... no
iffe: test: is memalign a symbol that needs a prototype ... yes
iffe: test: is memccpy a symbol that needs a prototype ... no
iffe: test: is memchr a symbol that needs a prototype ... no
iffe: test: is memcmp a symbol that needs a prototype ... no
iffe: test: is memcpy a symbol that needs a prototype ... no
iffe: test: is memmove a symbol that needs a prototype ... no
iffe: test: is memset a symbol that needs a prototype ... no
iffe: test: is pathconf a symbol that needs a prototype ... no
iffe: test: is pause a symbol that needs a prototype ... no
iffe: test: is pipe a symbol that needs a prototype ... no
iffe: test: is pvalloc a symbol that needs a prototype ... yes
iffe: test: is qsort a symbol that needs a prototype ... no
iffe: test: is rand a symbol that needs a prototype ... no
iffe: test: is read a symbol that needs a prototype ... no
iffe: test: is realloc a symbol that needs a prototype ... no
iffe: test: is realpath a symbol that needs a prototype ... no
iffe: test: is resolvepath a symbol that needs a prototype ... yes
iffe: test: is rmdir a symbol that needs a prototype ... no
iffe: test: is setgid a symbol that needs a prototype ... no
iffe: test: is setpgid a symbol that needs a prototype ... no
iffe: test: is setsid a symbol that needs a prototype ... no
iffe: test: is setuid a symbol that needs a prototype ... no
iffe: test: is sleep a symbol that needs a prototype ... no
iffe: test: is spawnveg a symbol that needs a prototype ... yes
iffe: test: is spawnvex a symbol that needs a prototype ... yes
iffe: test: is spawnvex_open a symbol that needs a prototype ... yes
iffe: test: is spawnvex_add a symbol that needs a prototype ... yes
iffe: test: is spawnvex_apply a symbol that needs a prototype ... yes
iffe: test: is spawnvex_get a symbol that needs a prototype ... yes
iffe: test: is spawnvex_close a symbol that needs a prototype ... yes
iffe: test: is srand a symbol that needs a prototype ... no
iffe: test: is strcasecmp a symbol that needs a prototype ... no
iffe: test: is strcat a symbol that needs a prototype ... no
iffe: test: is strchr a symbol that needs a prototype ... no
iffe: test: is strcmp a symbol that needs a prototype ... no
iffe: test: is strcoll a symbol that needs a prototype ... no
iffe: test: is strcpy a symbol that needs a prototype ... no
iffe: test: is strcspn a symbol that needs a prototype ... no
iffe: test: is strdup a symbol that needs a prototype ... no
iffe: test: is strlcat a symbol that needs a prototype ... yes
iffe: test: is strlcpy a symbol that needs a prototype ... yes
iffe: test: is strlen a symbol that needs a prototype ... no
iffe: test: is strncasecmp a symbol that needs a prototype ... no
iffe: test: is strncat a symbol that needs a prototype ... no
iffe: test: is strncmp a symbol that needs a prototype ... no
iffe: test: is strncpy a symbol that needs a prototype ... no
iffe: test: is strpbrk a symbol that needs a prototype ... no
iffe: test: is strrchr a symbol that needs a prototype ... no
iffe: test: is strspn a symbol that needs a prototype ... no
iffe: test: is strstr a symbol that needs a prototype ... no
iffe: test: is strtok a symbol that needs a prototype ... no
iffe: test: is strxfrm a symbol that needs a prototype ... no
iffe: test: is swab a symbol that needs a prototype ... yes
iffe: test: is sysconf a symbol that needs a prototype ... no
iffe: test: is system a symbol that needs a prototype ... no
iffe: test: is tcgetpgrp a symbol that needs a prototype ... no
iffe: test: is tcsetpgrp a symbol that needs a prototype ... no
iffe: test: is truncate a symbol that needs a prototype ... no
iffe: test: is ttyname a symbol that needs a prototype ... no
iffe: test: is unlink a symbol that needs a prototype ... no
iffe: test: is valloc a symbol that needs a prototype ... no
iffe: test: is wcstombs a symbol that needs a prototype ... no
iffe: test: is wctomb a symbol that needs a prototype ... no
iffe: test: is write a symbol that needs a prototype ... no
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/botch.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/botch.c ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/botch.c ... yes
+ cmp -s FEATURE/botch ast_botch.h
+ 2> /dev/null
+ rm -f ast_botch.h
+ silent test -d .
+ /bin/cp FEATURE/botch ast_botch.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/tty
iffe: test: is sys/types.h a header ... yes
iffe: test: is termios.h a header ... yes
iffe: test: is termio.h a header ... yes
iffe: test: is sgtty.h a header ... yes
iffe: test: is sys/termios.h a header ... yes
iffe: test: is sys/termio.h a header ... no
iffe: test: is sys/ioctl.h a header ... yes
iffe: test: is sys/bsdtty.h a header ... no
iffe: test: is sys/nttyio.h a header ... no
iffe: test: is sys/ttyio.h a header ... no
iffe: test: is tcgetattr a library function ... yes
iffe: test: is tcgetpgrp a library function ... yes
iffe: test: is _POSIX_VDISABLE a macro ... no
iffe: test: is termios a type or typedef ... no
iffe: test: is c_line a member of struct termios ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/fs
iffe: test: is sys/types.h a header ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is _fxstat a library function ... no
iffe: test: is __fxstat a library function ... yes
iffe: test: is _lxstat a library function ... no
iffe: test: is __lxstat a library function ... yes
iffe: test: is _xmknod a library function ... no
iffe: test: is __xmknod a library function ... yes
iffe: test: is _xstat a library function ... no
iffe: test: is __xstat a library function ... yes
iffe: test: is lstat a library function ... yes
iffe: test: is mknod a library function ... yes
iffe: test: is sync a library function ... yes
iffe: test: is _fxstat64 a library function ... no
iffe: test: is __fxstat64 a library function ... yes
iffe: test: is _lxstat64 a library function ... no
iffe: test: is __lxstat64 a library function ... yes
iffe: test: is _xstat64 a library function ... no
iffe: test: is __xstat64 a library function ... yes
iffe: test: is fstat a macro ... no
iffe: test: is lstat a macro ... no
iffe: test: is stat a macro ... no
iffe: test: is mknod a macro ... no
iffe: test: link{ ... }end ... no
iffe: test: link{ ... }end ... yes
iffe: test: is sys/mkdev.h a header ... no
iffe: test: is chmod a symbol that needs a prototype ... no
iffe: test: is fstat a symbol that needs a prototype ... no
iffe: test: is lstat a symbol that needs a prototype ... no
iffe: test: is mkdir a symbol that needs a prototype ... no
iffe: test: is mkfifo a symbol that needs a prototype ... no
iffe: test: is mknod a symbol that needs a prototype ... no
iffe: test: is stat a symbol that needs a prototype ... no
iffe: test: is FS_default a macro ... no
iffe: test: macro{ ... }end ... yes
iffe: test: is stdio.h a header ... yes
iffe: test: is mntent.h a header ... yes
iffe: test: is mnttab.h a header ... no
iffe: test: is sys/mntent.h a header ... no
iffe: test: is sys/mnttab.h a header ... no
iffe: test: is sys/param.h a header ... yes
iffe: test: is sys/ucred.h a header ... no
iffe: test: is sys/fs_types.h a header ... no
iffe: test: is sys/mount.h a header ... yes
iffe: test: is sys/statfs.h a header ... yes
iffe: test: is sys/statvfs.h a header ... yes
iffe: test: is sys/vfs.h a header ... yes
iffe: test: is sys/vmount.h a header ... no
iffe: test: is mnttab a type or typedef ... no
iffe: test: is mt_dev a member of struct mnttab ... no
iffe: test: is mt_filsys a member of struct mnttab ... no
iffe: test: is mt_fstyp a member of struct mnttab ... no
iffe: test: is mntent a type or typedef ... no
iffe: test: is mnt_opts a member of struct mntent ... yes
iffe: test: is w_mntent a type or typedef ... no
iffe: test: is mnt_opts a member of struct w_mntent ... no
iffe: test: is mnt_opts a member of struct mnttab ... no
iffe: test: is mnt_opts a member of struct mntent ... no
iffe: test: is mnt_opts a member of struct mnttab ... no
iffe: test: is stat a type or typedef ... no
iffe: test: is st_blocks a member of struct stat ... yes
iffe: test: is st_blksize a member of struct stat ... yes
iffe: test: is st_rdev a member of struct stat ... yes
iffe: test: is statfs a type or typedef ...
iffe: test: is f_files a member of struct statfs ... yes
iffe: test: is f_bavail a member of struct statfs ... yes
iffe: test: is statvfs a type or typedef ... no
iffe: test: is f_basetype a member of struct statvfs ... no
iffe: test: is f_frsize a member of struct statvfs ... yes
iffe: test: statvfs.f_reserved7 can double for statvfs.f_basetype ... no
iffe: test: is getfsstat a library function ... no
iffe: test: is getmntent a library function ... yes
iffe: test: is getmntinfo a library function ... no
iffe: test: is mntctl a library function ... no
iffe: test: is mntopen a library function ... no
iffe: test: is mntread a library function ... no
iffe: test: is mntclose a library function ... no
iffe: test: is setmntent a library function ... yes
iffe: test: is w_getmntent a library function ... no
iffe: test: is statfs a library function ... yes
iffe: test: is statvfs a library function ... yes
iffe: test: compile{ ... }end ...
iffe: test: compile{ ... }end ...
iffe: test: compile{ ... }end ... no
iffe: test: getmntinfo uses statvfs -- since when? ... no
iffe: test: getfsstat uses statvfs -- just in case it is confused like getmntinfo ... no
iffe: test: cat{ ... }end ... yes
iffe: test: stat.st_fstype is a string ... no
iffe: test: stat.st_fstype is an int ... no
iffe: test: stat.st_spare1 is an int ... no
iffe: test: stat.st_spare4 is an array ... no
iffe: test: stat.st_extra is an array ... no
iffe: test: stat.st_pad4 is an array ... no
+ cmp -s FEATURE/fs ast_fs.h
+ 2> /dev/null
+ rm -f ast_fs.h
+ silent test -d .
+ /bin/cp FEATURE/fs ast_fs.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/fcntl.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/fcntl.c ...
./suse62992.c:182:23: warning: Value stored to 'f_lck' is never read
if (F_WRLCK > f_lck) f_lck = F_WRLCK;
^ ~~~~~~~
./suse62992.c:224:25: warning: Value stored to 'f_local' is never read
if (F_SHLCK > f_local) f_local = F_SHLCK;
^ ~~~~~~~
2 warnings generated.
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/fcntl.c ... yes
+ cmp -s FEATURE/fcntl ast_fcntl.h
+ 2> /dev/null
+ rm -f ast_fcntl.h
+ silent test -d .
+ /bin/cp FEATURE/fcntl ast_fcntl.h
+ cmp -s FEATURE/sys ast_sys.h
+ 2> /dev/null
+ rm -f ast_sys.h
+ silent test -d .
+ /bin/cp FEATURE/sys ast_sys.h
+ cmp -s FEATURE/lib ast_lib.h
+ 2> /dev/null
+ rm -f ast_lib.h
+ silent test -d .
+ /bin/cp FEATURE/lib ast_lib.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/stdio
iffe: test: is sys/types.h a header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: output{ ... }end ... yes
iffe: test: macro{ ... }end ... yes
iffe: test: cat{ ... }end ... yes
+ cmp -s FEATURE/stdio ast_stdio.h
+ 2> /dev/null
+ rm -f ast_stdio.h
+ silent test -d .
+ /bin/cp FEATURE/stdio ast_stdio.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/nl_types
iffe: test: is sys/types.h a header ... yes
iffe: test: is catopen a library function ... yes
iffe: test: is nl_langinfo a library function ... yes
iffe: test: is nl_types.h a header ... yes
iffe: test: is langinfo.h a header ... yes
iffe: test: is nl_types an include path for the native header ... yes
iffe: test: output{ ... }end ... yes
+ cmp -s FEATURE/nl_types ast_nl_types.h
+ 2> /dev/null
+ rm -f ast_nl_types.h
+ silent test -d .
+ /bin/cp FEATURE/nl_types ast_nl_types.h
+ X=1
+ cc '-DN=1' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=1 :
+ cc '-DN=2' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=2 :
+ cc '-DN=3' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=3 :
+ cc '-DN=4' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=4 :
+ cc '-DN=5' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=5 :
+ cc '-DN=6' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=6 :
+ cc '-DN=8' -DIS -o astmath.exe /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astmath.c
+ 2> /dev/null
+ : implicit math function N=8 :
+ touch astmath.exe
+ rm -f astmath.o
+ : clean up obsolete headers :
+ rm -rf dirent.h iconv.h nl_types.h stdio.h wchar.h wctype.h ast_hdr.h ast_types.h ast_unistd.h iffeio.h /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/limits.h /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/unistd.h /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/limits.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/state.c
+ cmp -s FEATURE/aso ast_aso.h
+ 2> /dev/null
+ rm -f ast_aso.h
+ silent test -d .
+ /bin/cp FEATURE/aso ast_aso.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/intercept.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/intercept.c:331:14: warning: Null pointer passed as an argument to a 'nonnull' parameter
RESTART(r, chdir(path));
^~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/intercept.c:52:17: note: expanded from macro 'RESTART'
} while ((r = f) == -1 && errno == EINTR && serial == astserial(AST_SERIAL_RESTART, AST_SERIAL_get)); \
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/intercept.c:716:14: warning: Null pointer passed as an argument to a 'nonnull' parameter
RESTART(r, truncate(path, size));
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_std.h:294:18: note: expanded from macro 'truncate'
#define truncate truncate64
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/intercept.c:52:17: note: expanded from macro 'RESTART'
} while ((r = f) == -1 && errno == EINTR && serial == astserial(AST_SERIAL_RESTART, AST_SERIAL_get)); \
^
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/transition.c
+ cmp -s FEATURE/param ast_param.h
+ 2> /dev/null
+ rm -f ast_param.h
+ silent test -d .
+ /bin/cp FEATURE/param ast_param.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/dirent
iffe: test: is sys/types.h a header ... yes
iffe: test: is stat64 a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is off64_t a type or typedef ... yes
iffe: test: is opendir a library function ... yes
iffe: test: is dirent.h a header ... yes
iffe: test: is ndir.h a header ... no
iffe: test: is sys/dir.h a header ... yes
iffe: test: is dirent an include path for the native header ... yes
iffe: test: dirent64.d_ino vs. readdir64 mismatch ... no
iffe: test: is ( ! _lib_opendir ) true ... no
iffe: test: is ( _nxt_dirent && _lib_stat64 && _typ_off64_t && _botch_d_ino_dirent64 ) true ... no
iffe: test: is ( _nxt_dirent && _lib_stat64 && _typ_off64_t ) true ... yes
+ cmp -s FEATURE/dirent ast_dirent.h
+ 2> /dev/null
+ rm -f ast_dirent.h
+ silent test -d .
+ /bin/cp FEATURE/dirent ast_dirent.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/mode.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/mode.c ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/mode.c ... yes
+ cmp -s FEATURE/mode ast_mode.h
+ 2> /dev/null
+ rm -f ast_mode.h
+ silent test -d .
+ /bin/cp FEATURE/mode ast_mode.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/opendir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/readdir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/rewinddir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/seekdir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/telldir.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/syscall
iffe: test: is sys/types.h a header ... yes
iffe: test: syscall(SYS_getcwd,buf,len) implemented ... yes
iffe: test: is ( _lib_sysgetcwd ) true ... yes
iffe: test: is ( _lib_sysgetcwd ) true ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getcwd.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getcwd.c:60:10: warning: Potential leak of memory pointed to by 'buf'
ERROR(ENOMEM);
^~~~~~
/usr/include/asm-generic/errno-base.h:15:17: note: expanded from macro 'ENOMEM'
#define ENOMEM 12 /* Out of memory */
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getcwd.c:44:28: note: expanded from macro 'ERROR'
#define ERROR(e) { errno = e; return 0; }
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getcwd.c:64:11: warning: Potential leak of memory pointed to by 'buf'
ERROR(ENOMEM);
^~~~~~
/usr/include/asm-generic/errno-base.h:15:17: note: expanded from macro 'ENOMEM'
#define ENOMEM 12 /* Out of memory */
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getcwd.c:44:28: note: expanded from macro 'ERROR'
#define ERROR(e) { errno = e; return 0; }
^
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:816:16: warning: The left operand of '-' is a garbage value
if ((n = p - fp->decode.path + 1) > (m = *fp->lens))
~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:846:22: warning: Dereference of undefined pointer value
if (fp->verify && (*p == '/' || t == 1))
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:853:5: warning: Value stored to 'n' is never read
n = (*fp->verifyf)(fp, fp->decode.path, n, fp->disc);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:855:5: warning: Value stored to 'n' is never read
n = -1;
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:857:5: warning: Value stored to 'n' is never read
n = 1;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:859:5: warning: Value stored to 'n' is never read
n = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:870:7: warning: The left operand of '>>' is a garbage value
if (FF_OK_TYPE(fp, t))
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/findlib.h:53:65: note: expanded from macro 'FF_OK_TYPE'
#define FF_OK_TYPE(p,i) (!(p)->types||((p)->decode.bigram1[((i)>>3)&((1<<CHAR_BIT)-1)]&(1<<((i)&07))))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:874:13: warning: Assigned value is garbage or undefined
if (*(s = p) == '/')
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fastfind.c:903:9: warning: Dereference of undefined pointer value
if (*p == '/' && p > fp->decode.path)
^~
9 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashalloc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashdump.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashfree.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashfree.c:90:16: warning: Use of memory after it is freed
p->name = ((Hash_bucket_t*)p->name)->name;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashlast.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashlook.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashlook.c:331:10: warning: Access to field 'hash' results in a dereference of a null pointer (loaded from variable 'b')
b->hash = n = i;
~ ^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashscan.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashsize.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashview.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/hashwalk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/memhash.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/memsum.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/strhash.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/strkey.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ihash -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/hash/strsum.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/ccode
iffe: test: is sys/types.h a header ... yes
iffe: test: output{ ... }end ... yes
+ cmp -s FEATURE/ccode ast_ccode.h
+ 2> /dev/null
+ rm -f ast_ccode.h
+ silent test -d .
+ /bin/cp FEATURE/ccode ast_ccode.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/stracmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strnacmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/ccmap.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/ccmapid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/ccnative.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/chresc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/chrtoi.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/streval.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strexpr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strmatch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strcopy.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/modei.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/modex.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strmode.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strlcat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strlcpy.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strlook.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strncopy.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strsearch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strpsearch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/stresc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/stropt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtape.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strpcmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strnpcmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strvcmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strnvcmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/tok.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/tokline.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/tokscan.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathaccess.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathcat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathcanon.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/time
iffe: test: is sys/types.h a header ... yes
iffe: test: is nanosleep a library function ... yes
iffe: test: is usleep a library function ... yes
iffe: test: is _strftime a library function ... no
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is clock_t a type or typedef ... yes
iffe: test: is time_t a type or typedef ... yes
iffe: test: is tm a type or typedef ... no
iffe: test: is tm_sec a member of struct tm ... no
iffe: test: is timeval a type or typedef ... no
iffe: test: is tv_sec a member of struct timeval ... yes
iffe: test: cat{ ... }end ... yes
+ cmp -s FEATURE/time ast_time.h
+ 2> /dev/null
+ rm -f ast_time.h
+ silent test -d .
+ /bin/cp FEATURE/time ast_time.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathcheck.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathpath.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathpath.c:92:3: warning: Value stored to 'x' is never read
x = s;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathpath.c:111:6: warning: String copy function overflows destination buffer
strcpy(s + 1, "bin");
^~~~~~~~~~~~~~~~~~~~
2 warnings generated.
+ cc -o lcgen /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/lcgen.c
+ ./lcgen 64704.1 64704.2
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/lc.tab
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' 64704.1
+ 1> 64704.3
+ rm -f 64704.1
+ cmp -s 64704.3 lc.h
+ 2> /dev/null
+ mv 64704.3 lc.h
+ cmp -s 64704.2 lctab.c
+ 2> /dev/null
+ mv 64704.2 lctab.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathexists.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathfind.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/preroot.sh
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/preroot.sh ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/preroot.sh ... yes
+ cmp -s FEATURE/preroot preroot.h
+ 2> /dev/null
+ rm -f preroot.h
+ silent test -d .
+ /bin/cp FEATURE/preroot preroot.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathkey.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-DHOSTTYPE="linux.i386-64"' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathprobe.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathrepl.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathrepl.c:59:3: warning: Value stored to 'size' is never read
size = strlen(path) + 1;
^ ~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathnative.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathposix.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/tv
iffe: test: is sys/types.h a header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: is _st_mtimespec.tv_nsec_stat an identifier ... no
iffe: test: is stat a type or typedef ... no
iffe: test: is st_mtimespec.tv_nsec a member of struct stat ... no
iffe: test: is _st_mtim.st__tim.tv_nsec_stat an identifier ... no
iffe: test: is st_mtim.st__tim.tv_nsec a member of struct stat ... no
iffe: test: is _st_mtim.tv_nsec_stat an identifier ... no
iffe: test: is st_mtim.tv_nsec a member of struct stat ... yes
iffe: test: is ( !no_stat_nsec ) true ... yes
iffe: test: cat{ ... }end ... yes
+ cmp -s FEATURE/tv tv.h
+ 2> /dev/null
+ rm -f tv.h
+ silent test -d .
+ /bin/cp FEATURE/tv tv.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathtemp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathtmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathstat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathgetlink.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathsetlink.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathbin.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathshell.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathcd.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/prog
iffe: test: is sys/types.h a header ... yes
iffe: test: is getexecname a library function ... no
iffe: test: is _NSGetExecutablePath a library function ... no
iffe: test: run{ ... }end ... yes
iffe: test: is mach-o/dyld.h a header ... no
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/path/pathprog.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fs3d.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/ftwalk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/ftwflags.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fts.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fts.c:378:7: warning: Access to field 'left' results in a dereference of a null pointer (loaded from variable 'root')
if (root->left)
^~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/astintercept.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/conformance.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/getenv.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/setenviron.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:1323:12: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'tsp')
tsp->next = psp;
~~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:2064:7: warning: Value stored to 'f' is never read
f = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:3299:7: warning: Access to field '_next' results in a dereference of a null pointer (loaded from variable 'sp_body')
sfputc(sp_body, '\n');
^~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio.h:401:26: note: expanded from macro 'sfputc'
#define sfputc(f,c) ( __sf_putc((f),(c)) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio.h:350:25: note: expanded from macro '__sf_putc'
#define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio.h:342:18: note: expanded from macro '_SF_'
#define _SF_(f) ((Sfio_t*)(f))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:3990:8: warning: Value stored to 'tp' is never read
tp = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:4415:2: warning: Value stored to 'n' is never read
n = x = 0;
^ ~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:4536:10: warning: Value stored to 'c' is never read
for (c = *s; *s; s++)
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:4966:9: warning: Value stored to 'psp' is never read
psp = pop(psp);
^ ~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:5478:10: warning: Value stored to 'nov' is never read
nov = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:5490:10: warning: Value stored to 'num' is never read
num = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:5516:9: warning: Value stored to 'a' is never read
a = s = skip(s, 0, 0, 0, 1, 0, 0, version);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optget.c:5600:3: warning: Value stored to 'psp' is never read
psp = pop(psp);
^ ~~~~~~~~
11 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optjoin.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optesc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/optctx.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strsort.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/struniq.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/magic.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/magic.c:2413:4: warning: Function call argument is an uninitialized value
sfseek(mp->fp, off, SEEK_SET);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/magic.c:2493:5: warning: Dereference of null pointer
ep->value.lab->mask = 1;
^~~~~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/mime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/mimetype.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sig.sh
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sig.sh ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sig.sh ... yes
+ cmp -s FEATURE/sig sig.h
+ 2> /dev/null
+ rm -f sig.h
+ silent test -d .
+ /bin/cp FEATURE/sig sig.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/signal.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/sigflag.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/systrace.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include '-DERROR_CATALOG="libast"' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/error.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/errorf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/errormsg.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/errorx.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/localeconv.c
+ cmp -s FEATURE/standards ast_standards.h
+ 2> /dev/null
+ rm -f ast_standards.h
+ silent test -d .
+ /bin/cp FEATURE/standards ast_standards.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setlocale.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/translate.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/iconv
iffe: test: is sys/types.h a header ... yes
iffe: test: is iconv.h a header ... yes
iffe: test: is -liconv a library ... no
iffe: test: is iconv_open a library function ... yes
iffe: test: is iconv_close a library function ... yes
iffe: test: is iconv a library function ... yes
iffe: test: is iconv an include path for the native header ... yes
iffe: test: output{ ... }end ... yes
+ cmp -s FEATURE/iconv ast_iconv.h
+ 2> /dev/null
+ rm -f ast_iconv.h
+ silent test -d .
+ /bin/cp FEATURE/iconv ast_iconv.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/catopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/iconv.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/iconv.c:927:4: warning: Value stored to 'c' is never read
c = 1;
^ ~
1 warning generated.
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/locale
iffe: test: is sys/types.h a header ... yes
iffe: test: canonical UTF-8 name ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/lc.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/lc.c:355:4: warning: Value stored to 't' is never read
t = cp->code;
^ ~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c lctab.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/float
iffe: test: is sys/types.h a header ... yes
iffe: test: is float.h a header ... yes
iffe: test: is limits.h a header ... yes
iffe: test: is math.h a header ... yes
iffe: test: is values.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is frexp a library function ... yes
iffe: test: is frexpl a library function ... yes
iffe: test: is ldexp a library function ... yes
iffe: test: is ldexpl a library function ... yes
iffe: test: is finite a library function ... yes
iffe: test: is finitel a library function ... yes
iffe: test: is isinfl a library function ... yes
iffe: test: is isnanl a library function ... yes
iffe: test: is copysign a library function ... yes
iffe: test: is copysignl a library function ... yes
iffe: test: is frexp a symbol that needs a prototype ... no
iffe: test: is frexpl a symbol that needs a prototype ... no
iffe: test: is ldexp a symbol that needs a prototype ... no
iffe: test: is ldexpl a symbol that needs a prototype ... no
iffe: test: is finite a symbol that needs a prototype ... no
iffe: test: is finitel a symbol that needs a prototype ... no
iffe: test: is isinfl a symbol that needs a prototype ... no
iffe: test: is isnanl a symbol that needs a prototype ... no
iffe: test: is copysign a symbol that needs a prototype ... no
iffe: test: is copysignl a symbol that needs a prototype ... no
iffe: test: fpclassify present and works ... yes
iffe: test: isinf present and works ... yes
iffe: test: isnan present and works ... yes
iffe: test: signbit present and works ... yes
iffe: test: no unsigned intmax => floatmax cast ... no
iffe: test: fpe on mpy overflow ... no
iffe: test: fpe on div underflow ... no
iffe: test: macro{ ... }end ... yes
iffe: test: missing floating point limits ... yes
iffe: test: double exponent bitfoolery ... yes
iffe: test: long double exponent bitfoolery ... yes
iffe: test: _ast_fltmax_t maximum integral type ... yes
iffe: test: INF and NAN memory representations ... yes
+ cmp -s FEATURE/tty ast_tty.h
+ 2> /dev/null
+ rm -f ast_tty.h
+ silent test -d .
+ /bin/cp FEATURE/tty ast_tty.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sfio
iffe: test: is sys/types.h a header ... yes
iffe: test: is float.h a header ... yes
iffe: test: is floatingpoint.h a header ... no
iffe: test: is math.h a header ... yes
iffe: test: is values.h a header ... yes
iffe: test: is sys/filio.h a header ... no
iffe: test: is sys/ioctl.h a header ... yes
iffe: test: is qfrexp a library function ... no
iffe: test: is qldexp a library function ... no
iffe: test: is signed a reserved keyword ... yes
iffe: test: number of bits in pointer ... yes
iffe: test: open files cannot be removed ... no
iffe: test: voidptr is larger than int ... yes
iffe: test: long is larger than int ... yes
iffe: test: register layout ok for vax string operations ... no
iffe: test: native floating point conversions ok ... yes
iffe: test: Stdio fseek/fflush are X/Open-compliant ... no
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/mc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/base64.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/base64.c:144:44: warning: The left operand of '==' is a garbage value
if (tp > (unsigned char*)tb && *(tp - 1) == '\n')
~~~~~~~~~ ^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/qp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/recfmt.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/recfmt.c:125:32: warning: Division by zero
g = (((g * 100) / i) * 100) / q->rep[i];
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/recstr.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/recstr.c:181:5: warning: Value stored to 'v' is never read
v = 0;
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/reclen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/fmtrec.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtbase.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtclock.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtdev.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtelapsed.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmterror.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtesc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtfmt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtfs.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtfs.c:93:2: warning: String copy function overflows destination buffer
strcpy(ip->name, s);
^~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtident.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtint.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtip4.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtip6.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtls.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtmatch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtmode.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtnum.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtperm.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtre.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmttime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtuid.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtuid.c:96:3: warning: String copy function overflows destination buffer
strcpy(ip->name, name);
^~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtgid.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtgid.c:96:3: warning: String copy function overflows destination buffer
strcpy(ip->name, name);
^~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtsignal.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtscale.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/tmx
iffe: test: is sys/types.h a header ... yes
iffe: test: cat{ ... }end ... yes
iffe: test: is ( _ast_int8_t ) true ... yes
iffe: test: cat{ ... }end ... yes
+ cmp -s FEATURE/tmx tmx.h
+ 2> /dev/null
+ rm -f tmx.h
+ silent test -d .
+ /bin/cp FEATURE/tmx tmx.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmttmx.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmttv.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/fmtversion.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strelapsed.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strperm.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strperm.c:64:3: warning: Value stored to 'op' is never read
op = num = who = typ = 0;
^ ~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/struid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strgid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoip4.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoip6.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/stack.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/align.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/align.c ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/align.c ... yes
+ cmp -s FEATURE/align align.h
+ 2> /dev/null
+ rm -f align.h
+ silent test -d .
+ /bin/cp FEATURE/align align.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/stk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/swapget.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/swapmem.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/swapop.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/swapput.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/siglist
iffe: test: is sys/types.h a header ... yes
iffe: test: is string.h a header ... yes
iffe: test: is signal.h a header ... yes
iffe: test: is strsignal a library function ... yes
iffe: test: run{ ... }end ... yes
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/signal.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/signal.c ...
./Fsuse2551.c:368:15: warning: The left operand of '/' is a garbage value
if (m > n / 2)
~ ^
1 warning generated.
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/signal.c ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/sigdata.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/sigcrit.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/sigunblock.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/wait
iffe: test: is sys/types.h a header ... yes
iffe: test: is wait a library function ... yes
iffe: test: is wait2 a library function ... no
iffe: test: is wait3 a library function ... yes
iffe: test: is wait4 a library function ... yes
iffe: test: is waitpid a library function ... yes
iffe: test: is sys/wait.h a header ... yes
iffe: test: posix wait macros ok ... no
+ cmp -s FEATURE/wait ast_wait.h
+ 2> /dev/null
+ rm -f ast_wait.h
+ silent test -d .
+ /bin/cp FEATURE/wait ast_wait.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procopen.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procopen.c:483:13: warning: The left operand of '>=' is a garbage value
if (procfd >= 0)
~~~~~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procopen.c:640:5: warning: The return value from the call to 'setuid' is not checked. If an error occurs in 'setuid', the following code may execute with unexpected privileges
setuid(geteuid());
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procopen.c:641:5: warning: The return value from the call to 'setgid' is not checked. If an error occurs in 'setgid', the following code may execute with unexpected privileges
setgid(getegid());
^~~~~~
3 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procrun.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/procfree.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmdate.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmequiv.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmfix.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmfmt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmform.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmgoff.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/tmlib
iffe: test: is sys/types.h a header ... yes
iffe: test: probe CC.EXPORT.DYNAMIC supported ... no
iffe: test: tzset() bypasses user getenv() ... yes
iffe: test: is ( _tzset_environ ) true ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tminit.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tminit.c:115:15: warning: Assigned value is garbage or undefined
environ[0] = e;
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmleap.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmlex.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmlocale.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmmake.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmpoff.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmscan.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmsleep.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmtime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmtype.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmweek.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmword.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmzone.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:775:5: warning: Value stored to 'n' is never read
n = strtol(s = t, &t, 0);
^ ~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:784:6: warning: Value stored to 'n' is never read
n = strtol(s = t, &t, 0);
^ ~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:891:10: warning: Value stored to 'i' is never read
i -= 4;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:909:10: warning: Value stored to 'i' is never read
i -= 2;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:1230:7: warning: Value stored to 'n' is never read
n = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:1274:8: warning: Value stored to 'f' is never read
f = -1;
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:1276:8: warning: Value stored to 'f' is never read
f = 1;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:1278:8: warning: Value stored to 'f' is never read
f = 2;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxdate.c:1280:8: warning: Value stored to 'f' is never read
f = 0;
^ ~
9 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxduration.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxfmt.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxfmt.c:140:4: warning: Value stored to 'delimiter' is never read
delimiter = 0;
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxgettime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxleap.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxmake.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxmake.c:106:2: warning: Value stored to 'n' is never read
n += 1900;
^ ~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxscan.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxscan.c:384:15: warning: Function call argument is an uninitialized value
if ((zp = tmzone(s, &u, u, &m)))
^~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxscan.c:395:5: warning: Value stored to 'x' is never read
x = gen(tm, &set);
^ ~~~~~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxsettime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxsleep.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxtime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmxtouch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvcmp.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/tvlib
iffe: test: is sys/types.h a header ... yes
iffe: test: is time.h a header ... yes
iffe: test: is clock_settime a library function ... yes
iffe: test: is gettimeofday a library function ... yes
iffe: test: is settimeofday a library function ... yes
iffe: test: is stime a library function ... yes
iffe: test: is utimes a library function ... yes
iffe: test: is nanosleep a library function ... yes
iffe: test: is usleep a library function ... yes
iffe: test: is sys/stat.h a header ... yes
iffe: test: complete utimensat implementation ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is timeval a type or typedef ... no
iffe: test: is tv_sec a member of struct timeval ... yes
iffe: test: execute{ ... }end ... yes
iffe: test: link{ ... }end ... no
iffe: test: output{ ... }end ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvgettime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvsettime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvsleep.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvtouch.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvtouch.c:209:16: warning: Assigned value is garbage or undefined
am[0].tv_sec = st.st_atime;
^ ~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tvtouch.c:219:16: warning: Assigned value is garbage or undefined
am[1].tv_sec = st.st_mtime;
^ ~~~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/cmdarg.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vec/vecargs.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vec/vecfile.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vec/vecfree.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vec/vecload.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vec/vecstring.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/univdata.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/touch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/mnt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/debug.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memccpy.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memchr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memcmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memcpy.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/memdup.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memmove.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/memset.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mkdir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mkfifo.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mknod.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/rmdir.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/remove.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/rename.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/link.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/unlink.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strdup.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strchr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strrchr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strstr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtod.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtod.c:31:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtof.h:360:4: warning: Value stored to 'c' is never read
c = GET(s);
^ ~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtold.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtold.c:52:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtof.h:360:4: warning: Value stored to 'c' is never read
c = GET(s);
^ ~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtol.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtol.c:32:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoll.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoll.c:44:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoul.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoul.c:33:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoull.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strtoull.c:45:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strton.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtonll.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntod.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntod.c:32:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtof.h:360:4: warning: Value stored to 'c' is never read
c = GET(s);
^ ~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntold.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntold.c:32:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtof.h:360:4: warning: Value stored to 'c' is never read
c = GET(s);
^ ~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strnton.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntonll.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntol.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntol.c:31:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoll.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoll.c:31:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoul.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoul.c:32:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoull.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strntoull.c:32:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:361:5: warning: Value stored to 'c' is never read
c = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strtoi.h:429:3: warning: Value stored to 'c' is never read
c = *(s - 1);
^ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strcasecmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strncasecmp.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/errno
iffe: test: is sys/types.h a header ... yes
iffe: test: sys_nerr in default libs ... yes
iffe: test: sys_nerr declared in errno.h ... yes
iffe: test: sys_errlist in default libs ... no
iffe: test: sys_errlist declared in errno.h ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/strerror.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mktemp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/tmpnam.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/fsync.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/execlp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/execve.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/execvp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/execvpe.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/spawnveg.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/vfork
iffe: test: is sys/types.h a header ... yes
iffe: test: is vfork.h a header ... no
iffe: test: is sys/vfork.h a header ... no
iffe: test: run{ ... }end ... yes
+ cmp -s FEATURE/vfork ast_vfork.h
+ 2> /dev/null
+ rm -f ast_vfork.h
+ silent test -d .
+ /bin/cp FEATURE/vfork ast_vfork.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/spawn
iffe: test: is sys/types.h a header ... yes
iffe: test: is spawn.h a header ... yes
iffe: test: is spawn a library function ... no
iffe: test: is spawnve a library function ... no
iffe: test: is spawnveg a library function ... no
iffe: test: is spawnvex a library function ... no
iffe: test: is posix_spawnattr_setfchdir a library function ... no
iffe: test: is posix_spawnattr_setsid a library function ... no
iffe: test: is posix_spawnattr_setumask a library function ... no
iffe: test: is inheritance a type or typedef ... no
iffe: test: is pgroup a member of struct inheritance ... no
iffe: test: is unistd.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: posix_spawn exists and it works and its worth using ... ENOEXEC produces exit status 127 (GOOD) ... yes
iffe: test: first spawn arg is mode and it works ... no
iffe: test: interpreter exec as efficient as fork() ... no
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/spawnvex.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/spawnvex.c:1106:10: warning: Call to function 'vfork' is insecure as it can lead to denial of service situations in the parent process. Replace calls to vfork with calls to the safer 'posix_spawn' function
pid = vfork();
^~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/vfork.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/killpg.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/hsearch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/tsearch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getlogin.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/putenv.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setenv.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setenv.c:53:31: warning: Potential leak of memory pointed to by 's'
return setenviron(s) ? 0 : -1;
^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/unsetenv.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/lstat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/statvfs.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/eaccess.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/hack
iffe: test: is sys/types.h a header ... yes
iffe: test: is locale_attr.h a header ... no
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/gross.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/omitted
iffe: test: is sys/types.h a header ... yes
iffe: test: check for win32 .exe botches ... no
iffe: test: win32 alarm(2) return botched ... no
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/omitted.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/readlink.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/symlink.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getpgrp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setpgid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setsid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/waitpid.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/creat64.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/at.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/atexit.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir/getdents.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getwd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/dup2.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/errno.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/preroot/getpreroot.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/preroot/ispreroot.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/preroot/realopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/preroot/setpreroot.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getgroups.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mount.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/system.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/iblocks.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Istring -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/modedata.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/tm/tmdata.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/memfatal.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/memfatal.c:89:3: warning: Call to 'malloc' has an allocation size of 0 bytes
malloc(0);
^~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfkeyprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcdio.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcdos.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcfilter.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcfilter.c:124:2: warning: Value stored to 'addr' is never read
addr = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcfilter.c:125:2: warning: Value stored to 'offset' is never read
offset = 0;
^ ~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcseekable.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcslow.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcsubstr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdctee.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcunion.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcmore.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcmore.c:178:8: warning: Dereference of null pointer (loaded from variable 's')
if (*s == '\n')
^~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfdcprefix.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/wc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/string/wc2utf8.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/basename.c
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/namval.h ast_namval.h
+ 2> /dev/null
+ rm -f ast_namval.h
+ silent test -d .
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/namval.h ast_namval.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/closelog.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/dirname.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/fmtmsglib.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/fnmatch.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/ftw.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getdate.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getsubopt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Idir -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/dir -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/glob.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/glob.c:752:2: warning: Value stored to 'suflen' is never read
suflen = 0;
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/nftw.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/openlog.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/re_comp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/resolvepath.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/realpath.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/regcmp.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/regcmp.c:79:18: warning: Dereference of null pointer (loaded from variable 'pattern')
if (pattern || !*pattern || !(sp = sfstropen()))
^~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/regexp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/setlogmask.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strftime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/strptime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/swab.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/syslog.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/tempnam.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/wordexp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/mktime.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regalloc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regclass.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regcoll.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regcomp.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regcomp.c:1370:5: warning: Value stored to 'c' is never read
c = buf[0];
^ ~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regcomp.c:1673:7: warning: Value stored to 'c' is never read
c = *pp;
^ ~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regcache.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regdecomp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regerror.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regexec.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regexec.c:41:3: warning: Assigned value is garbage or undefined
int m = match->rm_so;
^~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regexec.c:41:12: warning: Access to field 'rm_so' results in a dereference of a null pointer (loaded from variable 'match')
int m = match->rm_so;
^~~~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regfatal.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/reginit.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regnexec.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regnexec.c:1998:11: warning: The right operand of '>' is a garbage value
if (i > n)
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regsubcomp.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regsubcomp.c:187:6: warning: Assigned value is garbage or undefined
s = (const char*)e;
^ ~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regsubexec.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regsub.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regrecord.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regrexec.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iregex -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regstat.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/regex/regstat.c:51:44: warning: Access to field 'type' results in a dereference of a null pointer (loaded from field 'rex')
p->env->stats.re_record = (p && p->env && p->env->rex->type == REX_BM) ? p->env->rex->re.bm.size : -1;
^~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtdisc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dthash.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtlist.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtmethod.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtrehash.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtrehash.c:638:34: warning: Value stored to 'oplv' is never read
{ opnt = tbl; opnp = pos; oplv = lev; }
^ ~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtrehash.c:722:12: warning: Value stored to 'disc' during its initialization is never read
Dtdisc_t *disc = dt->disc;
^~~~ ~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtstat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtstrhash.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dttree.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dttree.c:550:12: warning: Dereference of null pointer (loaded from variable 'fngr')
{ *fngr = root;
~~~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dttree.c:554:12: warning: Dereference of null pointer (loaded from variable 'fngr')
{ *fngr = root;
~~~~ ^
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtuser.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtview.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icdt -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtwalk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtnew.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/dtcomp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfclrlock.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfdisc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfdlen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfexcept.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetl.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetu.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfcvt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfecvt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sffcvt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfextern.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sffilbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfflsbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfprints.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetr.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetr.c:150:13: warning: Array access (from variable 'us') results in a null pointer dereference
{ us[un-1] = '\0';
~~ ^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfllen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfmode.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfmode.c:75:2: warning: Value stored to 'f' is never read
f = (Sfio_t*)Version; /* shut compiler warning */
^ ~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfmove.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfnew.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpkrd.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpkrd.c:275:6: warning: Value stored to 't' is never read
{ t &= ~STREAM_PEEK;
^ ~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfnotify.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfnputc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpeek.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpoll.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpoll.c:187:6: warning: The left expression of the compound assignment is an uninitialized value. The computed value will also be garbage
FD_SET(f->proc->file, &rd);
^~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/sys/select.h:90:28: note: expanded from macro 'FD_SET'
#define FD_SET(fd, fdsetp) __FD_SET (fd, fdsetp)
^~~~~~~~~~~~~~~~~~~~~
/usr/include/bits/select.h:59:43: note: expanded from macro '__FD_SET'
((void) (__FDS_BITS (set)[__FD_ELT (d)] |= __FD_MASK (d)))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpool.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputl.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputu.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfrd.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfrd.c:218:6: warning: Value stored to 'r' is never read
{ r = -1;
^ ~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfread.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfreserve.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfseek.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfset.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfsetbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfsetfd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfsize.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfsk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstack.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtod.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfsync.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfswap.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sfinit.c
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sfinit.c ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sfinit.c ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sftable.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sftable.c:73:5: warning: Value stored to 'sp' is never read
{ sp = (char*)form;
^ ~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sftell.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sftmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfungetc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfvprintf.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfvprintf.c:388:5: warning: Value stored to 'fmt' is never read
fmt = ft->fmt;
^ ~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfvscanf.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfvscanf.c:35:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfstrtof.h:360:4: warning: Value stored to 'c' is never read
c = GET(s);
^ ~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfvscanf.c:206:6: warning: Value stored to 'n' is never read
for(n = 1; *form != ']'; form += n)
^ ~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfwr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfwrite.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfpurge.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfraise.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfwalk.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetm.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfmutex.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputm.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfresize.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfgetwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputwc.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfputwc.c:52:7: warning: Function call argument is an uninitialized value
n = SFWRITE(f,(Void_t*)s,n); /* write the hard way */
^~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/sfhdr.h:925:37: note: expanded from macro 'SFWRITE'
#define SFWRITE(f,s,n) (SETLOCAL(f),sfwrite(f,s,n))
^~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfclrerr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfeof.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sferror.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sffileno.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfstacked.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfvalue.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfgetc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfgetl.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfgetl2.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfgetu.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfgetu2.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfdlen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfllen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfslen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfulen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfputc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfputd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfputl.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfputm.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio/_sfputu.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/clearerr.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fdopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/feof.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ferror.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fflush.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fgetc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fgetpos.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fgets.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fileno.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fpurge.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fputc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fputs.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fread.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/freopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fseek.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fseeko.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fsetpos.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ftell.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ftello.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fwrite.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/flockfile.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ftrylockfile.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/funlockfile.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getchar.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getw.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/pclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/popen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/printf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/putc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/putchar.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/puts.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/putw.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/rewind.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/scanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/setbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/setbuffer.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/setlinebuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/setvbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/snprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/sprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/sscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/asprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vasprintf.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vasprintf.c:35:14: warning: Null pointer passed as an argument to a 'nonnull' parameter
if (!(*s = strdup(sfstruse(f))))
^~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/tmpfile.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ungetc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vfprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vfscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vsnprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vsprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vsscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_doprnt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_doscan.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_filbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_flsbuf.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/uwin
iffe: test: is sys/types.h a header ... yes
iffe: test: is a64l a library function ... yes
iffe: test: is acosh a library function ... no
iffe: test: is asinh a library function ... no
iffe: test: is atanh a library function ... no
iffe: test: is cbrt a library function ... no
iffe: test: is ceil a library function ... no
iffe: test: is crypt a library function ... no
iffe: test: is erf a library function ... no
iffe: test: is exp a library function ... no
iffe: test: is expm1 a library function ... no
iffe: test: is floor a library function ... no
iffe: test: is gamma a library function ... no
iffe: test: is getpass a library function ... yes
iffe: test: is lgamma a library function ... no
iffe: test: is log a library function ... no
iffe: test: is log1p a library function ... no
iffe: test: is random a library function ... yes
iffe: test: is rcmd a library function ... yes
iffe: test: is rint a library function ... no
iffe: test: is srand48 a library function ... yes
iffe: test: is copysign a library function ... yes
iffe: test: is logb a library function ... no
iffe: test: is finite a library function ... yes
iffe: test: is drem a library function ... no
iffe: test: is sqrt a library function ... no
iffe: test: is ilogb a library function ... no
iffe: test: is remainder a library function ... no
iffe: test: is scalb a library function ... no
iffe: test: is _copysign a library function ... no
iffe: test: is _finite a library function ... no
iffe: test: is _scalb a library function ... no
iffe: test: is __iob_func a library function ... no
iffe: test: is _p__iob a library function ... no
iffe: test: is __p__iob a library function ... no
iffe: test: is _iob a library data symbol ... no
iffe: test: cat{ ... }end ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdfun.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdsprnt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdvbuf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdvsnprnt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdvsprnt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/_stdvsscn.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fgetwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fwprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/putwchar.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vfwscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/wprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fgetws.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fwscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/swprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vswprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/wscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fputwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/swscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vswscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fputws.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getwchar.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/ungetwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vwprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fwide.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/putwc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vfwprintf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/vwscanf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/stdio_c99.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fcloseall.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/fmemopen.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getdelim.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Istdio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/stdio/getline.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/frexp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/frexpl.c
+ cmp -s FEATURE/mmap ast_mmap.h
+ 2> /dev/null
+ rm -f ast_mmap.h
+ silent test -d .
+ /bin/cp FEATURE/mmap ast_mmap.h
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astcopy.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/libpath.sh
iffe: test: is sys/types.h a header ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/libpath.sh ...
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/libpath.sh ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Imisc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' '-DCONF_LIBSUFFIX=".so"' '-DCONF_LIBPREFIX="lib"' '-DHOSTTYPE="linux.i386-64"' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astconf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iport -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port -Isfio -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sfio -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astdynamic.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astlicense.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astlicense.c:526:2: warning: Value stored to 'level' is never read
level = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astlicense.c:602:4: warning: Value stored to 'n' is never read
n = 0;
^ ~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astquery.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/astwinsize.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c conftab.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/port/aststatic.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getopt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getoptl.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/aso.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/asoactivecpu.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/asolock.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/asorelax.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/asothreadid.c
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sched
iffe: test: is sys/types.h a header ... yes
iffe: test: is sched.h a header ... yes
iffe: test: is sched_yield a library function ... yes
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iaso -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/aso/asoyield.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c: In function 'vm_initialize_hook':
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:930:2: warning: '__free_hook' is deprecated (declared at /usr/include/malloc.h:172) [-Wdeprecated-declarations]
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:931:2: warning: '__malloc_hook' is deprecated (declared at /usr/include/malloc.h:175) [-Wdeprecated-declarations]
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:932:2: warning: '__memalign_hook' is deprecated (declared at /usr/include/malloc.h:182) [-Wdeprecated-declarations]
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:933:2: warning: '__realloc_hook' is deprecated (declared at /usr/include/malloc.h:178) [-Wdeprecated-declarations]
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c: At top level:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:936:1: warning: '__malloc_initialize_hook' is deprecated (declared at /usr/include/malloc.h:169) [-Wdeprecated-declarations]
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/malloc.c:252:75: warning: Branch condition evaluates to a garbage value
if (*file == '&' && *(file += 1) || strncmp(file, "/dev/fd/", 8) == 0 && *(file += 8))
^~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmbest.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmbest.c:695:17: warning: Dereference of undefined pointer value
{ LINK(last) = head = small->free;
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmbest.c:846:5: warning: Value stored to 'np' is never read
np = bestpackextend(vm, pack, rp, newz, VM_SEGEXTEND);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmclear.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmclose.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmdcderive.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmdcshare.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmdcsystem.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmdebug.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmdisc.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmexit.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmgetmem.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmlast.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmmaddress.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmopen.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmopen.c:54:10: warning: Value stored to 'seg' during its initialization is never read
Seg_t *seg = (Seg_t*)Version; /* stop compiler's warning */
^~~ ~~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmpool.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmpool.c:103:13: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'list')
if((list = list->next) )
^~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmsegment.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmsegment.c:127:27: warning: Access to field 'next' results in a dereference of a null pointer (loaded from variable 'vh')
for(vh = _Vmhold; ; vh = vh->next)
^~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmset.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmstat.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmstrdup.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmtrace.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Ivmalloc -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/vmalloc/vmuserdata.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/a64l.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/acosh.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/asinh.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/atanh.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/cbrt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/crypt.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/erf.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/err.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/exp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/exp__E.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/expm1.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/gamma.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/getpass.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/lgamma.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/log.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/log1p.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/log__L.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/rand48.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/random.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/rcmd.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/rint.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Iuwin -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/uwin/support.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std '-D__OBSOLETE__=20130101' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/disc/sfstrtmp.c
+ cc -D_BLD_DLL -fPIC -D_BLD_ast -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast -Icomp -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include -Istd -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/obsolete/spawn.c
+ /usr/x86_64-suse-linux/bin/ar rc libast.a state.o intercept.o transition.o opendir.o readdir.o rewinddir.o seekdir.o telldir.o getcwd.o fastfind.o hashalloc.o hashdump.o hashfree.o hashlast.o hashlook.o hashscan.o hashsize.o hashview.o hashwalk.o memhash.o memsum.o strhash.o strkey.o strsum.o stracmp.o strnacmp.o ccmap.o ccmapid.o ccnative.o chresc.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a chrtoi.o streval.o strexpr.o strmatch.o strcopy.o modei.o modex.o strmode.o strlcat.o strlcpy.o strlook.o strncopy.o strsearch.o strpsearch.o stresc.o stropt.o strtape.o strpcmp.o strnpcmp.o strvcmp.o strnvcmp.o tok.o tokline.o tokscan.o pathaccess.o pathcat.o pathcanon.o pathcheck.o pathopen.o pathpath.o pathexists.o pathfind.o pathkey.o pathprobe.o pathrepl.o pathnative.o pathposix.o pathtemp.o pathtmp.o pathstat.o pathgetlink.o pathsetlink.o pathbin.o pathshell.o pathcd.o pathprog.o fs3d.o ftwalk.o ftwflags.o fts.o astintercept.o conformance.o getenv.o setenviron.o optget.o optjoin.o optesc.o optctx.o strsort.o struniq.o magic.o mime.o mimetype.o signal.o sigflag.o systrace.o error.o errorf.o errormsg.o errorx.o localeconv.o setlocale.o translate.o catopen.o iconv.o lc.o lctab.o mc.o base64.o qp.o recfmt.o recstr.o reclen.o fmtrec.o fmtbase.o fmtbuf.o fmtclock.o fmtdev.o fmtelapsed.o fmterror.o fmtesc.o fmtfmt.o fmtfs.o fmtident.o fmtint.o fmtip4.o fmtip6.o fmtls.o fmtmatch.o fmtmode.o fmtnum.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a fmtperm.o fmtre.o fmttime.o fmtuid.o fmtgid.o fmtsignal.o fmtscale.o fmttmx.o fmttv.o fmtversion.o strelapsed.o strperm.o struid.o strgid.o strtoip4.o strtoip6.o stack.o stk.o swapget.o swapmem.o swapop.o swapput.o sigdata.o sigcrit.o sigunblock.o procopen.o procclose.o procrun.o procfree.o tmdate.o tmequiv.o tmfix.o tmfmt.o tmform.o tmgoff.o tminit.o tmleap.o tmlex.o tmlocale.o tmmake.o tmpoff.o tmscan.o tmsleep.o tmtime.o tmtype.o tmweek.o tmword.o tmzone.o tmxdate.o tmxduration.o tmxfmt.o tmxgettime.o tmxleap.o tmxmake.o tmxscan.o tmxsettime.o tmxsleep.o tmxtime.o tmxtouch.o tvcmp.o tvgettime.o tvsettime.o tvsleep.o tvtouch.o cmdarg.o vecargs.o vecfile.o vecfree.o vecload.o vecstring.o univdata.o touch.o mnt.o debug.o memccpy.o memchr.o memcmp.o memcpy.o memdup.o memmove.o memset.o mkdir.o mkfifo.o mknod.o rmdir.o remove.o rename.o link.o unlink.o strdup.o strchr.o strrchr.o strstr.o strtod.o strtold.o strtol.o strtoll.o strtoul.o strtoull.o strton.o strtonll.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a strntod.o strntold.o strnton.o strntonll.o strntol.o strntoll.o strntoul.o strntoull.o strcasecmp.o strncasecmp.o strerror.o mktemp.o tmpnam.o fsync.o execlp.o execve.o execvp.o execvpe.o spawnveg.o spawnvex.o vfork.o killpg.o hsearch.o tsearch.o getlogin.o putenv.o setenv.o unsetenv.o lstat.o statvfs.o eaccess.o gross.o omitted.o readlink.o symlink.o getpgrp.o setpgid.o setsid.o waitpid.o creat64.o at.o atexit.o getdents.o getwd.o dup2.o errno.o getpreroot.o ispreroot.o realopen.o setpreroot.o getgroups.o mount.o system.o iblocks.o modedata.o tmdata.o memfatal.o sfkeyprintf.o sfdcdio.o sfdcdos.o sfdcfilter.o sfdcseekable.o sfdcslow.o sfdcsubstr.o sfdctee.o sfdcunion.o sfdcmore.o sfdcprefix.o wc.o wc2utf8.o basename.o closelog.o dirname.o fmtmsglib.o fnmatch.o ftw.o getdate.o getsubopt.o glob.o nftw.o openlog.o re_comp.o resolvepath.o realpath.o regcmp.o regexp.o setlogmask.o strftime.o strptime.o swab.o syslog.o tempnam.o wordexp.o mktime.o regalloc.o regclass.o regcoll.o regcomp.o regcache.o regdecomp.o regerror.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a regexec.o regfatal.o reginit.o regnexec.o regsubcomp.o regsubexec.o regsub.o regrecord.o regrexec.o regstat.o dtclose.o dtdisc.o dthash.o dtlist.o dtmethod.o dtopen.o dtrehash.o dtstat.o dtstrhash.o dttree.o dtuser.o dtview.o dtwalk.o dtnew.o dtcomp.o sfclose.o sfclrlock.o sfdisc.o sfdlen.o sfexcept.o sfgetl.o sfgetu.o sfcvt.o sfecvt.o sffcvt.o sfextern.o sffilbuf.o sfflsbuf.o sfprints.o sfgetd.o sfgetr.o sfllen.o sfmode.o sfmove.o sfnew.o sfpkrd.o sfnotify.o sfnputc.o sfopen.o sfpeek.o sfpoll.o sfpool.o sfpopen.o sfprintf.o sfputd.o sfputl.o sfputr.o sfputu.o sfrd.o sfread.o sfreserve.o sfscanf.o sfseek.o sfset.o sfsetbuf.o sfsetfd.o sfsize.o sfsk.o sfstack.o sfstrtod.o sfsync.o sfswap.o sftable.o sftell.o sftmp.o sfungetc.o sfvprintf.o sfvscanf.o sfwr.o sfwrite.o sfpurge.o sfraise.o sfwalk.o sfgetm.o sfmutex.o sfputm.o sfresize.o sfgetwc.o sfputwc.o _sfclrerr.o _sfeof.o _sferror.o _sffileno.o _sfopen.o _sfstacked.o _sfvalue.o _sfgetc.o _sfgetl.o _sfgetl2.o _sfgetu.o _sfgetu2.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a _sfdlen.o _sfllen.o _sfslen.o _sfulen.o _sfputc.o _sfputd.o _sfputl.o _sfputm.o _sfputu.o clearerr.o fclose.o fdopen.o feof.o ferror.o fflush.o fgetc.o fgetpos.o fgets.o fileno.o fopen.o fprintf.o fpurge.o fputc.o fputs.o fread.o freopen.o fscanf.o fseek.o fseeko.o fsetpos.o ftell.o ftello.o fwrite.o flockfile.o ftrylockfile.o funlockfile.o getc.o getchar.o getw.o pclose.o popen.o printf.o putc.o putchar.o puts.o putw.o rewind.o scanf.o setbuf.o setbuffer.o setlinebuf.o setvbuf.o snprintf.o sprintf.o sscanf.o asprintf.o vasprintf.o tmpfile.o ungetc.o vfprintf.o vfscanf.o vprintf.o vscanf.o vsnprintf.o vsprintf.o vsscanf.o _doprnt.o _doscan.o _filbuf.o _flsbuf.o _stdfun.o _stdopen.o _stdprintf.o _stdscanf.o _stdsprnt.o _stdvbuf.o _stdvsnprnt.o _stdvsprnt.o _stdvsscn.o fgetwc.o fwprintf.o putwchar.o vfwscanf.o wprintf.o fgetws.o fwscanf.o swprintf.o vswprintf.o wscanf.o fputwc.o getwc.o swscanf.o vswscanf.o fputws.o getwchar.o ungetwc.o vwprintf.o fwide.o putwc.o vfwprintf.o vwscanf.o
+ /usr/x86_64-suse-linux/bin/ar rc libast.a stdio_c99.o fcloseall.o fmemopen.o getdelim.o getline.o frexp.o frexpl.o astcopy.o astconf.o astdynamic.o astlicense.o astquery.o astwinsize.o conftab.o aststatic.o getopt.o getoptl.o aso.o asoactivecpu.o asolock.o asorelax.o asothreadid.o asoyield.o malloc.o vmbest.o vmclear.o vmclose.o vmdcderive.o vmdcshare.o vmdcsystem.o vmdebug.o vmdisc.o vmexit.o vmgetmem.o vmlast.o vmmaddress.o vmopen.o vmpool.o vmsegment.o vmset.o vmstat.o vmstrdup.o vmtrace.o vmuserdata.o a64l.o acosh.o asinh.o atanh.o cbrt.o crypt.o erf.o err.o exp.o exp__E.o expm1.o gamma.o getpass.o lgamma.o log.o log1p.o log__L.o rand48.o random.o rcmd.o rint.o support.o sfstrtmp.o spawn.o
+ 1> /dev/null 2>& 1
+ test '' '=' libast.a
+ /usr/bin/cmp -s libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a.old
+ 2> /dev/null
+ true
+ /bin/cp libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ 1> /dev/null 2>& 1
+ test '' '=' man/LIBAST.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/LIBAST.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/LIBAST.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/LIBAST.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/LIBAST.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/LIBAST.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/LIBAST.3
+ test '' '=' man/aso.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/aso.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/aso.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/aso.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/aso.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/aso.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/aso.3
+ test '' '=' man/ast.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ast.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ast.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ast.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ast.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ast.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ast.3
+ test '' '=' man/astsa.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/astsa.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/astsa.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/astsa.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/astsa.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/astsa.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/astsa.3
+ test '' '=' man/cdt.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/cdt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/cdt.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/cdt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/cdt.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/cdt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/cdt.3
+ test '' '=' man/chr.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/chr.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/chr.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/chr.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/chr.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/chr.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/chr.3
+ test '' '=' man/compat.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/compat.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/compat.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/compat.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/compat.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/compat.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/compat.3
+ test '' '=' man/error.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/error.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/error.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/error.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/error.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/error.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/error.3
+ test '' '=' man/find.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/find.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/find.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/find.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/find.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/find.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/find.3
+ test '' '=' man/fmt.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fmt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmt.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmt.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fmt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmt.3
+ test '' '=' man/fmtls.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fmtls.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmtls.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmtls.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmtls.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fmtls.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fmtls.3
+ test '' '=' man/fs3d.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fs3d.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fs3d.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fs3d.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fs3d.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/fs3d.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/fs3d.3
+ test '' '=' man/ftwalk.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ftwalk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ftwalk.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ftwalk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ftwalk.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ftwalk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ftwalk.3
+ test '' '=' man/getcwd.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/getcwd.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/getcwd.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/getcwd.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/getcwd.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/getcwd.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/getcwd.3
+ test '' '=' man/hash.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/hash.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/hash.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/hash.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/hash.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/hash.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/hash.3
+ test '' '=' man/iblocks.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/iblocks.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/iblocks.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/iblocks.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/iblocks.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/iblocks.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/iblocks.3
+ test '' '=' man/int.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/int.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/int.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/int.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/int.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/int.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/int.3
+ test '' '=' man/ip6.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ip6.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ip6.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ip6.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ip6.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/ip6.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/ip6.3
+ test '' '=' man/magic.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/magic.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/magic.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/magic.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/magic.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/magic.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/magic.3
+ test '' '=' man/mem.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/mem.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mem.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mem.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mem.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/mem.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mem.3
+ test '' '=' man/mime.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/mime.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mime.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mime.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mime.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/mime.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/mime.3
+ test '' '=' man/modecanon.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/modecanon.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/modecanon.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/modecanon.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/modecanon.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/modecanon.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/modecanon.3
+ test '' '=' man/optget.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/optget.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/optget.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/optget.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/optget.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/optget.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/optget.3
+ test '' '=' man/path.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/path.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/path.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/path.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/path.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/path.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/path.3
+ test '' '=' man/preroot.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/preroot.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/preroot.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/preroot.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/preroot.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/preroot.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/preroot.3
+ test '' '=' man/proc.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/proc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/proc.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/proc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/proc.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/proc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/proc.3
+ test '' '=' man/re.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/re.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/re.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/re.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/re.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/re.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/re.3
+ test '' '=' man/regex.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/regex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/regex.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/regex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/regex.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/regex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/regex.3
+ test '' '=' man/setenviron.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/setenviron.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/setenviron.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/setenviron.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/setenviron.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/setenviron.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/setenviron.3
+ test '' '=' man/sfdisc.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sfdisc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfdisc.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfdisc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfdisc.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sfdisc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfdisc.3
+ test '' '=' man/sfio.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sfio.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfio.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfio.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfio.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sfio.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sfio.3
+ test '' '=' man/sig.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sig.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sig.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sig.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sig.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/sig.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/sig.3
+ test '' '=' man/spawnveg.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/spawnveg.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnveg.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnveg.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnveg.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/spawnveg.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnveg.3
+ test '' '=' man/spawnvex.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/spawnvex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnvex.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnvex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnvex.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/spawnvex.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/spawnvex.3
+ test '' '=' man/stak.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stak.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stak.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stak.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stak.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stak.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stak.3
+ test '' '=' man/stk.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stk.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stk.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stk.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stk.3
+ test '' '=' man/strcopy.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strcopy.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strcopy.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strcopy.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strcopy.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strcopy.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strcopy.3
+ test '' '=' man/strdup.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strdup.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strdup.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strdup.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strdup.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strdup.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strdup.3
+ test '' '=' man/strelapsed.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strelapsed.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strelapsed.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strelapsed.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strelapsed.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strelapsed.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strelapsed.3
+ test '' '=' man/strerror.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strerror.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strerror.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strerror.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strerror.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strerror.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strerror.3
+ test '' '=' man/stresc.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stresc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stresc.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stresc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stresc.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stresc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stresc.3
+ test '' '=' man/streval.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/streval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/streval.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/streval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/streval.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/streval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/streval.3
+ test '' '=' man/strgid.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strgid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strgid.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strgid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strgid.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strgid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strgid.3
+ test '' '=' man/strmatch.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strmatch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strmatch.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strmatch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strmatch.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strmatch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strmatch.3
+ test '' '=' man/stropt.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stropt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stropt.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stropt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stropt.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/stropt.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/stropt.3
+ test '' '=' man/strperm.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strperm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strperm.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strperm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strperm.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strperm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strperm.3
+ test '' '=' man/strsignal.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strsignal.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsignal.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsignal.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsignal.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strsignal.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsignal.3
+ test '' '=' man/strsort.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strsort.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsort.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsort.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsort.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strsort.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strsort.3
+ test '' '=' man/strtape.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strtape.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strtape.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strtape.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strtape.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strtape.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strtape.3
+ test '' '=' man/strton.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strton.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strton.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strton.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strton.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/strton.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/strton.3
+ test '' '=' man/struid.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/struid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/struid.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/struid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/struid.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/struid.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/struid.3
+ test '' '=' man/swap.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/swap.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/swap.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/swap.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/swap.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/swap.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/swap.3
+ test '' '=' man/tab.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tab.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tab.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tab.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tab.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tab.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tab.3
+ test '' '=' man/tm.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tm.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tm.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tm.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tm.3
+ test '' '=' man/tmx.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tmx.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tmx.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tmx.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tmx.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tmx.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tmx.3
+ test '' '=' man/tok.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tok.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tok.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tok.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tok.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tok.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tok.3
+ test '' '=' man/touch.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/touch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/touch.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/touch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/touch.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/touch.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/touch.3
+ test '' '=' man/tv.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tv.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tv.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tv.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tv.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/tv.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/tv.3
+ test '' '=' man/vecargs.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/vecargs.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vecargs.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vecargs.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vecargs.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/vecargs.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vecargs.3
+ test '' '=' man/vmalloc.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/vmalloc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vmalloc.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vmalloc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vmalloc.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/man/vmalloc.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/vmalloc.3
+ test '' '=' ast.req
+ /usr/bin/cmp -s ast.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/ast
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/ast /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/ast.old
+ 2> /dev/null
+ true
+ /bin/cp ast.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/ast
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_common.h
+ 1> 1.9384.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_common.h 1.9384.x
+ 2> /dev/null
+ mv 1.9384.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_common.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast.h
+ 1> 1.9387.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast.h 1.9387.x
+ 2> /dev/null
+ mv 1.9387.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_debug.h
+ 1> 1.9390.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_debug.h 1.9390.x
+ 2> /dev/null
+ mv 1.9390.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_debug.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_dir.h
+ 1> 1.9393.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_dir.h 1.9393.x
+ 2> /dev/null
+ mv 1.9393.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_dir.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_errorf.h
+ 1> 1.9396.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_errorf.h 1.9396.x
+ 2> /dev/null
+ mv 1.9396.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_errorf.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_getopt.h
+ 1> 1.9399.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_getopt.h 1.9399.x
+ 2> /dev/null
+ mv 1.9399.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_getopt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_ioctl.h
+ 1> 1.9402.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ioctl.h 1.9402.x
+ 2> /dev/null
+ mv 1.9402.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ioctl.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_intercept.h
+ 1> 1.9405.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_intercept.h 1.9405.x
+ 2> /dev/null
+ mv 1.9405.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_intercept.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_namval.h
+ 1> 1.9408.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_namval.h 1.9408.x
+ 2> /dev/null
+ mv 1.9408.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_namval.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_socket.h
+ 1> 1.9411.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_socket.h 1.9411.x
+ 2> /dev/null
+ mv 1.9411.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_socket.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_std.h
+ 1> 1.9414.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h 1.9414.x
+ 2> /dev/null
+ mv 1.9414.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ast_windows.h
+ 1> 1.9417.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_windows.h 1.9417.x
+ 2> /dev/null
+ mv 1.9417.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_windows.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ccode.h
+ 1> 1.9420.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h 1.9420.x
+ 2> /dev/null
+ mv 1.9420.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/cdt.h
+ 1> 1.9423.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cdt.h 1.9423.x
+ 2> /dev/null
+ mv 1.9423.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cdt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/cdt/cdtlib.h
+ 1> 1.9426.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cdtlib.h 1.9426.x
+ 2> /dev/null
+ mv 1.9426.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cdtlib.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/cmdarg.h
+ 1> 1.9429.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdarg.h 1.9429.x
+ 2> /dev/null
+ mv 1.9429.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdarg.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/debug.h
+ 1> 1.9432.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/debug.h 1.9432.x
+ 2> /dev/null
+ mv 1.9432.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/debug.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/dt.h
+ 1> 1.9435.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dt.h 1.9435.x
+ 2> /dev/null
+ mv 1.9435.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/error.h
+ 1> 1.9438.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/error.h 1.9438.x
+ 2> /dev/null
+ mv 1.9438.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/error.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/find.h
+ 1> 1.9441.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/find.h 1.9441.x
+ 2> /dev/null
+ mv 1.9441.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/find.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/ftw.h
+ 1> 1.9444.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ftw.h 1.9444.x
+ 2> /dev/null
+ mv 1.9444.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ftw.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ftwalk.h
+ 1> 1.9447.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ftwalk.h 1.9447.x
+ 2> /dev/null
+ mv 1.9447.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ftwalk.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/fts.h
+ 1> 1.9450.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fts.h 1.9450.x
+ 2> /dev/null
+ mv 1.9450.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fts.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/fs3d.h
+ 1> 1.9453.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fs3d.h 1.9453.x
+ 2> /dev/null
+ mv 1.9453.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fs3d.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/getopt.h
+ 1> 1.9456.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/getopt.h 1.9456.x
+ 2> /dev/null
+ mv 1.9456.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/getopt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/glob.h
+ 1> 1.9459.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/glob.h 1.9459.x
+ 2> /dev/null
+ mv 1.9459.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/glob.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/hash.h
+ 1> 1.9462.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hash.h 1.9462.x
+ 2> /dev/null
+ mv 1.9462.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hash.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/hashkey.h
+ 1> 1.9465.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hashkey.h 1.9465.x
+ 2> /dev/null
+ mv 1.9465.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hashkey.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/hashpart.h
+ 1> 1.9468.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hashpart.h 1.9468.x
+ 2> /dev/null
+ mv 1.9468.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/hashpart.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ip6.h
+ 1> 1.9471.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ip6.h 1.9471.x
+ 2> /dev/null
+ mv 1.9471.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ip6.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' lc.h
+ 1> 1.9474.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/lc.h 1.9474.x
+ 2> /dev/null
+ mv 1.9474.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/lc.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/ls.h
+ 1> 1.9477.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ls.h 1.9477.x
+ 2> /dev/null
+ mv 1.9477.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ls.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/magic.h
+ 1> 1.9480.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/magic.h 1.9480.x
+ 2> /dev/null
+ mv 1.9480.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/magic.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/mc.h
+ 1> 1.9483.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mc.h 1.9483.x
+ 2> /dev/null
+ mv 1.9483.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mc.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/mime.h
+ 1> 1.9486.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mime.h 1.9486.x
+ 2> /dev/null
+ mv 1.9486.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mime.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/mnt.h
+ 1> 1.9489.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mnt.h 1.9489.x
+ 2> /dev/null
+ mv 1.9489.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/mnt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/modecanon.h
+ 1> 1.9492.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/modecanon.h 1.9492.x
+ 2> /dev/null
+ mv 1.9492.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/modecanon.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/modex.h
+ 1> 1.9495.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/modex.h 1.9495.x
+ 2> /dev/null
+ mv 1.9495.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/modex.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/namval.h
+ 1> 1.9498.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/namval.h 1.9498.x
+ 2> /dev/null
+ mv 1.9498.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/namval.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/option.h
+ 1> 1.9501.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/option.h 1.9501.x
+ 2> /dev/null
+ mv 1.9501.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/option.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/proc.h
+ 1> 1.9504.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/proc.h 1.9504.x
+ 2> /dev/null
+ mv 1.9504.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/proc.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/re_comp.h
+ 1> 1.9507.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/re_comp.h 1.9507.x
+ 2> /dev/null
+ mv 1.9507.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/re_comp.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/recfmt.h
+ 1> 1.9510.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/recfmt.h 1.9510.x
+ 2> /dev/null
+ mv 1.9510.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/recfmt.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/regex.h
+ 1> 1.9513.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/regex.h 1.9513.x
+ 2> /dev/null
+ mv 1.9513.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/regex.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/regexp.h
+ 1> 1.9516.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/regexp.h 1.9516.x
+ 2> /dev/null
+ mv 1.9516.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/regexp.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio.h
+ 1> 1.9519.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h 1.9519.x
+ 2> /dev/null
+ mv 1.9519.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio_s.h
+ 1> 1.9522.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio_s.h 1.9522.x
+ 2> /dev/null
+ mv 1.9522.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio_s.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfio_t.h
+ 1> 1.9525.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio_t.h 1.9525.x
+ 2> /dev/null
+ mv 1.9525.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio_t.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/sfdisc.h
+ 1> 1.9528.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfdisc.h 1.9528.x
+ 2> /dev/null
+ mv 1.9528.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfdisc.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/shcmd.h
+ 1> 1.9531.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shcmd.h 1.9531.x
+ 2> /dev/null
+ mv 1.9531.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shcmd.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/stack.h
+ 1> 1.9534.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stack.h 1.9534.x
+ 2> /dev/null
+ mv 1.9534.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stack.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/stak.h
+ 1> 1.9537.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stak.h 1.9537.x
+ 2> /dev/null
+ mv 1.9537.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stak.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/stk.h
+ 1> 1.9540.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stk.h 1.9540.x
+ 2> /dev/null
+ mv 1.9540.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stk.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/swap.h
+ 1> 1.9543.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/swap.h 1.9543.x
+ 2> /dev/null
+ mv 1.9543.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/swap.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/tar.h
+ 1> 1.9546.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tar.h 1.9546.x
+ 2> /dev/null
+ mv 1.9546.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tar.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/times.h
+ 1> 1.9549.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/times.h 1.9549.x
+ 2> /dev/null
+ mv 1.9549.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/times.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/tm.h
+ 1> 1.9552.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tm.h 1.9552.x
+ 2> /dev/null
+ mv 1.9552.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tm.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/tok.h
+ 1> 1.9555.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tok.h 1.9555.x
+ 2> /dev/null
+ mv 1.9555.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tok.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/usage.h
+ 1> 1.9558.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/usage.h 1.9558.x
+ 2> /dev/null
+ mv 1.9558.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/usage.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/vdb.h
+ 1> 1.9561.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vdb.h 1.9561.x
+ 2> /dev/null
+ mv 1.9561.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vdb.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/vecargs.h
+ 1> 1.9564.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vecargs.h 1.9564.x
+ 2> /dev/null
+ mv 1.9564.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vecargs.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/vmalloc.h
+ 1> 1.9567.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vmalloc.h 1.9567.x
+ 2> /dev/null
+ mv 1.9567.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/vmalloc.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/wait.h
+ 1> 1.9570.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wait.h 1.9570.x
+ 2> /dev/null
+ mv 1.9570.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wait.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/wordexp.h
+ 1> 1.9573.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wordexp.h 1.9573.x
+ 2> /dev/null
+ mv 1.9573.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wordexp.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/bytesex.h
+ 1> 1.9576.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/bytesex.h 1.9576.x
+ 2> /dev/null
+ mv 1.9576.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/bytesex.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/endian.h
+ 1> 1.9579.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/endian.h 1.9579.x
+ 2> /dev/null
+ mv 1.9579.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/endian.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/comp/fnmatch.h
+ 1> 1.9582.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fnmatch.h 1.9582.x
+ 2> /dev/null
+ mv 1.9582.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fnmatch.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/magicid.h
+ 1> 1.9585.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/magicid.h 1.9585.x
+ 2> /dev/null
+ mv 1.9585.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/magicid.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/fnv.h
+ 1> 1.9588.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fnv.h 1.9588.x
+ 2> /dev/null
+ mv 1.9588.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/fnv.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/include/aso.h
+ 1> 1.9591.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/aso.h 1.9591.x
+ 2> /dev/null
+ mv 1.9591.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/aso.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/dirent.h
+ 1> 1.9594.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dirent.h 1.9594.x
+ 2> /dev/null
+ mv 1.9594.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dirent.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/iconv.h
+ 1> 1.9597.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/iconv.h 1.9597.x
+ 2> /dev/null
+ mv 1.9597.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/iconv.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/nl_types.h
+ 1> 1.9600.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nl_types.h 1.9600.x
+ 2> /dev/null
+ mv 1.9600.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nl_types.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/stdio.h
+ 1> 1.9603.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stdio.h 1.9603.x
+ 2> /dev/null
+ mv 1.9603.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stdio.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/wchar.h
+ 1> 1.9606.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wchar.h 1.9606.x
+ 2> /dev/null
+ mv 1.9606.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wchar.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/std/wctype.h
+ 1> 1.9609.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wctype.h 1.9609.x
+ 2> /dev/null
+ mv 1.9609.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/wctype.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' align.h
+ 1> 1.9612.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/align.h 1.9612.x
+ 2> /dev/null
+ mv 1.9612.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/align.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' preroot.h
+ 1> 1.9615.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/preroot.h 1.9615.x
+ 2> /dev/null
+ mv 1.9615.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/preroot.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' sig.h
+ 1> 1.9618.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sig.h 1.9618.x
+ 2> /dev/null
+ mv 1.9618.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sig.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' tmx.h
+ 1> 1.9621.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tmx.h 1.9621.x
+ 2> /dev/null
+ mv 1.9621.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tmx.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' tv.h
+ 1> 1.9624.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tv.h 1.9624.x
+ 2> /dev/null
+ mv 1.9624.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/tv.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_api.h
+ 1> 1.9627.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_api.h 1.9627.x
+ 2> /dev/null
+ mv 1.9627.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_api.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_aso.h
+ 1> 1.9630.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_aso.h 1.9630.x
+ 2> /dev/null
+ mv 1.9630.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_aso.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_botch.h
+ 1> 1.9633.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_botch.h 1.9633.x
+ 2> /dev/null
+ mv 1.9633.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_botch.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_ccode.h
+ 1> 1.9636.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ccode.h 1.9636.x
+ 2> /dev/null
+ mv 1.9636.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ccode.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_fcntl.h
+ 1> 1.9639.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fcntl.h 1.9639.x
+ 2> /dev/null
+ mv 1.9639.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fcntl.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' def fddir
iffe: test: is sys/types.h a header ... yes
iffe: test: is fddir a command ... no
iffe: test: is fddir a library data symbol ... no
iffe: test: is fddir.h a header ... no
iffe: test: is fddir a reserved keyword ... no
iffe: test: is fddir a library function ... no
iffe: test: is fddir a math library symbol ... no
iffe: test: is sys/fddir.h a header ... no
iffe: test: is fddir a type or typedef ... no
+ cmp -s FEATURE/fddir ast_fddir.h
+ 2> /dev/null
+ rm -f ast_fddir.h
+ silent test -d .
+ /bin/cp FEATURE/fddir ast_fddir.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_fddir.h
+ 1> 1.9824.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fddir.h 1.9824.x
+ 2> /dev/null
+ mv 1.9824.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fddir.h
+ cmp -s FEATURE/float ast_float.h
+ 2> /dev/null
+ rm -f ast_float.h
+ silent test -d .
+ /bin/cp FEATURE/float ast_float.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_float.h
+ 1> 1.9831.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_float.h 1.9831.x
+ 2> /dev/null
+ mv 1.9831.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_float.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_fs.h
+ 1> 1.9834.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fs.h 1.9834.x
+ 2> /dev/null
+ mv 1.9834.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_fs.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_lib.h
+ 1> 1.9837.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_lib.h 1.9837.x
+ 2> /dev/null
+ mv 1.9837.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_lib.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_map.h
+ 1> 1.9840.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_map.h 1.9840.x
+ 2> /dev/null
+ mv 1.9840.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_map.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_mmap.h
+ 1> 1.9843.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_mmap.h 1.9843.x
+ 2> /dev/null
+ mv 1.9843.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_mmap.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_mode.h
+ 1> 1.9846.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_mode.h 1.9846.x
+ 2> /dev/null
+ mv 1.9846.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_mode.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/ndbm
iffe: test: is sys/types.h a header ... yes
iffe: test: is -ldb a library ... yes
iffe: test: sleepycat ndbm compatibility ... yes
+ cmp -s FEATURE/ndbm ast_ndbm.h
+ 2> /dev/null
+ rm -f ast_ndbm.h
+ silent test -d .
+ /bin/cp FEATURE/ndbm ast_ndbm.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_ndbm.h
+ 1> 1.9925.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ndbm.h 1.9925.x
+ 2> /dev/null
+ mv 1.9925.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_ndbm.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_param.h
+ 1> 1.9928.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_param.h 1.9928.x
+ 2> /dev/null
+ mv 1.9928.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_param.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_sys.h
+ 1> 1.9931.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_sys.h 1.9931.x
+ 2> /dev/null
+ mv 1.9931.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_sys.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_time.h
+ 1> 1.9934.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_time.h 1.9934.x
+ 2> /dev/null
+ mv 1.9934.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_time.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_tty.h
+ 1> 1.9937.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_tty.h 1.9937.x
+ 2> /dev/null
+ mv 1.9937.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_tty.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_vfork.h
+ 1> 1.9941.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_vfork.h 1.9941.x
+ 2> /dev/null
+ mv 1.9941.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_vfork.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wait.h
+ 1> 1.9944.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wait.h 1.9944.x
+ 2> /dev/null
+ mv 1.9944.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wait.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_limits.h
+ 1> 1.9947.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_limits.h 1.9947.x
+ 2> /dev/null
+ mv 1.9947.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_limits.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_standards.h
+ 1> 1.9950.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_standards.h 1.9950.x
+ 2> /dev/null
+ mv 1.9950.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_standards.h
+ iffe -v -X ast -X std -c 'cc -D_BLD_DLL -fPIC -D_BLD_ast -g ' run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/features/sizeof
iffe: test: is sys/types.h a header ... yes
iffe: test: sizeof(integral-type) ... yes
+ cmp -s FEATURE/sizeof ast_sizeof.h
+ 2> /dev/null
+ rm -f ast_sizeof.h
+ silent test -d .
+ /bin/cp FEATURE/sizeof ast_sizeof.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_sizeof.h
+ 1> 1.10019.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_sizeof.h 1.10019.x
+ 2> /dev/null
+ mv 1.10019.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_sizeof.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_dirent.h
+ 1> 1.10022.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_dirent.h 1.10022.x
+ 2> /dev/null
+ mv 1.10022.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_dirent.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_iconv.h
+ 1> 1.10025.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_iconv.h 1.10025.x
+ 2> /dev/null
+ mv 1.10025.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_iconv.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_nl_types.h
+ 1> 1.10028.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_nl_types.h 1.10028.x
+ 2> /dev/null
+ mv 1.10028.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_nl_types.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_stdio.h
+ 1> 1.10031.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_stdio.h 1.10031.x
+ 2> /dev/null
+ mv 1.10031.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_stdio.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wchar.h
+ 1> 1.10034.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wchar.h 1.10034.x
+ 2> /dev/null
+ mv 1.10034.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wchar.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wctype.h
+ 1> 1.10037.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wctype.h 1.10037.x
+ 2> /dev/null
+ mv 1.10037.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_wctype.h
+ silent test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sys
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sys
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/sys/socket.h
+ 1> 1.10043.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sys/socket.h 1.10043.x
+ 2> /dev/null
+ mv 1.10043.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sys/socket.h
+ silent test ! -d /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file
+ mkdir -p /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file
+ test '' '=' misc/magic.tab
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/magic.tab /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file/magic
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file/magic /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file/magic.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libast/misc/magic.tab /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/file/magic
+ silent grep -l $'define[ \t][ \t]*_[hl][di][rb]_fmtmsg' ast_lib.h
+ 1> /dev/null
+ silent grep -l $'define[ \t][ \t]*_[hl][di][rb]_libgen' ast_lib.h
+ 1> /dev/null
+ silent grep -l $'define[ \t][ \t]*_[hl][di][rb]_syslog' ast_lib.h
+ 1> /dev/null
+ mamake -C lib/libdll -k PACKAGE_OPTIONS=map-libc install
+ iffe -v -c 'cc -D_BLD_DLL -fPIC -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/features/dll
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is dl.h a header ... no
iffe: test: is dlfcn.h a header ... yes
iffe: test: is dll.h a header ... no
iffe: test: is rld_interface.h a header ... no
iffe: test: is mach-o/dyld.h a header ... no
iffe: test: is sys/ldr.h a header ... no
iffe: test: is dlopen a library function ... yes
iffe: test: is dllload a library function ... no
iffe: test: is loadbind a library function ... no
iffe: test: is shl_load a library function ... no
iffe: test: link{ ... }end ... no
iffe: test: run{ ... }end ... yes
iffe: test: output{ ... }end ... yes
+ cmp -s FEATURE/dll dlldefs.h
+ 2> /dev/null
+ rm -f dlldefs.h
+ silent test -d .
+ cp FEATURE/dll dlldefs.h
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_dll -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dlfcn.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllopen.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllfind.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllplug.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dll_lib.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_dll -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllnext.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_dll -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dlllook.c
+ cc -D_BLD_DLL -fPIC -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_dll -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllscan.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllcheck.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_dll -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libdll/dllerror.c
+ /usr/x86_64-suse-linux/bin/ar rc libdll.a dlfcn.o dllopen.o dllfind.o dllplug.o dll_lib.o dllnext.o dlllook.o dllscan.o dllcheck.o dllerror.o
+ 1> /dev/null 2>& 1
+ test '' '=' libdll.a
+ /usr/bin/cmp -s libdll.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a.old
+ 2> /dev/null
+ true
+ /bin/cp libdll.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a
+ 1> /dev/null 2>& 1
+ test '' '=' dll.req
+ /usr/bin/cmp -s dll.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dll
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dll /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dll.old
+ 2> /dev/null
+ true
+ /bin/cp dll.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/dll
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1997,author=gsf' dlldefs.h
+ 1> 1.10517.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dlldefs.h 1.10517.x
+ 2> /dev/null
+ mv 1.10517.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/dlldefs.h
+ mamake -C lib/libcoshell -k PACKAGE_OPTIONS=map-libc install
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coopen.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coopen.c:357:2: warning: Function call argument is an uninitialized value
fcntl(pio[1], F_SETFD, FD_CLOEXEC);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_intercept.h:135:16: note: expanded from macro 'fcntl'
#define fcntl ast_fcntl
^
1 warning generated.
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coclose.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coinit.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coinit.c:98:28: warning: Access to field 'searchf' results in a dereference of a null pointer (loaded from field 'export')
for (ex = (Coexport_t*)dtfirst(co->export); ex; ex = (Coexport_t*)dtnext(co->export, ex))
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cdt.h:328:22: note: expanded from macro 'dtfirst'
#define dtfirst(d) (*(_DT(d)->searchf))((d),(Void_t*)(0),DT_FIRST)
^~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coinit.c:364:7: warning: Value stored to 'm' is never read
m = n;
^ ~
2 warnings generated.
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coexec.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/costash.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/cowait.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/cokill.c
+ iffe -v -c 'cc -fPIC -g ' ref -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : def nfsd
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is nfsd a command ... no
iffe: test: is nfsd a library data symbol ... no
iffe: test: is nfsd.h a header ... no
iffe: test: is nfsd a reserved keyword ... no
iffe: test: is nfsd a library function ... no
iffe: test: is nfsd a math library symbol ... no
iffe: test: is sys/nfsd.h a header ... no
iffe: test: is nfsd a type or typedef ... no
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/cosync.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coquote.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/codata.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coexport.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/procrun.c
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_coshell -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/system.c
+ /usr/x86_64-suse-linux/bin/ar rc libcoshell.a coopen.o coclose.o coinit.o coexec.o costash.o cowait.o cokill.o cosync.o coquote.o codata.o coexport.o procrun.o system.o
+ 1> /dev/null 2>& 1
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/ignore.sh ignore
+ silent test -w ignore -a -x ignore
+ chmod u+w,+x ignore
+ cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/silent.sh silent
+ silent test -w silent -a -x silent
+ chmod u+w,+x silent
+ test '' '=' libcoshell.a
+ /usr/bin/cmp -s libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a.old
+ 2> /dev/null
+ true
+ /bin/cp libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a
+ 1> /dev/null 2>& 1
+ test '' '=' coshell.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coshell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/coshell.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/coshell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/coshell.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coshell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/coshell.3
+ test '' '=' coshell.req
+ /usr/bin/cmp -s coshell.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/coshell
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/coshell /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/coshell.old
+ 2> /dev/null
+ true
+ /bin/cp coshell.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/coshell
+ test '' '=' ignore
+ /usr/bin/cmp -s ignore /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ignore
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ignore /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ignore.old
+ 2> /dev/null
+ true
+ /bin/cp ignore /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ignore
+ test '' '=' silent
+ /usr/bin/cmp -s silent /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/silent
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/silent /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/silent.old
+ 2> /dev/null
+ true
+ /bin/cp silent /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/silent
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1990,author=gsf' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcoshell/coshell.h
+ 1> 1.10893.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/coshell.h 1.10893.x
+ 2> /dev/null
+ mv 1.10893.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/coshell.h
+ mamake -C lib/libsum -k PACKAGE_OPTIONS=map-libc install
+ iffe -v -c 'cc -fPIC -g ' ref -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/features/sum
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is md4.h a header ... no
iffe: test: is -lmd a library ... no
iffe: test: is MD4Init a library function ... no
iffe: test: is md5.h a header ... no
iffe: test: is MD5Init a library function ... no
iffe: test: is sha1.h a header ... no
iffe: test: is SHA1Init a library function ... no
iffe: test: is sha2.h a header ... no
iffe: test: is SHA2Init a library function ... no
+ cc -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sumlib.c
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sumlib.c:165:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha1.c:204:2: warning: Value stored to 'a' is never read
a = b = c = d = e = 0;
^ ~~~~~~~~~~~~~~~~~
In file included from /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sumlib.c:166:
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:625:2: warning: Value stored to 'a' is never read
a = b = c = d = e = f = g = h = T1 = T2 = 0;
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:656:4: warning: Value stored to 'usedspace' is never read
usedspace = freespace = 0;
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:673:2: warning: Value stored to 'usedspace' is never read
usedspace = freespace = 0;
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:769:2: warning: Value stored to 'usedspace' is never read
usedspace = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:988:2: warning: Value stored to 'a' is never read
a = b = c = d = e = f = g = h = T1 = T2 = 0;
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:1019:4: warning: Value stored to 'usedspace' is never read
usedspace = freespace = 0;
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:1036:2: warning: Value stored to 'usedspace' is never read
usedspace = freespace = 0;
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum-sha2.c:1130:2: warning: Value stored to 'usedspace' is never read
usedspace = 0;
^ ~
9 warnings generated.
+ /usr/x86_64-suse-linux/bin/ar rc libsum.a sumlib.o
+ 1> /dev/null 2>& 1
+ test '' '=' libsum.a
+ /usr/bin/cmp -s libsum.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libsum.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libsum.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libsum.a.old
+ 2> /dev/null
+ true
+ /bin/cp libsum.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libsum.a
+ 1> /dev/null 2>& 1
+ test '' '=' sum.req
+ /usr/bin/cmp -s sum.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/sum
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/sum /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/sum.old
+ 2> /dev/null
+ true
+ /bin/cp sum.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/sum
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1996,author=gsf' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libsum/sum.h
+ 1> 1.11196.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sum.h 1.11196.x
+ 2> /dev/null
+ mv 1.11196.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sum.h
+ mamake -C lib/libcmd -k PACKAGE_OPTIONS=map-libc install
+ iffe -v -c 'cc -D_BLD_DLL -fPIC -g ' ref -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/features/sockets
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is sys/socket.h a header ... yes
iffe: test: is arpa/inet.h a header ... yes
iffe: test: is netinet/in.h a header ... yes
iffe: test: is getsockname a library function ... yes
iffe: test: is getsockopt a library function ... yes
iffe: test: is inet_ntoa a library function ... yes
+ iffe -v -c 'cc -D_BLD_DLL -fPIC -g ' ref -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/features/ids
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is endgrent a library function ... yes
iffe: test: is getgrent a library function ... yes
iffe: test: is setgrent a library function ... yes
iffe: test: is sys/fss.h a header ... no
iffe: test: is fsg.h a header ... no
iffe: test: is -lfsg a library ... no
iffe: test: is fsid a library function ... no
iffe: test: is getfsgid a library function ... no
iffe: test: is isfsg a library function ... no
iffe: test: is unistd.h a header ... yes
iffe: test: is getsid a library function ... yes
iffe: test: is fsid a macro ... no
iffe: test: cat{ ... }end ... yes
+ iffe -v -c 'cc -D_BLD_DLL -fPIC -g ' ref -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a : run /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/features/utsname
iffe: test: is sys/types.h a header ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is getdomainname a library function ... yes
iffe: test: is gethostid a library function ... yes
iffe: test: is gethostname a library function ... yes
iffe: test: is sethostname a library function ... yes
iffe: test: is syscall a library function ... yes
iffe: test: is systeminfo a library function ... no
iffe: test: is uname a library function ... yes
iffe: test: is syssgi a library function ... no
iffe: test: is sys/utsname.h a header ... yes
iffe: test: is utsname a type or typedef ... no
iffe: test: is base_rel a member of struct utsname ... no
iffe: test: is idnumber a member of struct utsname ... no
iffe: test: is m_type a member of struct utsname ... no
iffe: test: is nodeext a member of struct utsname ... no
iffe: test: is sys/syscall.h a header ... yes
iffe: test: is sys/systeminfo.h a header ... no
iffe: test: is sys/syssgi.h a header ... no
iffe: test: cross{ ... }end ... yes
+ 1> 1.12193.h
+ cat
+ 0<< \!
#pragma prototyped
/*
* -lcmd extern function prototypes
*/

#include <shcmd.h>

!
+ sort -u
+ sed -e '/^b_[a-z_][a-z_0-9]*(/!d' -e s/^b_// -e 's/(.*//' -e $'s/.*/extern int\tb_&(int, char**, Shbltin_t*);/' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmdinit.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/basename.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cat.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chgrp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chmod.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chown.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cksum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/comm.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cut.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/dirname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/date.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fds.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fmt.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fold.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/getconf.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/head.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/join.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/ln.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/logname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/md5sum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkdir.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkfifo.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mktemp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mv.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/paste.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pathchk.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pids.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rev.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rm.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rmdir.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/stty.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sync.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tail.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tee.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tty.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uniq.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/vmstate.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wc.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/revlib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wclib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/context.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fts_fix.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/lib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/grep.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/xargs.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/iconv.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tr.c
+ cmp -s 1.12193.h cmdext.h
+ 2> /dev/null
+ mv 1.12193.h cmdext.h
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmdinit.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/basename.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cat.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chgrp.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chmod.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chown.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cksum.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmp.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/comm.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c:562:13: warning: Branch condition evaluates to a garbage value
else if (!rm && st.st_mode && !remove(state->path))
^~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c:975:2: warning: Null pointer passed as an argument to a 'nonnull' parameter
memcpy(state->path, file, state->postsiz + 1);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c:1013:9: warning: Potential leak of memory pointed to by 'state'
return error_info.errors != 0;
^~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/error.h:186:22: note: expanded from macro 'error_info'
#define error_info (*_error_infop_)
^~~~~~~~~~~~~
3 warnings generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cut.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cut.c:191:9: warning: Value stored to 'n' is never read
for(n=0,range= -2,dp=lp; *lp!=HUGE; lp+=2)
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cut.c:257:22: warning: Value stored to 'lp' during its initialization is never read
register const int* lp = cut->list;
^~ ~~~~~~~~~
2 warnings generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/dirname.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/date.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:421:14: warning: Dereference of undefined pointer value
np->num = streq(left,right);
^~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast.h:237:21: note: expanded from macro 'streq'
#define streq(a,b) (*(a)==*(b)&&!strcmp(a,b))
^~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:424:15: warning: Function call argument is an uninitialized value
np->num = (strcoll(left,right)>0);
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h:229:18: note: expanded from macro 'strcoll'
#define strcoll _ast_info.collate
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:427:15: warning: Function call argument is an uninitialized value
np->num = (strcoll(left,right)<0);
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h:229:18: note: expanded from macro 'strcoll'
#define strcoll _ast_info.collate
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:430:15: warning: Function call argument is an uninitialized value
np->num = (strcoll(left,right)>=0);
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h:229:18: note: expanded from macro 'strcoll'
#define strcoll _ast_info.collate
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:433:15: warning: Function call argument is an uninitialized value
np->num = (strcoll(left,right)<=0);
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast_std.h:229:18: note: expanded from macro 'strcoll'
#define strcoll _ast_info.collate
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c:436:15: warning: Dereference of undefined pointer value
np->num = !streq(left,right);
^~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast.h:237:21: note: expanded from macro 'streq'
#define streq(a,b) (*(a)==*(b)&&!strcmp(a,b))
^~~~
6 warnings generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fds.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fmt.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fold.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fold.c:219:2: warning: Value stored to 'argc' is never read
argc -= opt_info.index;
^ ~~~~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/getconf.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/head.c
+ cc -D_BLD_DLL -fPIC -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c:284:17: warning: Function call argument is an uninitialized value
name = (pw = getpwuid(user)) ? pw->pw_name : (char*)0;
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c:299:3: warning: Function call argument is an uninitialized value
putid(sp, flags, "uid", name, user);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c:300:3: warning: Function call argument is an uninitialized value
putid(sp, flags, " gid", gname, group);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c:362:8: warning: Function call argument is an uninitialized value
else sfprintf(sp, "%u\n", user);
^~~~~~~~~~~~~~~~~~~~~~~~~~
4 warnings generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/join.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/ln.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/logname.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/md5sum.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkdir.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkfifo.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mktemp.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mktemp.c:113:4: warning: Value stored to 'unsafe' is never read
unsafe = 1;
^ ~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mv.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/paste.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pathchk.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pids.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rev.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rev.c:85:11: warning: Dereference of null pointer
*xp++ = mbchar(cp);
~~~~~~^~~~~~~~~~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rm.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rmdir.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/stty.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sum.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sync.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tail.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tee.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tty.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' '-DHOSTTYPE="linux.i386-64"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uname.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uname.c:377:3: warning: Value stored to 's' is never read
s = buf;
^ ~~~
1 warning generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uniq.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/vmstate.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wc.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/revlib.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -D_BLD_cmd -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wclib.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wclib.c:506:8: warning: Value stored to 'c' is never read
c = WC_MB|WC_ERR;
^ ~~~~~~~~~~~~
1 warning generated.
+ /usr/x86_64-suse-linux/bin/ar x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libsum.a sumlib.o
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/context.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/context.c:141:13: warning: Potential leak of memory pointed to by field 'data'
return 0;
^
1 warning generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fts_fix.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_cmd -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/lib.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?Doug McIlroy <doug at research.bell-labs.com>][-copyright?Copyright (c) 1995-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/grep.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1989-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/xargs.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_BLD_cmd -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 1989-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/iconv.c
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c:831:3: warning: Value stored to 'i' is never read
i = zp - tp->size;
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c:1076:39: warning: Dereference of null pointer (loaded from variable 'u')
if ((c = ccmapchr(state->map, *u)) < 040 || c >= 0177)
^~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h:89:35: note: expanded from macro 'ccmapchr'
#define ccmapchr(m,c) CCMAPCHR(m,c)
^
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h:84:33: note: expanded from macro 'CCMAPCHR'
#define CCMAPCHR(m,c) ((m)?(m)[c]:(c))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c:1076:18: warning: Dereference of null pointer (loaded from variable 'u')
if ((c = ccmapchr(state->map, *u)) < 040 || c >= 0177)
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h:89:24: note: expanded from macro 'ccmapchr'
#define ccmapchr(m,c) CCMAPCHR(m,c)
^~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ccode.h:84:36: note: expanded from macro 'CCMAPCHR'
#define CCMAPCHR(m,c) ((m)?(m)[c]:(c))
^~~
3 warnings generated.
+ cc -D_BLD_DLL -fPIC -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libcmd"' -D_PACKAGE_ast -D_BLD_cmd '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1992-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libcmd]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tr.c
/home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tr.c:759:4: warning: Function call argument is an uninitialized value
error(ERROR_SYSTEM|2, "write error [%d]", c);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ /usr/x86_64-suse-linux/bin/ar rc libcmd.a cmdinit.o basename.o cat.o chgrp.o chmod.o chown.o cksum.o cmp.o comm.o cp.o cut.o dirname.o date.o expr.o fds.o fmt.o fold.o getconf.o head.o id.o join.o ln.o logname.o md5sum.o mkdir.o mkfifo.o mktemp.o mv.o paste.o pathchk.o
+ /usr/x86_64-suse-linux/bin/ar rc libcmd.a pids.o rev.o rm.o rmdir.o stty.o sum.o sync.o tail.o tee.o tty.o uname.o uniq.o vmstate.o wc.o revlib.o wclib.o sumlib.o context.o fts_fix.o lib.o grep.o xargs.o iconv.o od.o tr.o
+ 1> /dev/null 2>& 1
+ test '' '=' libcmd.a
+ /usr/bin/cmp -s libcmd.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a.old
+ 2> /dev/null
+ true
+ /bin/cp libcmd.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a
+ 1> /dev/null 2>& 1
+ test '' '=' cmd.req
+ /usr/bin/cmp -s cmd.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/cmd
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/cmd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/cmd.old
+ 2> /dev/null
+ true
+ /bin/cp cmd.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/cmd
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1992,author=gsf+dgk' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmd.h
+ 1> 1.12697.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmd.h 1.12697.x
+ 2> /dev/null
+ mv 1.12697.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmd.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1992,author=gsf+dgk' cmdext.h
+ 1> 1.12700.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdext.h 1.12700.x
+ 2> /dev/null
+ mv 1.12700.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdext.h
+ 1> 1.12703.h
+ cat
+ 0<< \!
#pragma prototyped
/*
* -lcmd function list -- define your own CMDLIST()
*/

#if _AST_VERSION < 20121001

!
+ sort -u
+ sed -e '/^b_[a-z_][a-z_0-9]*(/!d' -e s/^b_// -e 's/(.*//' /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmdinit.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/basename.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cat.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chgrp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chmod.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/chown.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cksum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cmp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/comm.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/cut.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/dirname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/date.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/expr.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fds.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fmt.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fold.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/getconf.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/head.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/id.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/join.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/ln.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/logname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/md5sum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkdir.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mkfifo.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mktemp.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/mv.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/paste.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pathchk.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/pids.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rev.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rm.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/rmdir.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/stty.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sum.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/sync.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tail.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tee.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tty.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uname.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/uniq.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/vmstate.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wc.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/revlib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/wclib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/context.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/fts_fix.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/lib.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/grep.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/xargs.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/iconv.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/od.c /home/test001/work/ast_ksh_20130807/build_clang/src/lib/libcmd/tr.c
+ set basename cat chgrp chmod chown cksum cmp comm cp cut date dirname egrep expr fds fgrep fmt fold getconf grep head iconv id join ln logname md5sum mkdir mkfifo mktemp mv od paste pathchk pids rev rm rmdir stty sum sync tail tee tr tty uname uniq vmstate wc xargs xgrep
+ echo 'CMDLIST(basename)'
+ echo 'CMDLIST(cat)'
+ echo 'CMDLIST(chgrp)'
+ echo 'CMDLIST(chmod)'
+ echo 'CMDLIST(chown)'
+ echo 'CMDLIST(cksum)'
+ echo 'CMDLIST(cmp)'
+ echo 'CMDLIST(comm)'
+ echo 'CMDLIST(cp)'
+ echo 'CMDLIST(cut)'
+ echo 'CMDLIST(date)'
+ echo 'CMDLIST(dirname)'
+ echo 'CMDLIST(egrep)'
+ echo 'CMDLIST(expr)'
+ echo 'CMDLIST(fds)'
+ echo 'CMDLIST(fgrep)'
+ echo 'CMDLIST(fmt)'
+ echo 'CMDLIST(fold)'
+ echo 'CMDLIST(getconf)'
+ echo 'CMDLIST(grep)'
+ echo 'CMDLIST(head)'
+ echo 'CMDLIST(iconv)'
+ echo 'CMDLIST(id)'
+ echo 'CMDLIST(join)'
+ echo 'CMDLIST(ln)'
+ echo 'CMDLIST(logname)'
+ echo 'CMDLIST(md5sum)'
+ echo 'CMDLIST(mkdir)'
+ echo 'CMDLIST(mkfifo)'
+ echo 'CMDLIST(mktemp)'
+ echo 'CMDLIST(mv)'
+ echo 'CMDLIST(od)'
+ echo 'CMDLIST(paste)'
+ echo 'CMDLIST(pathchk)'
+ echo 'CMDLIST(pids)'
+ echo 'CMDLIST(rev)'
+ echo 'CMDLIST(rm)'
+ echo 'CMDLIST(rmdir)'
+ echo 'CMDLIST(stty)'
+ echo 'CMDLIST(sum)'
+ echo 'CMDLIST(sync)'
+ echo 'CMDLIST(tail)'
+ echo 'CMDLIST(tee)'
+ echo 'CMDLIST(tr)'
+ echo 'CMDLIST(tty)'
+ echo 'CMDLIST(uname)'
+ echo 'CMDLIST(uniq)'
+ echo 'CMDLIST(vmstate)'
+ echo 'CMDLIST(wc)'
+ echo 'CMDLIST(xargs)'
+ echo 'CMDLIST(xgrep)'
+ cat
+ 0<< \!

#else

!
+ [[ -x /bin/basename ]]
+ break
+ echo 'CMDLIST(basename, "/bin")'
+ [[ -x /bin/cat ]]
+ break
+ echo 'CMDLIST(cat, "/bin")'
+ [[ -x /bin/chgrp ]]
+ break
+ echo 'CMDLIST(chgrp, "/bin")'
+ [[ -x /bin/chmod ]]
+ break
+ echo 'CMDLIST(chmod, "/bin")'
+ [[ -x /bin/chown ]]
+ break
+ echo 'CMDLIST(chown, "/bin")'
+ [[ -x /bin/cksum ]]
+ [[ -x /usr/bin/cksum ]]
+ break
+ echo 'CMDLIST(cksum, "/usr/bin")'
+ [[ -x /bin/cmp ]]
+ [[ -x /usr/bin/cmp ]]
+ break
+ echo 'CMDLIST(cmp, "/usr/bin")'
+ [[ -x /bin/comm ]]
+ [[ -x /usr/bin/comm ]]
+ break
+ echo 'CMDLIST(comm, "/usr/bin")'
+ [[ -x /bin/cp ]]
+ break
+ echo 'CMDLIST(cp, "/bin")'
+ [[ -x /bin/cut ]]
+ [[ -x /usr/bin/cut ]]
+ break
+ echo 'CMDLIST(cut, "/usr/bin")'
+ [[ -x /bin/date ]]
+ break
+ echo 'CMDLIST(date, "/bin")'
+ [[ -x /bin/dirname ]]
+ [[ -x /usr/bin/dirname ]]
+ break
+ echo 'CMDLIST(dirname, "/usr/bin")'
+ [[ -x /bin/egrep ]]
+ break
+ echo 'CMDLIST(egrep, "/bin")'
+ [[ -x /bin/expr ]]
+ [[ -x /usr/bin/expr ]]
+ break
+ echo 'CMDLIST(expr, "/usr/bin")'
+ [[ -x /bin/fds ]]
+ [[ -x /usr/bin/fds ]]
+ echo 'CMDLIST(fds, "/usr/bin")'
+ [[ -x /bin/fgrep ]]
+ break
+ echo 'CMDLIST(fgrep, "/bin")'
+ [[ -x /bin/fmt ]]
+ [[ -x /usr/bin/fmt ]]
+ break
+ echo 'CMDLIST(fmt, "/usr/bin")'
+ [[ -x /bin/fold ]]
+ [[ -x /usr/bin/fold ]]
+ break
+ echo 'CMDLIST(fold, "/usr/bin")'
+ [[ -x /bin/getconf ]]
+ [[ -x /usr/bin/getconf ]]
+ break
+ echo 'CMDLIST(getconf, "/usr/bin")'
+ [[ -x /bin/grep ]]
+ break
+ echo 'CMDLIST(grep, "/bin")'
+ [[ -x /bin/head ]]
+ [[ -x /usr/bin/head ]]
+ break
+ echo 'CMDLIST(head, "/usr/bin")'
+ [[ -x /bin/iconv ]]
+ [[ -x /usr/bin/iconv ]]
+ break
+ echo 'CMDLIST(iconv, "/usr/bin")'
+ [[ -x /bin/id ]]
+ [[ -x /usr/bin/id ]]
+ break
+ echo 'CMDLIST(id, "/usr/bin")'
+ [[ -x /bin/join ]]
+ [[ -x /usr/bin/join ]]
+ break
+ echo 'CMDLIST(join, "/usr/bin")'
+ [[ -x /bin/ln ]]
+ break
+ echo 'CMDLIST(ln, "/bin")'
+ [[ -x /bin/logname ]]
+ [[ -x /usr/bin/logname ]]
+ break
+ echo 'CMDLIST(logname, "/usr/bin")'
+ [[ -x /bin/md5sum ]]
+ break
+ echo 'CMDLIST(md5sum, "/bin")'
+ [[ -x /bin/mkdir ]]
+ break
+ echo 'CMDLIST(mkdir, "/bin")'
+ [[ -x /bin/mkfifo ]]
+ [[ -x /usr/bin/mkfifo ]]
+ break
+ echo 'CMDLIST(mkfifo, "/usr/bin")'
+ [[ -x /bin/mktemp ]]
+ break
+ echo 'CMDLIST(mktemp, "/bin")'
+ [[ -x /bin/mv ]]
+ break
+ echo 'CMDLIST(mv, "/bin")'
+ [[ -x /bin/od ]]
+ [[ -x /usr/bin/od ]]
+ break
+ echo 'CMDLIST(od, "/usr/bin")'
+ [[ -x /bin/paste ]]
+ [[ -x /usr/bin/paste ]]
+ break
+ echo 'CMDLIST(paste, "/usr/bin")'
+ [[ -x /bin/pathchk ]]
+ [[ -x /usr/bin/pathchk ]]
+ break
+ echo 'CMDLIST(pathchk, "/usr/bin")'
+ [[ -x /bin/pids ]]
+ [[ -x /usr/bin/pids ]]
+ echo 'CMDLIST(pids, "/usr/bin")'
+ [[ -x /bin/rev ]]
+ [[ -x /usr/bin/rev ]]
+ break
+ echo 'CMDLIST(rev, "/usr/bin")'
+ [[ -x /bin/rm ]]
+ break
+ echo 'CMDLIST(rm, "/bin")'
+ [[ -x /bin/rmdir ]]
+ break
+ echo 'CMDLIST(rmdir, "/bin")'
+ [[ -x /bin/stty ]]
+ break
+ echo 'CMDLIST(stty, "/bin")'
+ [[ -x /bin/sum ]]
+ [[ -x /usr/bin/sum ]]
+ break
+ echo 'CMDLIST(sum, "/usr/bin")'
+ [[ -x /bin/sync ]]
+ break
+ echo 'CMDLIST(sync, "/bin")'
+ [[ -x /bin/tail ]]
+ [[ -x /usr/bin/tail ]]
+ break
+ echo 'CMDLIST(tail, "/usr/bin")'
+ [[ -x /bin/tee ]]
+ [[ -x /usr/bin/tee ]]
+ break
+ echo 'CMDLIST(tee, "/usr/bin")'
+ [[ -x /bin/tr ]]
+ [[ -x /usr/bin/tr ]]
+ break
+ echo 'CMDLIST(tr, "/usr/bin")'
+ [[ -x /bin/tty ]]
+ [[ -x /usr/bin/tty ]]
+ break
+ echo 'CMDLIST(tty, "/usr/bin")'
+ [[ -x /bin/uname ]]
+ break
+ echo 'CMDLIST(uname, "/bin")'
+ [[ -x /bin/uniq ]]
+ [[ -x /usr/bin/uniq ]]
+ break
+ echo 'CMDLIST(uniq, "/usr/bin")'
+ [[ -x /bin/vmstate ]]
+ [[ -x /usr/bin/vmstate ]]
+ echo 'CMDLIST(vmstate, "/usr/bin")'
+ [[ -x /bin/wc ]]
+ [[ -x /usr/bin/wc ]]
+ break
+ echo 'CMDLIST(wc, "/usr/bin")'
+ [[ -x /bin/xargs ]]
+ [[ -x /usr/bin/xargs ]]
+ break
+ echo 'CMDLIST(xargs, "/usr/bin")'
+ [[ -x /bin/xgrep ]]
+ [[ -x /usr/bin/xgrep ]]
+ echo 'CMDLIST(xgrep, "/usr/bin")'
+ cat
+ 0<< \!

#endif
!
+ cmp -s 1.12703.h cmdlist.h
+ 2> /dev/null
+ mv 1.12703.h cmdlist.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1992,author=gsf+dgk' cmdlist.h
+ 1> 1.12707.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdlist.h 1.12707.x
+ 2> /dev/null
+ mv 1.12707.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/cmdlist.h
+ mamake -C cmd/ksh93 -k PACKAGE_OPTIONS=map-libc install
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is nc.h a header ... no
iffe: test: is exec_attr.h a header ... no
iffe: test: is aso.h a header ... yes
iffe: test: is math.h a header ... yes
iffe: test: is exception a type or typedef ... no
iffe: test: is name a member of struct exception ... yes
iffe: test: is _exception a type or typedef ... no
iffe: test: is name a member of struct _exception ... no
iffe: test: is setreuid a library function ... yes
iffe: test: is setregid a library function ... yes
iffe: test: is nice a library function ... yes
iffe: test: is fork a library function ... yes
iffe: test: is spawnveg a library function ... yes
iffe: test: is fchdir a library function ... yes
iffe: test: is pathnative a library function ... yes
iffe: test: is pathposix a library function ... yes
iffe: test: is uwin_path a library function ... no
iffe: test: is uwin_unpath a library function ... no
iffe: test: is fts_notify a library function ... yes
iffe: test: is sys/mman.h a header ... yes
iffe: test: is memcntl a library function ... no
iffe: test: is -lsecdb a library ... no
iffe: test: is getexecuser a library function ... no
iffe: test: is free_execattr a library function ... no
iffe: test: is openat a library function ... yes
iffe: test: is fstatat a library function ... yes
iffe: test: is pipe2 a library function ... yes
iffe: test: is accept4 a library function ... yes
iffe: test: is floorl a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is _Decimal64 a type or typedef ... yes
iffe: test: is _Decimal128 a type or typedef ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is nice a symbol that needs a prototype ... no
iffe: test: is setreuid a symbol that needs a prototype ... no
iffe: test: is setregid a symbol that needs a prototype ... no
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/shellapi
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
+ cmp -s FEATURE/shellapi shellapi.h
+ 2> /dev/null
+ rm -f shellapi.h
+ silent test -d .
+ cp FEATURE/shellapi shellapi.h
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/nvapi
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
+ cmp -s FEATURE/nvapi nvapi.h
+ 2> /dev/null
+ rm -f nvapi.h
+ silent test -d .
+ cp FEATURE/nvapi nvapi.h
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/pmain.c
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/time
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is utime.h a header ... yes
iffe: test: is gettimeofday a library function ... yes
iffe: test: is setitimer a library function ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is timeval a type or typedef ... no
iffe: test: is tv_usec a member of struct timeval ... yes
iffe: test: 2 arg gettimeofday() ... yes
iffe: test: 1 arg gettimeofday() ... no
iffe: test: cat{ ... }end ... yes
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/dynamic
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/options
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: cross{ ... }end ... yes
iffe: test: cat{ ... }end ... yes
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/sigfeatures
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is sigblock a library function ... yes
iffe: test: is sigrelse a library function ... yes
iffe: test: is sigsetmask a library function ... yes
iffe: test: is sigprocmask a library function ... yes
iffe: test: is sigvec a library function ... yes
iffe: test: is sigqueue a library function ... yes
iffe: test: is sigaction a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is ast.h a header ... no
iffe: test: is signal.h a header ... yes
iffe: test: is sigset_t a type or typedef ... yes
iffe: test: is sigvec a type or typedef ... no
iffe: test: is sv_mask a member of struct sigvec ... yes
iffe: test: is _si_value.sigval_int_siginfo_t an identifier ... no
iffe: test: is siginfo_t a type or typedef ... yes
iffe: test: is si_value.sigval_int a member of siginfo_t ... no
iffe: test: cat{ ... }end ... yes
iffe: test: output{ ... }end ... yes
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/setjmp
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is sigsetjmp a library function ... no
iffe: test: is _setjmp a library function ... yes
iffe: test: is _longjmp a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is setjmp.h a header ... yes
iffe: test: is sigjmp_buf a type or typedef ... yes
iffe: test: cat{ ... }end ... yes
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/alarm.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/alarm.c:268:15: warning: Dereference of null pointer
tp->fun.disc = &alarmdisc;
~~~~~~~~~~~~~^~~~~~~~~~~~
1 warning generated.
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : def acct
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is acct a command ... no
iffe: test: is acct a library data symbol ... no
iffe: test: is acct.h a header ... no
iffe: test: is acct a reserved keyword ... no
iffe: test: is acct a library function ... yes
iffe: test: is acct a math library symbol ... no
iffe: test: is sys/acct.h a header ... yes
iffe: test: is acct a type or typedef ... no
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/cd_pwd.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/cd_pwd.c:59:6: warning: Value stored to 'savederrno' during its initialization is never read
int savederrno=errno;
^~~~~~~~~~ ~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/cflow.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/deparse.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/deparse.c:344:6: warning: Function call argument is an uninitialized value
sfputr(outfile,cp,' ');
^~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CATALOG="libshell"' '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/enum.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_NAMESPACE -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/getopts.c
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/ttys
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is termios.h a header ... yes
iffe: test: is termio.h a header ... yes
iffe: test: is sgtty.h a header ... yes
iffe: test: is sys/termios.h a header ... yes
iffe: test: is sys/termio.h a header ... no
iffe: test: is sys/ioctl.h a header ... yes
iffe: test: is sys/bsdtty.h a header ... no
iffe: test: is sys/nttyio.h a header ... no
iffe: test: is sys/filio.h a header ... no
iffe: test: is tcgetattr a library function ... yes
iffe: test: is tcgetpgrp a library function ... yes
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/locale
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is locale.h a header ... yes
iffe: test: is wchar.h a header ... yes
iffe: test: is wctype.h a header ... yes
iffe: test: is locale a library function ... no
iffe: test: is localeconv a library function ... yes
iffe: test: is wctype a library function ... yes
iffe: test: is iswctype a library function ... yes
iffe: test: is iswblank a library function ... yes
iffe: test: is wctrans a library function ... yes
iffe: test: is towctrans a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is wctrans_t a type or typedef ... yes
iffe: test: cat{ ... }end ... yes
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/hist.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_COSHELL -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_FIXEDARRAY -DKSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/misc.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/misc.c:72:3: warning: Value stored to 'argc' is never read
argc = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/misc.c:305:3: warning: Function call argument is an uninitialized value
sh_argreset(shp,(struct dolnod*)argsave,saveargfor);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell -DSHOPT_FIXEDARRAY -DSHOPT_POLL -DSHOPT_DYNAMIC -DKSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/print.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/print.c:897:4: warning: Value stored to 'd' is never read
d = sh_strnum(shp,*pp->nextarg,&lastchar,0);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE -DSHOPT_EDPREDICT -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_FIXEDARRAY -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:381:4: warning: Value stored to 'cp' is never read
cp = sfreserve(iop,0,0);
^ ~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:576:7: warning: Function call argument is an uninitialized value
if(sh_strchr(ifs,(char*)cp-1)>=0)
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:737:9: warning: Value stored to 'c' is never read
c = sfvalue(iop);
^ ~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:739:9: warning: Value stored to 'c' is never read
c = sfvalue(iop)+1;
^ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:780:6: warning: Access to field 'nvflag' results in a dereference of a null pointer (loaded from variable 'np')
if(nv_isattr(np, NV_RDONLY))
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include/nval.h:213:27: note: expanded from macro 'nv_isattr'
#define nv_isattr(np,f) ((np)->nvflag & (f))
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/read.c:831:3: warning: Assigned value is garbage or undefined
sh_popcontext(shp,&buff);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include/fault.h:115:44: note: expanded from macro 'sh_popcontext'
#define sh_popcontext(shp,bp) (shp->jmplist=(bp)->prev, errorpop(&((bp)->err)))
^~~~~~~~~~~
6 warnings generated.
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/poll
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is -lnsl a library ... yes
iffe: test: is -lsocket a library ... no
iffe: test: is poll.h a header ... yes
iffe: test: is socket.h a header ... no
iffe: test: is netinet/in.h a header ... yes
iffe: test: is sys/poll.h a header ... yes
iffe: test: is sys/socket.h a header ... yes
iffe: test: is sys/netinet/in.h a header ... no
iffe: test: is select a library function ... yes
iffe: test: is poll a library function ... yes
iffe: test: is socket a library function ... yes
iffe: test: is htons a library function ... yes
iffe: test: is htonl a library function ... yes
iffe: test: is netdb.h a header ... yes
iffe: test: is getaddrinfo a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is sys/select.h a header ... yes
iffe: test: is fd_set a type or typedef ... yes
iffe: test: is unistd.h a header ... yes
iffe: test: is socklen_t a type or typedef ... yes
iffe: test: use socketpair() for peekable pipe() ... yes
iffe: test: /proc/*/fd/N or /dev/fd/N handles socketpair() ... no
iffe: test: fchmod() after socketpair() shutdown() ... yes
iffe: test: cat{ ... }end ... yes
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/sleep.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/sleep.c:115:11: warning: The left operand of '-' is a garbage value
d = ns - now;
~~ ^
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_COSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/trap.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/trap.c:44:17: warning: Value stored to 'arg' during its initialization is never read
register char *arg = argv[1];
^~~ ~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -DKSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:260:5: warning: Dereference of null pointer (loaded from variable 'arg')
if(c_eq(arg, '('))
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:70:20: note: expanded from macro 'c_eq'
#define c_eq(a,c) (*a==c && *(a+1)==0)
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:396:10: warning: The left operand of '&' is a garbage value
return(isapipe(arg,&statb));
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:51:77: note: expanded from macro 'isapipe'
# define isapipe(f,p) (test_stat(f,p)>=0&&S_ISFIFO((p)->st_mode)||S_ISSOCK((p)->st_mode)&&(p)->st_ino&&((p)->st_mode&(S_IRUSR|S_IWUSR))!=(S_IRUSR|S_IWUSR))
^
/usr/include/sys/stat.h:147:25: note: expanded from macro 'S_ISSOCK'
# define S_ISSOCK(mode) __S_ISTYPE((mode), __S_IFSOCK)
^
/usr/include/sys/stat.h:128:41: note: expanded from macro '__S_ISTYPE'
#define __S_ISTYPE(mode, mask) (((mode) & __S_IFMT) == (mask))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:500:15: warning: The left operand of '==' is a garbage value
return(lnum==rnum);
~~~~^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:502:15: warning: The left operand of '!=' is a garbage value
return(lnum!=rnum);
~~~~^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:504:15: warning: The left operand of '>' is a garbage value
return(lnum>rnum);
~~~~^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:506:15: warning: The left operand of '<' is a garbage value
return(lnum<rnum);
~~~~^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:508:15: warning: The left operand of '>=' is a garbage value
return(lnum>=rnum);
~~~~^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/test.c:510:15: warning: The left operand of '<=' is a garbage value
return(lnum<=rnum);
~~~~^
8 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_FIXEDARRAY -DSHOPT_DYNAMIC -DSHOPT_NAMESPACE -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/typeset.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/typeset.c:751:16: warning: Null pointer passed as an argument to a 'nonnull' parameter
if(cp && strcmp(cp,tp->wctname)==0)
^~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/typeset.c:759:21: warning: Null pointer passed as an argument to a 'nonnull' parameter
else if(!cp || strcmp(cp,tp->wctname))
^~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/typeset.c:1376:5: warning: Value stored to 'flag' is never read
flag = '\n';
^ ~~~~
3 warnings generated.
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/rlimits
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is resource.h a header ... no
iffe: test: is vlimit.h a header ... no
iffe: test: is sys/resource.h a header ... yes
iffe: test: is sys/vlimit.h a header ... yes
iffe: test: is getrlimit a library function ... yes
iffe: test: is getrlimit64 a library function ... yes
iffe: test: is ulimit a library function ... yes
iffe: test: is vlimit a library function ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is rlim_t a type or typedef ... yes
iffe: test: is rlim64_t a type or typedef ... yes
iffe: test: cat{ ... }end ... yes
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_FIXEDARRAY -D_BLD_shell -DSHOPT_POLL -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/ulimit.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/umask.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_KIA -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/whence.c
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : def execargs
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is execargs a command ... no
iffe: test: is execargs a library data symbol ... no
iffe: test: is execargs.h a header ... no
iffe: test: is execargs a reserved keyword ... no
iffe: test: is execargs a library function ... no
iffe: test: is execargs a math library symbol ... no
iffe: test: is sys/execargs.h a header ... no
iffe: test: is execargs a type or typedef ... no
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : def pstat
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is pstat a command ... no
iffe: test: is pstat a library data symbol ... no
iffe: test: is pstat.h a header ... no
iffe: test: is pstat a reserved keyword ... no
iffe: test: is pstat a library function ... no
iffe: test: is pstat a math library symbol ... no
iffe: test: is sys/pstat.h a header ... no
iffe: test: is pstat a type or typedef ... no
+ cc -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_BRACEPAT '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -D_BLD_shell -DSHOPT_KIA -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_COSHELL -DKSHELL -DSHOPT_SUID_EXEC -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -DSHOPT_DYNAMIC -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/main.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/main.c:779:3: warning: Null pointer passed as an argument to a 'nonnull' parameter
memcpy(buff+offset,cp,size);
^~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -D_BLD_shell -DSHOPT_STATS -DSHOPT_PFSH '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DSHOPT_POLL -DSHOPT_DYNAMIC -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvdisc.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvdisc.c:1313:10: warning: Potential leak of memory pointed to by 'ntp'
return(0);
^
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_FIXEDARRAY -DSHOPT_NAMESPACE '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_BLD_shell -DKSHELL -DSHOPT_STATS -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtype.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtype.c:403:10: warning: Value stored to 'root' during its initialization is never read
Dt_t *root = shp->last_root;
^~~~ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtype.c:742:14: warning: Value stored to 'pp' during its initialization is never read
Namfun_t *pp = nv_hasdisc(nq,&type_disc);
^~ ~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtype.c:1759:6: warning: Access to field '_next' results in a dereference of a null pointer (loaded from variable 'iop')
sfputc(iop,'\n');
^~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:401:26: note: expanded from macro 'sfputc'
#define sfputc(f,c) ( __sf_putc((f),(c)) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:350:25: note: expanded from macro '__sf_putc'
#define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:342:18: note: expanded from macro '_SF_'
#define _SF_(f) ((Sfio_t*)(f))
^
3 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_FIXEDARRAY -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/arith.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/arith.c:163:7: warning: Null pointer passed as an argument to a 'nonnull' parameter
if(strchr(sub,'$'))
^~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/arith.c:282:5: warning: Value stored to 'c' is never read
c = **ptr;
^ ~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_OPTIMIZE -DSHOPT_RAWONLY -DSHOPT_PFSH -D_BLD_shell -DKSHELL '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_KIA -DSHOPT_MULTIBYTE -DSHOPT_COSHELL -DSHOPT_EDPREDICT -DSHOPT_POLL -DSHOPT_DYNAMIC -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/args.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/args.c:216:11: warning: Value stored to 'shp' during its initialization is never read
Shell_t *shp = sh_getinterp();
^~~ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/args.c:615:4: warning: The return value from the call to 'setuid' is not checked. If an error occurs in 'setuid', the following code may execute with unexpected privileges
setuid(shp->gd->userid);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/args.c:616:4: warning: The return value from the call to 'setgid' is not checked. If an error occurs in 'setgid', the following code may execute with unexpected privileges
setgid(shp->gd->groupid);
^~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/args.c:846:4: warning: Value stored to 'value' is never read
value &= 0xff;
^ ~~~~
4 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_FIXEDARRAY -D_BLD_shell '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c:451:12: warning: Null pointer passed as an argument to a 'nonnull' parameter
av[0] = strdup(sfstruse(shp->strbuf));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c:472:10: warning: Potential memory leak
return(true);
^~~~
/usr/bin/../lib64/clang/3.3/include/stdbool.h:32:14: note: expanded from macro 'true'
#define true 1
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c:1490:3: warning: Use of memory after it is freed
fp->max[n++] = sz = (int)sh_arith(shp,(char*)ep+1);
^~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c:1498:2: warning: Use of memory after it is freed
nv_disc(np,(Namfun_t*)ap, NV_FIRST);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/array.c:1875:6: warning: Value stored to 'np' is never read
np = sh_assignok(np,1);
^ ~~~~~~~~~~~~~~~~~
5 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_EDPREDICT -DKSHELL -DSHOPT_PFSH -D_BLD_shell -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/completion.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/completion.c:237:16: warning: Value stored to 'c' during its initialization is never read
register int c = *cur;
^ ~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/completion.c:262:3: warning: Value stored to 'c' is never read
c = *(unsigned char*)out;
^ ~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH -DSHOPT_KIA '-D_API_ast=20130625' -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_COSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/defs.c
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/cmds
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: is newgrp a command ... yes
iffe: test: is test a command ... yes
iffe: test: is id a command ... yes
iffe: test: is wc a command ... yes
iffe: test: is cut a command ... yes
iffe: test: is logname a command ... yes
iffe: test: is universe a command ... no
iffe: test: is pfexec a command ... no
iffe: test: is tput a command ... yes
iffe: test: is ed a file ... yes
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_RAWONLY -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/edit.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/edit.c:919:4: warning: Null pointer passed as an argument to a 'nonnull' parameter
fixtime();
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/edit.c:890:33: note: expanded from macro 'fixtime'
# define fixtime() if(isdevtty)utime(ep->e_tty,&utimes)
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/edit.c:1659:43: warning: Value stored to 'mplast' is never read
for(mplast=0; l>=0 && (*av= (char*)mp); mplast=mp,mp=mp->next,av++)
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/edit.c:1736:3: warning: Value stored to 'last' is never read
last = i-1;
^ ~~~
3 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_BRACEPAT -DSHOPT_SUID_EXEC -D_BLD_shell -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DKSHELL -DSHOPT_DYNAMIC -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/expand.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/expand.c:229:4: warning: Value stored to 'ap' is never read
ap = (struct argnod*)stkseek(shp->stk,ARGVAL);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/expand.c:422:5: warning: Function call argument is an uninitialized value
sfsprintf(pat=tmp,sizeof(tmp),format,first);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DKSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/regress.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_KIA '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -DKSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/fault.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/fault.c:158:5: warning: Value stored to 'action' is never read
action = notify_builtin(shp,sig);
^ ~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/fault.c:284:33: warning: Result of 'calloc' is converted to a pointer of type 'unsigned char', which is incompatible with sizeof operand type 'char'
shp->sigflag = (unsigned char*)calloc(n,sizeof(char));
~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/fault.c:339:22: warning: Value stored to 'sig' during its initialization is never read
register int flag, sig = shgd->sigmax;
^~~ ~~~~~~~~~~~~
3 warnings generated.
+ cc -g -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/fcin.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE '-DSHOPT_AUDITFILE="/etc/ksh_audit"' '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -D_BLD_shell -DKSHELL -DSHOPT_POLL -DSHOPT_DYNAMIC -DSHOPT_PFSH -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -DSHOPT_AUDIT -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/history.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/history.c:725:10: warning: The left expression of the compound assignment is an uninitialized value. The computed value will also be garbage
oldind -= hp->histind;
~~~~~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/history.c:782:20: warning: Use of memory after it is freed
if(!sh_histinit(hp->histshell))
^~~~~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_PFSH -DSHOPT_MULTIBYTE -DSHOPT_COSHELL -DSHOPT_AUDIT '-D_API_ast=20130625' -D_PACKAGE_ast -DSHOPT_DYNAMIC '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_KIA -DKSHELL -DSHOPT_EDPREDICT -DSHOPT_FIXEDARRAY -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:967:3: warning: Value stored to 'np' is never read
np = nv_namptr(mp->nodes,0);
^ ~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:1004:22: warning: Call to 'realloc' has an allocation size of 0 bytes
mp->val = (char*)realloc(mp->val,x=2*vsize);
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:1416:6: warning: Dereference of null pointer (loaded from variable 'last')
if(*last)
^~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2106:2: warning: Value stored to 'np' is never read
np = create_svar(SH_SIG,"value",0,fp);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2268:18: warning: Call to 'calloc' has an allocation size of 0 bytes
np = (Namval_t*)calloc(n,sizeof(Namval_t));
^~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2309:10: warning: Assigned value is garbage or undefined
treep = dict;
^ ~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2311:9: warning: Potential leak of memory pointed to by 'np'
return(treep);
^~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2336:7: warning: Call to 'calloc' has an allocation size of 0 bytes
np = newof(0,Namval_t,nenv,0);
^~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/ast.h:231:75: note: expanded from macro 'newof'
#define newof(p,t,n,x) ((p)?(t*)realloc((char*)(p),sizeof(t)*(n)+(x)):(t*)calloc(1,sizeof(t)*(n)+(x)))
^~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2371:19: warning: Call to 'realloc' has an allocation size of 0 bytes
np = (Namval_t*)realloc((void*)np0,k*sizeof(Namval_t));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2423:4: warning: Value stored to 'cp' is never read
cp += 2;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/init.c:2429:5: warning: Potential memory leak
if(nv_isnull(PWDNOD) || nv_isattr(PWDNOD,NV_TAGGED))
^~~~~~~~~
11 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_RAWONLY -DSHOPT_COSHELL -DSHOPT_DYNAMIC -DSHOPT_POLL -D_BLD_shell -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_EDPREDICT -DKSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/io.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/io.c:866:3: warning: Value stored to 'ep' is never read
ep = sp;
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/io.c:1636:7: warning: Access to field '_file' results in a dereference of a null pointer (loaded from variable 'tmp')
if(sffileno(tmp)>0)
^~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:408:24: note: expanded from macro 'sffileno'
#define sffileno(f) ( __sf_fileno(f) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/io.c:1668:7: warning: Access to field '_file' results in a dereference of a null pointer (loaded from variable 'outfile')
fd = sffileno(outfile);
^~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:408:24: note: expanded from macro 'sffileno'
#define sffileno(f) ( __sf_fileno(f) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/io.c:2586:32: warning: Null pointer passed as an argument to a 'nonnull' parameter
sfnputc(outfile,' ',fldsize-strlen(*arg));
^~~~~~~~~~~~
4 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_COSHELL '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_MULTIBYTE -DSHOPT_PFSH -D_BLD_shell -DKSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/jobs.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/jobs.c:333:10: warning: Access to field 'id' results in a dereference of a null pointer (loaded from variable 'csp')
val = (csp->id<<16)|n|COPID_BIT;
^~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/jobs.c:405:2: warning: Value stored to 'pid' is never read
pid = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/jobs.c:1202:4: warning: Value stored to 'r' is never read
r = job_walk(shp,outfile, job_kill,sig, (char**)0);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/jobs.c:1506:2: warning: Potential leak of memory pointed to by 'pw'
return(pw->p_job);
^~~~~~~~~~~~~~~~~
4 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE -DSHOPT_KIA '-D_API_ast=20130625' -D_PACKAGE_ast -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_PFSH -DKSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/lex.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/lex.c:207:6: warning: Access to field '_file' results in a dereference of a null pointer (loaded from variable 'iop')
if(sffileno(iop)>=0)
^~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:408:24: note: expanded from macro 'sffileno'
#define sffileno(f) ( __sf_fileno(f) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/lex.c:1153:8: warning: Value stored to 'state' is never read
state = fcfirst();
^ ~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_BRACEPAT -DKSHELL -DSHOPT_COSHELL -DSHOPT_OPTIMIZE -DSHOPT_FIXEDARRAY -DSHOPT_FILESCAN '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_MULTIBYTE -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_PFSH -D_BLD_shell -DSHOPT_SUID_EXEC -DSHOPT_KIA -DSHOPT_DYNAMIC -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:203:17: warning: Value stored to 'str' during its initialization is never read
register char *str = argp->argval;
^~~ ~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:598:4: warning: Value stored to 'first' is never read
first = fcseek(c+1);
^ ~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:672:4: warning: Value stored to 'first' is never read
first = fcseek(c);
^ ~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:724:5: warning: Value stored to 'first' is never read
first = fcseek(c);
^ ~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:1908:7: warning: Value stored to 'dolmax' is never read
dolmax = dolg;
^ ~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:2101:5: warning: Value stored to 'str' is never read
str = ap->dolval[ap->dolbot];
^ ~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:2104:5: warning: Value stored to 'str' is never read
str = t->com.comarg->argval;
^ ~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/macro.c:2317:3: warning: Value stored to 'lastc' is never read
lastc = 0;
^ ~
8 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_OPTIMIZE -DSHOPT_FIXEDARRAY -DSHOPT_NAMESPACE -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_COSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:1089:17: warning: Value stored to 'ap' during its initialization is never read
Namarr_t *ap = nv_arrayptr(np);
^~ ~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:1197:10: warning: Branch condition evaluates to a garbage value
if(ap && nv_type(np))
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:2071:4: warning: The left operand of '==' is a garbage value
stkseek(shp->stk,offset);
^ ~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/stk.h:57:27: note: expanded from macro 'stkseek'
#define stkseek(sp,n) ((n)==0?(char*)((sp)->_next=(sp)->_data):_stkseek(sp,n))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:2161:6: warning: Assigned value is garbage or undefined
n = oldn;
^ ~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3178:5: warning: Use of memory after it is freed
nv_putval (np, cp, NV_RDONLY);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3179:4: warning: Attempt to free released memory
free(cp);
^~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3359:3: warning: Value stored to 'arraynp' is never read
arraynp = 1;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3484:13: warning: Access to field 'nvenv' results in a dereference of a null pointer (loaded from variable 'mp')
mp->nvenv = nvenv;
~~ ^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3652:22: warning: Access to field 'nvshell' results in a dereference of a null pointer (loaded from variable 'nq')
NullNode.nvshell = nq->nvshell;
^~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3692:11: warning: Value stored to 'shp' during its initialization is never read
Shell_t *shp = sh_getinterp();
^~~ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3864:33: warning: Dereference of null pointer (loaded from field 'nvname')
if(!(table=shp->last_table) || *np->nvname=='.' || table==shp->namespace || np==table)
^~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/name.c:3867:6: warning: Branch condition evaluates to a garbage value
if(!ap || !ap->fixed || (ap->flags&ARRAY_UNDEF))
^~~
12 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE '-D_API_ast=20130625' -D_PACKAGE_ast -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c:431:12: warning: Access to field 'nvname' results in a dereference of a null pointer (loaded from variable 'tp')
char *cp=tp->nvname;
^~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c:705:16: warning: Dereference of null pointer (loaded from variable 'xp')
if(xp>ep || *xp!=' ')
^~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c:810:4: warning: Value stored to 'fp' is never read
fp = nv_stack(np,fp);
^ ~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c:1112:7: warning: Access to field '_next' results in a dereference of a null pointer (loaded from variable 'outfile')
sfputc(outfile,' ');
^~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:401:26: note: expanded from macro 'sfputc'
#define sfputc(f,c) ( __sf_putc((f),(c)) )
^~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:350:25: note: expanded from macro '__sf_putc'
#define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \
^~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/sfio.h:342:18: note: expanded from macro '_SF_'
#define _SF_(f) ((Sfio_t*)(f))
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/nvtree.c:1347:3: warning: Value stored to 'fp' is never read
fp = nv_stack(np,fp);
^ ~~~~~~~~~~~~~~~
5 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -D_BLD_shell -DSHOPT_STATS -DSHOPT_PFSH '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DSHOPT_KIA -DSHOPT_DYNAMIC -DSHOPT_POLL -DKSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c:332:2: warning: Undefined or garbage value returned to caller
return(t);
^~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c:847:7: warning: Branch condition evaluates to a garbage value
if(c)
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c:1352:10: warning: Dereference of null pointer
tok = (t->tre.tretyp&(COMSCAN|COMSCAN-1));
^~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c:1488:7: warning: Access to field 'argflag' results in a dereference of a null pointer (loaded from variable 'argp')
if((argp->argflag&ARG_ASSIGN) && assignment!=2)
^~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/parse.c:2007:17: warning: Dereference of null pointer
t->tre.tretyp |= TNEGATE;
~~~~~~~~~~~~~~^~~~~~~~~~
5 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_SUID_EXEC -DSHOPT_DYNAMIC -DSHOPT_NAMESPACE -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_COSHELL -D_BLD_shell -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DKSHELL -DSHOPT_BRACEPAT -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:231:13: warning: Potential leak of memory pointed to by 'saveargs'
return(-1);
^
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:519:3: warning: Value stored to 'pp' is never read
pp = (void*)path_addpath(shp,(Pathcomp_t*)shp->pathlist,val,PATH_FPATH);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:764:47: warning: Dereference of null pointer (loaded from variable 'name')
else if(pp && !sh_isstate(shp,SH_DEFPATH) && *name!='/' && flag<3)
^~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:938:4: warning: Value stored to 'f' is never read
f = -1;
^ ~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:1272:3: warning: Argument to free() is the address of the global variable 'e_dot', which is not memory allocated by malloc()
free(path);
^~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:1348:11: warning: Potential leak of memory pointed to by 'path'
return(pid);
^~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/path.c:1416:5: warning: Value stored to 'n' is never read
n=10;
^ ~~
7 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_MULTIBYTE '-D_API_ast=20130625' -D_PACKAGE_ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/string.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_shell -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/streval.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/streval.c:293:15: warning: Assigned value is garbage or undefined
node.nosub = lastsub;
^ ~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_COSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -D_BLD_shell -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_PFSH '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DSHOPT_DYNAMIC -DSHOPT_KIA -DKSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/subshell.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/subshell.c:176:6: warning: Value stored to 'comsub' during its initialization is never read
int comsub=shp->comsub;
^~~~~~ ~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/subshell.c:780:2: warning: Value stored to 'subshell' is never read
subshell = shp->subshell;
^ ~~~~~~~~~~~~~
2 warnings generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_shell -DKSHELL '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/tdump.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/timers.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/timers.c:227:8: warning: Potential leak of memory pointed to by 'hp'
tp = tptop;
^~~~~
1 warning generated.
+ cc -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_BLD_shell -DKSHELL '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/trestore.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/waitevent.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_PFSH -DSHOPT_FILESCAN -DSHOPT_COSHELL -DSHOPT_NAMESPACE -DSHOPT_OPTIMIZE '-D_API_ast=20130625' -D_PACKAGE_ast -DSHOPT_STATS -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -DSHOPT_POLL -DSHOPT_DYNAMIC -DKSHELL -DSHOPT_SUID_EXEC -DSHOPT_BRACEPAT -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:741:2: warning: Use of memory after it is freed
csp->coshell->data = (void*)csp;
^~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:1865:22: warning: Call to function 'vfork' is insecure as it can lead to denial of service situations in the parent process. Replace calls to vfork with calls to the safer 'posix_spawn' function
while((parent = vfork()) < 0)
^~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:2710:15: warning: Value stored to 'oldnspace' during its initialization is never read
Namval_t *oldnspace = shp->namespace;
^~~~~~~~~ ~~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:2718:5: warning: Value stored to 'offset' is never read
offset = stktell(stkp);
^ ~~~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:2720:6: warning: Value stored to 'root' is never read
root = nv_dict(np);
^ ~~~~~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:3165:4: warning: Value stored to 'postid' is never read
postid = 0;
^ ~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/xec.c:3335:2: warning: Undefined or garbage value returned to caller
return(d);
^~~~~~~~~
7 warnings generated.
+ cc -g -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/env.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/env.c:198:10: warning: Potential leak of memory pointed to by 'ep'
return(0);
^
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -D_BLD_shell '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/hexpand.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/limits.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_SUID_EXEC -DSHOPT_COSHELL -DSHOPT_EDPREDICT -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_KIA -DSHOPT_BRACEPAT -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/msg.c
+ iffe -v -c 'cc -g ' ref -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm : run /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/math.sh /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/math.tab
iffe: test: is sys/types.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a a library ... yes
iffe: test: is -lutil a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a a library ... yes
iffe: test: is -ldl a library ... yes
iffe: test: is /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a a library ... yes
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/math.sh ...
iffe: test: is sys/types.h a header ... yes
iffe: test: is time.h a header ... yes
iffe: test: is sys/time.h a header ... yes
iffe: test: is sys/times.h a header ... yes
iffe: test: is stddef.h a header ... yes
iffe: test: is stdlib.h a header ... yes
iffe: test: is long double a type or typedef ... yes
iffe: test: is sys/types.h a header ... yes
iffe: test: is math.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is acos a library function ... yes
iffe: test: is acosl a library function ... yes
iffe: test: is acosh a library function ... yes
iffe: test: is acoshl a library function ... yes
iffe: test: is asin a library function ... yes
iffe: test: is asinl a library function ... yes
iffe: test: is asinh a library function ... yes
iffe: test: is asinhl a library function ... yes
iffe: test: is atan a library function ... yes
iffe: test: is atanl a library function ... yes
iffe: test: is atan2 a library function ... yes
iffe: test: is atan2l a library function ... yes
iffe: test: is atanh a library function ... yes
iffe: test: is atanhl a library function ... yes
iffe: test: is cbrt a library function ... yes
iffe: test: is cbrtl a library function ... yes
iffe: test: is ceil a library function ... yes
iffe: test: is ceill a library function ... yes
iffe: test: is copysign a library function ... yes
iffe: test: is copysignl a library function ... yes
iffe: test: is cos a library function ... yes
iffe: test: is cosl a library function ... yes
iffe: test: is cosh a library function ... yes
iffe: test: is coshl a library function ... yes
iffe: test: is erf a library function ... yes
iffe: test: is erfl a library function ... yes
iffe: test: is erfc a library function ... yes
iffe: test: is erfcl a library function ... yes
iffe: test: is exp a library function ... yes
iffe: test: is expl a library function ... yes
iffe: test: is exp10 a library function ... yes
iffe: test: is exp10l a library function ... yes
iffe: test: is exp2 a library function ... yes
iffe: test: is exp2l a library function ... yes
iffe: test: is expm1 a library function ... yes
iffe: test: is expm1l a library function ... yes
iffe: test: is fabs a library function ... yes
iffe: test: is fabsl a library function ... yes
iffe: test: is fdim a library function ... yes
iffe: test: is fdiml a library function ... yes
iffe: test: is finite a library function ... yes
iffe: test: is finitel a library function ... yes
iffe: test: is floor a library function ... yes
iffe: test: is floorl a library function ... yes
iffe: test: is fma a library function ... yes
iffe: test: is fmal a library function ... yes
iffe: test: is fmax a library function ... yes
iffe: test: is fmaxl a library function ... yes
iffe: test: is fmin a library function ... yes
iffe: test: is fminl a library function ... yes
iffe: test: is fmod a library function ... yes
iffe: test: is fmodl a library function ... yes
iffe: test: is fpclassify a library function ... yes
iffe: test: is fpclassifyl a library function ... no
iffe: test: is fpclass a library function ... no
iffe: test: is fpclassl a library function ... no
iffe: test: is hypot a library function ... yes
iffe: test: is hypotl a library function ... yes
iffe: test: is ilogb a library function ... yes
iffe: test: is ilogbl a library function ... yes
iffe: test: is isfinite a library function ... yes
iffe: test: is isfinitel a library function ... no
iffe: test: is isgreater a library function ... yes
iffe: test: is isgreaterl a library function ... no
iffe: test: is isgreaterequal a library function ... yes
iffe: test: is isgreaterequall a library function ... no
iffe: test: is isinf a library function ... yes
iffe: test: is isinfl a library function ... yes
iffe: test: is isinfinite a library function ... no
iffe: test: is isinfinitel a library function ... no
iffe: test: is isless a library function ... yes
iffe: test: is islessl a library function ... no
iffe: test: is islessequal a library function ... yes
iffe: test: is islessequall a library function ... no
iffe: test: is islessgreater a library function ... yes
iffe: test: is islessgreaterl a library function ... no
iffe: test: is isnan a library function ... yes
iffe: test: is isnanl a library function ... yes
iffe: test: is isnormal a library function ... yes
iffe: test: is isnormall a library function ... no
iffe: test: is issubnormal a library function ... no
iffe: test: is issubnormall a library function ... no
iffe: test: is isunordered a library function ... yes
iffe: test: is isunorderedl a library function ... no
iffe: test: is iszero a library function ... no
iffe: test: is iszerol a library function ... no
iffe: test: is j0 a library function ... yes
iffe: test: is j0l a library function ... yes
iffe: test: is j1 a library function ... yes
iffe: test: is j1l a library function ... yes
iffe: test: is jn a library function ... yes
iffe: test: is jnl a library function ... yes
iffe: test: is ldexp a library function ... yes
iffe: test: is ldexpl a library function ... yes
iffe: test: is lgamma a library function ... yes
iffe: test: is lgammal a library function ... yes
iffe: test: is log a library function ... yes
iffe: test: is logl a library function ... yes
iffe: test: is log10 a library function ... yes
iffe: test: is log10l a library function ... yes
iffe: test: is log1p a library function ... yes
iffe: test: is log1pl a library function ... yes
iffe: test: is log2 a library function ... yes
iffe: test: is log2l a library function ... yes
iffe: test: is logb a library function ... yes
iffe: test: is logbl a library function ... yes
iffe: test: is nearbyint a library function ... yes
iffe: test: is nearbyintl a library function ... yes
iffe: test: is nextafter a library function ... yes
iffe: test: is nextafterl a library function ... yes
iffe: test: is nexttoward a library function ... yes
iffe: test: is nexttowardl a library function ... yes
iffe: test: is pow a library function ... yes
iffe: test: is powl a library function ... yes
iffe: test: is remainder a library function ... yes
iffe: test: is remainderl a library function ... yes
iffe: test: is rint a library function ... yes
iffe: test: is rintl a library function ... yes
iffe: test: is round a library function ... yes
iffe: test: is roundl a library function ... yes
iffe: test: is scalb a library function ... yes
iffe: test: is scalbl a library function ... yes
iffe: test: is scalbn a library function ... yes
iffe: test: is scalbnl a library function ... yes
iffe: test: is signbit a library function ... yes
iffe: test: is signbitl a library function ... no
iffe: test: is sin a library function ... yes
iffe: test: is sinl a library function ... yes
iffe: test: is sinh a library function ... yes
iffe: test: is sinhl a library function ... yes
iffe: test: is sqrt a library function ... yes
iffe: test: is sqrtl a library function ... yes
iffe: test: is tan a library function ... yes
iffe: test: is tanl a library function ... yes
iffe: test: is tanh a library function ... yes
iffe: test: is tanhl a library function ... yes
iffe: test: is tgamma a library function ... yes
iffe: test: is tgammal a library function ... yes
iffe: test: is trunc a library function ... yes
iffe: test: is truncl a library function ... yes
iffe: test: is y0 a library function ... yes
iffe: test: is y0l a library function ... yes
iffe: test: is y1 a library function ... yes
iffe: test: is y1l a library function ... yes
iffe: test: is yn a library function ... yes
iffe: test: is ynl a library function ... yes
iffe: test: is sys/types.h a header ... yes
iffe: test: is math.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is acosl a library data symbol ... yes
iffe: test: is acoshl a library data symbol ... yes
iffe: test: is asinl a library data symbol ... yes
iffe: test: is asinhl a library data symbol ... yes
iffe: test: is atanl a library data symbol ... yes
iffe: test: is atan2l a library data symbol ... yes
iffe: test: is atanhl a library data symbol ... yes
iffe: test: is cbrtl a library data symbol ... yes
iffe: test: is ceill a library data symbol ... yes
iffe: test: is copysignl a library data symbol ... yes
iffe: test: is cosl a library data symbol ... yes
iffe: test: is coshl a library data symbol ... yes
iffe: test: is erfl a library data symbol ... yes
iffe: test: is erfcl a library data symbol ... yes
iffe: test: is expl a library data symbol ... yes
iffe: test: is exp10l a library data symbol ... yes
iffe: test: is exp2l a library data symbol ... yes
iffe: test: is expm1l a library data symbol ... yes
iffe: test: is fabsl a library data symbol ... yes
iffe: test: is fdiml a library data symbol ... yes
iffe: test: is finitel a library data symbol ... yes
iffe: test: is floorl a library data symbol ... yes
iffe: test: is fmal a library data symbol ... yes
iffe: test: is fmaxl a library data symbol ... yes
iffe: test: is fminl a library data symbol ... yes
iffe: test: is fmodl a library data symbol ... yes
iffe: test: is fpclassify a library data symbol ... no
iffe: test: is hypotl a library data symbol ... yes
iffe: test: is ilogbl a library data symbol ... yes
iffe: test: is isfinite a library data symbol ... no
iffe: test: is isgreater a library data symbol ... no
iffe: test: is isgreaterequal a library data symbol ... no
iffe: test: is isinfl a library data symbol ... yes
iffe: test: is isless a library data symbol ... no
iffe: test: is islessequal a library data symbol ... no
iffe: test: is islessgreater a library data symbol ... no
iffe: test: is isnanl a library data symbol ... yes
iffe: test: is isnormal a library data symbol ... no
iffe: test: is isunordered a library data symbol ... no
iffe: test: is j0l a library data symbol ... yes
iffe: test: is j1l a library data symbol ... yes
iffe: test: is jnl a library data symbol ... yes
iffe: test: is ldexpl a library data symbol ... yes
iffe: test: is lgammal a library data symbol ... yes
iffe: test: is logl a library data symbol ... yes
iffe: test: is log10l a library data symbol ... yes
iffe: test: is log1pl a library data symbol ... yes
iffe: test: is log2l a library data symbol ... yes
iffe: test: is logbl a library data symbol ... yes
iffe: test: is nearbyintl a library data symbol ... yes
iffe: test: is nextafterl a library data symbol ... yes
iffe: test: is nexttowardl a library data symbol ... yes
iffe: test: is powl a library data symbol ... yes
iffe: test: is remainderl a library data symbol ... yes
iffe: test: is rintl a library data symbol ... yes
iffe: test: is roundl a library data symbol ... yes
iffe: test: is scalbl a library data symbol ... yes
iffe: test: is scalbnl a library data symbol ... yes
iffe: test: is signbit a library data symbol ... no
iffe: test: is sinl a library data symbol ... yes
iffe: test: is sinhl a library data symbol ... yes
iffe: test: is sqrtl a library data symbol ... yes
iffe: test: is tanl a library data symbol ... yes
iffe: test: is tanhl a library data symbol ... yes
iffe: test: is tgammal a library data symbol ... yes
iffe: test: is truncl a library data symbol ... yes
iffe: test: is y0l a library data symbol ... yes
iffe: test: is y1l a library data symbol ... yes
iffe: test: is ynl a library data symbol ... yes
iffe: test: is acosl a symbol that needs a prototype ... no
iffe: test: is acoshl a symbol that needs a prototype ... no
iffe: test: is asinl a symbol that needs a prototype ... no
iffe: test: is asinhl a symbol that needs a prototype ... no
iffe: test: is atanl a symbol that needs a prototype ... no
iffe: test: is atan2l a symbol that needs a prototype ... no
iffe: test: is atanhl a symbol that needs a prototype ... no
iffe: test: is cbrtl a symbol that needs a prototype ... no
iffe: test: is ceill a symbol that needs a prototype ... no
iffe: test: is copysignl a symbol that needs a prototype ... no
iffe: test: is cosl a symbol that needs a prototype ... no
iffe: test: is coshl a symbol that needs a prototype ... no
iffe: test: is erfl a symbol that needs a prototype ... no
iffe: test: is erfcl a symbol that needs a prototype ... no
iffe: test: is expl a symbol that needs a prototype ... no
iffe: test: is exp10l a symbol that needs a prototype ... no
iffe: test: is exp2l a symbol that needs a prototype ... no
iffe: test: is expm1l a symbol that needs a prototype ... no
iffe: test: is fabsl a symbol that needs a prototype ... no
iffe: test: is fdiml a symbol that needs a prototype ... no
iffe: test: is finitel a symbol that needs a prototype ... no
iffe: test: is floorl a symbol that needs a prototype ... no
iffe: test: is fmal a symbol that needs a prototype ... no
iffe: test: is fmaxl a symbol that needs a prototype ... no
iffe: test: is fminl a symbol that needs a prototype ... no
iffe: test: is fmodl a symbol that needs a prototype ... no
iffe: test: is fpclassify a symbol that needs a prototype ... no
iffe: test: is hypotl a symbol that needs a prototype ... no
iffe: test: is ilogbl a symbol that needs a prototype ... no
iffe: test: is isfinite a symbol that needs a prototype ... no
iffe: test: is isgreater a symbol that needs a prototype ... no
iffe: test: is isgreaterequal a symbol that needs a prototype ... no
iffe: test: is isinfl a symbol that needs a prototype ... no
iffe: test: is isless a symbol that needs a prototype ... no
iffe: test: is islessequal a symbol that needs a prototype ... no
iffe: test: is islessgreater a symbol that needs a prototype ... no
iffe: test: is isnanl a symbol that needs a prototype ... no
iffe: test: is isnormal a symbol that needs a prototype ... no
iffe: test: is isunordered a symbol that needs a prototype ... no
iffe: test: is j0l a symbol that needs a prototype ... no
iffe: test: is j1l a symbol that needs a prototype ... no
iffe: test: is jnl a symbol that needs a prototype ... no
iffe: test: is ldexpl a symbol that needs a prototype ... no
iffe: test: is lgammal a symbol that needs a prototype ... no
iffe: test: is logl a symbol that needs a prototype ... no
iffe: test: is log10l a symbol that needs a prototype ... no
iffe: test: is log1pl a symbol that needs a prototype ... no
iffe: test: is log2l a symbol that needs a prototype ... no
iffe: test: is logbl a symbol that needs a prototype ... no
iffe: test: is nearbyintl a symbol that needs a prototype ... no
iffe: test: is nextafterl a symbol that needs a prototype ... no
iffe: test: is nexttowardl a symbol that needs a prototype ... no
iffe: test: is powl a symbol that needs a prototype ... no
iffe: test: is remainderl a symbol that needs a prototype ... no
iffe: test: is rintl a symbol that needs a prototype ... no
iffe: test: is roundl a symbol that needs a prototype ... no
iffe: test: is scalbl a symbol that needs a prototype ... no
iffe: test: is scalbnl a symbol that needs a prototype ... no
iffe: test: is signbit a symbol that needs a prototype ... no
iffe: test: is sinl a symbol that needs a prototype ... no
iffe: test: is sinhl a symbol that needs a prototype ... no
iffe: test: is sqrtl a symbol that needs a prototype ... no
iffe: test: is tanl a symbol that needs a prototype ... no
iffe: test: is tanhl a symbol that needs a prototype ... no
iffe: test: is tgammal a symbol that needs a prototype ... no
iffe: test: is truncl a symbol that needs a prototype ... no
iffe: test: is y0l a symbol that needs a prototype ... no
iffe: test: is y1l a symbol that needs a prototype ... no
iffe: test: is ynl a symbol that needs a prototype ... no
iffe: test: is acosl a macro ... no
iffe: test: is acoshl a macro ... no
iffe: test: is asinl a macro ... no
iffe: test: is asinhl a macro ... no
iffe: test: is atanl a macro ... no
iffe: test: is atan2l a macro ... no
iffe: test: is atanhl a macro ... no
iffe: test: is cbrtl a macro ... no
iffe: test: is ceill a macro ... no
iffe: test: is copysignl a macro ... no
iffe: test: is cosl a macro ... no
iffe: test: is coshl a macro ... no
iffe: test: is erfl a macro ... no
iffe: test: is erfcl a macro ... no
iffe: test: is expl a macro ... no
iffe: test: is exp10l a macro ... no
iffe: test: is exp2l a macro ... no
iffe: test: is expm1l a macro ... no
iffe: test: is fabsl a macro ... no
iffe: test: is fdiml a macro ... no
iffe: test: is finitel a macro ... no
iffe: test: is floorl a macro ... no
iffe: test: is fmal a macro ... no
iffe: test: is fmaxl a macro ... no
iffe: test: is fminl a macro ... no
iffe: test: is fmodl a macro ... no
iffe: test: is fpclassify a macro ... yes
iffe: test: is hypotl a macro ... no
iffe: test: is ilogbl a macro ... no
iffe: test: is isfinite a macro ... yes
iffe: test: is isgreater a macro ... yes
iffe: test: is isgreaterequal a macro ... yes
iffe: test: is isinfl a macro ... no
iffe: test: is isless a macro ... yes
iffe: test: is islessequal a macro ... yes
iffe: test: is islessgreater a macro ... yes
iffe: test: is isnanl a macro ... no
iffe: test: is isnormal a macro ... yes
iffe: test: is isunordered a macro ... yes
iffe: test: is j0l a macro ... no
iffe: test: is j1l a macro ... no
iffe: test: is jnl a macro ... no
iffe: test: is ldexpl a macro ... no
iffe: test: is lgammal a macro ... no
iffe: test: is logl a macro ... no
iffe: test: is log10l a macro ... no
iffe: test: is log1pl a macro ... no
iffe: test: is log2l a macro ... no
iffe: test: is logbl a macro ... no
iffe: test: is nearbyintl a macro ... no
iffe: test: is nextafterl a macro ... no
iffe: test: is nexttowardl a macro ... no
iffe: test: is powl a macro ... no
iffe: test: is remainderl a macro ... no
iffe: test: is rintl a macro ... no
iffe: test: is roundl a macro ... no
iffe: test: is scalbl a macro ... no
iffe: test: is scalbnl a macro ... no
iffe: test: is signbit a macro ... yes
iffe: test: is sinl a macro ... no
iffe: test: is sinhl a macro ... no
iffe: test: is sqrtl a macro ... no
iffe: test: is tanl a macro ... no
iffe: test: is tanhl a macro ... no
iffe: test: is tgammal a macro ... no
iffe: test: is truncl a macro ... no
iffe: test: is y0l a macro ... no
iffe: test: is y1l a macro ... no
iffe: test: is ynl a macro ... no
iffe: test: is sys/types.h a header ... yes
iffe: test: is math.h a header ... yes
iffe: test: is -lm a library ... yes
iffe: test: is FP_SUBNORMAL a numeric constant or enum ... yes
iffe: test: is FP_ZERO a numeric constant or enum ... yes
iffe: test: is FP_NZERO a numeric constant or enum ... no
iffe: test: is FP_PZERO a numeric constant or enum ... no
iffe: test: capture output of /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/features/math.sh ... yes
+ cc -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/strdata.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/testops.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_NAMESPACE -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH -DSHOPT_KIA '-D_API_ast=20130625' -D_BLD_shell '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/keywords.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_PFSH -DSHOPT_FIXEDARRAY -D_BLD_shell '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_PACKAGE_ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/options.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -D_BLD_shell '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/signals.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -D_PACKAGE_ast -DSHOPT_PFSH -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -D_BLD_shell '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/aliases.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_KIA -DSHOPT_PFSH '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' -DSHOPT_BRACEPAT -DSHOPT_COSHELL -DSHOPT_POLL '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_MULTIBYTE -D_BLD_shell -DSHOPT_DYNAMIC -DKSHELL -DSHOPT_FIXEDARRAY -DSHOPT_STATS -DSHOPT_NAMESPACE -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/builtins.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_STATS -DSHOPT_MULTIBYTE -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/variables.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_BRACEPAT -DSHOPT_NAMESPACE -DSHOPT_MULTIBYTE '-D_API_ast=20130625' -D_PACKAGE_ast -DSHOPT_PFSH '-DERROR_CONTEXT_T=Error_context_t' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/data/lexstates.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_MULTIBYTE -DKSHELL -D_PACKAGE_ast -DSHOPT_PFSH '-D_API_ast=20130625' '-DERROR_CONTEXT_T=Error_context_t' -D_BLD_shell -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/emacs.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/emacs.c:210:2: warning: Value stored to 'out' is never read
out = (genchar*)buff;
^ ~~~~~~~~~~~~~~
1 warning generated.
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_EDPREDICT -DSHOPT_RAWONLY -DSHOPT_MULTIBYTE '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DKSHELL -DSHOPT_PFSH -D_BLD_shell -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_FIXEDARRAY -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/edit/vi.c
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_POLL -D_BLD_shell -DSHOPT_DYNAMIC -DSHOPT_MULTIBYTE -DSHOPT_PFSH -DSHOPT_FIXEDARRAY -DKSHELL -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/poll.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/bltins/poll.c:509:33: warning: Access to field 'var_tree' results in a dereference of a null pointer (loaded from variable 'shp')
array_np = nv_open(parrayname, shp->var_tree, NV_VARNAME|NV_NOFAIL|NV_NOADD);
^~~~~~~~~~~~~
1 warning generated.
+ /usr/x86_64-suse-linux/bin/ar rc libshell.a alarm.o cd_pwd.o cflow.o deparse.o enum.o getopts.o hist.o misc.o print.o read.o sleep.o trap.o test.o typeset.o ulimit.o umask.o whence.o main.o nvdisc.o nvtype.o arith.o args.o array.o completion.o defs.o edit.o expand.o regress.o fault.o fcin.o
+ /usr/x86_64-suse-linux/bin/ar rc libshell.a history.o init.o io.o jobs.o lex.o macro.o name.o nvtree.o parse.o path.o string.o streval.o subshell.o tdump.o timers.o trestore.o waitevent.o xec.o env.o hexpand.o limits.o msg.o strdata.o testops.o keywords.o options.o signals.o aliases.o builtins.o variables.o lexstates.o emacs.o vi.o poll.o
+ 1> /dev/null 2>& 1
+ cc -g -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o ksh pmain.o libshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -DSHOPT_BRACEPAT '-DSH_DICT="libshell"' '-D_API_ast=20130625' -D_PACKAGE_ast '-DERROR_CONTEXT_T=Error_context_t' -DSHOPT_STATS -DSHOPT_NAMESPACE -DSHOPT_COSHELL -DSHOPT_PFSH -DSHOPT_FIXEDARRAY -DSHOPT_MULTIBYTE '-DUSAGE_LICENSE="[-author?David Korn <dgk at research.att.com>][-copyright?Copyright (c) 1982-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?libshell]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/shcomp.c
+ cc -g -L. -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o shcomp shcomp.o libshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libdll.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -ldl /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcoshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libcmd.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lutil /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a -lm /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ cc -g -I. -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93 -Iinclude -I/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast '-DERROR_CONTEXT_T=Error_context_t' '-D_API_ast=20130625' -D_PACKAGE_ast -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/suid_exec.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh/suid_exec.c:357:2: warning: The return value from the call to 'setreuid' is not checked. If an error occurs in 'setreuid', the following code may execute with unexpected privileges
setreuid(ruserid,owner);
^~~~~~~~
1 warning generated.
+ cc -g -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o suid_exec suid_exec.o /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ test '' '=' ksh
+ /usr/bin/cmp -s ksh /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ksh
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ksh /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ksh.old
+ 2> /dev/null
+ true
+ /bin/cp ksh /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/ksh
+ test '' '=' sh.1
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh.1 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man1/sh.1
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man1/sh.1 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man1/sh.1.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/sh.1 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man1/sh.1
+ test '' '=' libshell.a
+ /usr/bin/cmp -s libshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libshell.a
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libshell.a.old
+ 2> /dev/null
+ true
+ /bin/cp libshell.a /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libshell.a
+ 1> /dev/null 2>& 1
+ test '' '=' shell.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/shell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/shell.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/shell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/shell.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/shell.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/shell.3
+ test '' '=' nval.3
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/nval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/nval.3
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/nval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/nval.3.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/nval.3 /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/man/man3/nval.3
+ test '' '=' shell.req
+ /usr/bin/cmp -s shell.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/shell
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/shell /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/shell.old
+ 2> /dev/null
+ true
+ /bin/cp shell.req /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/lib/shell
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1982,author=dgk' /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include/nval.h
+ 1> 1.26538.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nval.h 1.26538.x
+ 2> /dev/null
+ mv 1.26538.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nval.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1982,author=dgk' nvapi.h
+ 1> 1.26541.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nvapi.h 1.26541.x
+ 2> /dev/null
+ mv 1.26541.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/nvapi.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1982,author=dgk' /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include/shell.h
+ 1> 1.26544.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shell.h 1.26544.x
+ 2> /dev/null
+ mv 1.26544.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shell.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1982,author=dgk' shellapi.h
+ 1> 1.26547.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shellapi.h 1.26547.x
+ 2> /dev/null
+ mv 1.26547.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/shellapi.h
+ proto -p -s -l /home/test001/work/ast_ksh_20130807/build_clang/lib/package/ast.lic '-o since=1982,author=dgk' /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/include/history.h
+ 1> 1.26550.x
+ cmp -s /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/history.h 1.26550.x
+ 2> /dev/null
+ mv 1.26550.x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast/history.h
+ test '' '=' suid_exec
+ /usr/bin/cmp -s suid_exec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/suid_exec
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/suid_exec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/suid_exec.old
+ 2> /dev/null
+ true
+ /bin/cp suid_exec /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/suid_exec
+ test '' '=' shcomp
+ /usr/bin/cmp -s shcomp /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/shcomp
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/shcomp /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/shcomp.old
+ 2> /dev/null
+ true
+ /bin/cp shcomp /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/shcomp
+ test '' '=' fun/dirs
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/dirs /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/dirs
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/dirs /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/dirs.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/dirs /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/dirs
+ chmod ugo+x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/dirs
+ test '' '=' fun/popd
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/popd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/popd
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/popd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/popd.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/popd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/popd
+ chmod ugo+x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/popd
+ test '' '=' fun/pushd
+ /usr/bin/cmp -s /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/pushd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/pushd
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/pushd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/pushd.old
+ 2> /dev/null
+ true
+ /bin/cp /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/ksh93/fun/pushd /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/pushd
+ chmod ugo+x /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/fun/pushd
+ mamake -C cmd/msggen -k PACKAGE_OPTIONS=map-libc install
+ 1> msgadmin
+ 0< /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgadmin.sh
+ read x
+ echo '########################################################################'
+ i='########################################################################'
+ cat - /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgadmin.sh
+ 0<< \!
USAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2000-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?msggen]"
!
+ silent test -w msgadmin -a -x msgadmin
+ chmod u+w,+x msgadmin
+ cc -g -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2000-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?msggen]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c:278:7: warning: Value stored to 'q' is never read
q = '"';
^ ~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c:617:10: warning: Dereference of null pointer (loaded from variable 's')
if (SPACE(s))
^~~~~~~~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c:52:40: note: expanded from macro 'SPACE'
#define SPACE(s) (isspace(*s)&&(s+=1)||*s=='\\'&&(*(s+1)=='n'||*(s+1)=='t')&&(s+=2))
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c:626:9: warning: Dereference of null pointer (loaded from variable 's')
if (*s == '"')
^~
/home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgcvt.c:686:2: warning: Value stored to 'argv' is never read
argv += opt_info.index;
^ ~~~~~~~~~~~~~~
4 warnings generated.
+ cc -g -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o msgcvt msgcvt.o /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ cc -g -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2000-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?msggen]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msggen.c
+ cc -g -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o msggen msggen.o /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ cc -g -I/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/include/ast -D_PACKAGE_ast '-DUSAGE_LICENSE="[-author?Glenn Fowler <gsf at research.att.com>][-copyright?Copyright (c) 2000-2013 AT&T Intellectual Property][-license?http://www.eclipse.org/org/documents/epl-v10.html][--catalog?msggen]"' -c /home/test001/work/ast_ksh_20130807/build_clang/src/cmd/msggen/msgget.c
+ cc -g -L/home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib -o msgget msgget.o /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/lib/libast.a
+ test '' '=' msgadmin
+ /usr/bin/cmp -s msgadmin /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgadmin
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgadmin /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgadmin.old
+ 2> /dev/null
+ true
+ /bin/cp msgadmin /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgadmin
+ test '' '=' msgcvt
+ /usr/bin/cmp -s msgcvt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgcvt
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgcvt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgcvt.old
+ 2> /dev/null
+ true
+ /bin/cp msgcvt /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgcvt
+ test '' '=' msggen
+ /usr/bin/cmp -s msggen /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msggen
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msggen /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msggen.old
+ 2> /dev/null
+ true
+ /bin/cp msggen /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msggen
+ test '' '=' msgget
+ /usr/bin/cmp -s msgget /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgget
+ 2> /dev/null
+ /bin/mv /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgget /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgget.old
+ 2> /dev/null
+ true
+ /bin/cp msgget /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64/bin/msgget
package: make done at Sun Aug 11 06:36:02 CEST 2013 in /home/test001/work/ast_ksh_20130807/build_clang/arch/linux.i386-64
Use of uninitialized value $_[0] in substitution (s///) at /usr/lib/perl5/5.16.2/File/Basename.pm line 341, <IN> line 63.
fileparse(): need a valid pathname at /usr/bin/scan-build line 253.
Roland Mainz
2013-08-18 12:16:27 UTC
Permalink
Post by Roland Mainz
Attached (as "clang_scan_build_ast_ksh_20130807_suse123_log001.txt")
is the build log containing the warnings of a "scan-build" (see
http://clang-analyzer.llvm.org/scan-build.html) run of clang's static
analyser. Note that the warnings are _not_ compiler warnings/errors...
these are warnins created while doing a static analysis of the code...
which seems to reveal some *SERIOUS* issues in the code (I say "seems"
since there are likely lots of "false positives" in the code... may of
them caused by the custom memory allocators used by libast which
"clang" doesn't recognises as such... ;-/ ) but likely there are a
couple of real big problems, too.
-- snip --
src/cmd/msggen/msgcvt.c:686:2: warning: Value stored to 'argv' is never read
argv += opt_info.index;
^ ~~~~~~~~~~~~~~
-- snip --
-- snip --
$ (export CC='/usr/bin/clang -std=gnu1x -g -fno-omit-frame-pointer
-fno-optimize-sibling-calls -Wno-parentheses
-Wno-logical-op-parentheses -Wno-unused' LD="$CC" CCFLAGS="-g"; time
scan-build ksh ./bin/package make PACKAGE_OPTIONS='map-libc' 2>&1 |
tee -a 'clang_scan_build_ast_ksh_20130807_suse123_log001.txt'
-- snip --
Please read the logs... some examples of "false positives" would be
nice that I can try to fix some bugs in "clang" ... and likely some in
AST, too... :-)
Erm... has anyone looked at the logs yet ?

----

Bye,
Roland
--
__ . . __
(o.\ \/ /.o) roland.mainz at nrubsig.org
\__\/\/__/ MPEG specialist, C&&JAVA&&Sun&&Unix programmer
/O /==\ O\ TEL +49 641 3992797
(;O/ \/ \O;)
Loading...