59
# Get the directory component of the given path, and save it in the
60
# global variables '$dir'. Note that this directory component will
61
# be either empty or ending with a '/' character. This is deliberate.
65
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
70
# Get the suffix-stripped basename of the given path, and save it the
71
# global variable '$base'.
74
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
77
# If no dependency file was actually created by the compiler invocation,
78
# we still have to create a dummy depfile, to avoid errors with the
79
# Makefile "include basename.Plo" scheme.
82
echo "#dummy" > "$depfile"
85
# Factor out some common post-processing of the generated depfile.
86
# Requires the auxiliary global variable '$tmpdepfile' to be set.
87
aix_post_process_depfile ()
89
# If the compiler actually managed to produce a dependency file,
91
if test -f "$tmpdepfile"; then
92
# Each line is of the form 'foo.o: dependency.h'.
93
# Do two passes, one to just change these to
94
# $object: dependency.h
95
# and one to simply output
97
# which is needed to avoid the deleted-header problem.
98
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
99
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
59
107
# A tabulation character.
61
109
# A newline character.
112
# Character ranges might be problematic outside the C locale.
113
# These definitions help.
114
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
115
lower=abcdefghijklmnopqrstuvwxyz
117
alpha=${upper}${lower}
65
119
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
66
120
echo "depcomp: Variables source, object and depmode must be set" 1>&2
87
144
if test "$depmode" = dashXmstdout; then
88
# This is just like dashmstdout with a different argument.
145
# This is just like dashmstdout with a different argument.
93
150
cygpath_u="cygpath -u -f -"
94
151
if test "$depmode" = msvcmsys; then
95
# This is just like msvisualcpp but w/o cygpath translation.
96
# Just convert the backslash-escaped backslashes to single forward
97
# slashes to satisfy depend.m4
98
cygpath_u='sed s,\\\\,/,g'
152
# This is just like msvisualcpp but w/o cygpath translation.
153
# Just convert the backslash-escaped backslashes to single forward
154
# slashes to satisfy depend.m4
155
cygpath_u='sed s,\\\\,/,g'
102
159
if test "$depmode" = msvc7msys; then
103
# This is just like msvc7 but w/o cygpath translation.
104
# Just convert the backslash-escaped backslashes to single forward
105
# slashes to satisfy depend.m4
106
cygpath_u='sed s,\\\\,/,g'
160
# This is just like msvc7 but w/o cygpath translation.
161
# Just convert the backslash-escaped backslashes to single forward
162
# slashes to satisfy depend.m4
163
cygpath_u='sed s,\\\\,/,g'
110
167
if test "$depmode" = xlc; then
111
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency informations.
112
gccflag=-qmakedep=gcc,-MF
168
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
169
gccflag=-qmakedep=gcc,-MF
116
173
case "$depmode" in
201
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
202
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
203
## (see the conditional assignment to $gccflag above).
145
204
## There are various ways to get dependency output from gcc. Here's
146
205
## why we pick this rather obscure method:
147
206
## - Don't want to use -MD because we'd like the dependencies to end
148
207
## up in a subdir. Having to rename by hand is ugly.
149
208
## (We might end up doing this anyway to support other compilers.)
150
209
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
151
## -MM, not -M (despite what the docs say).
210
## -MM, not -M (despite what the docs say). Also, it might not be
211
## supported by the other compilers which use the 'gcc' depmode.
152
212
## - Using -M directly means running the compiler twice (even worse
153
213
## than renaming).
154
214
if test -z "$gccflag"; then
273
323
test -f "$tmpdepfile" && break
275
if test -f "$tmpdepfile"; then
276
# Each line is of the form 'foo.o: dependent.h'.
277
# Do two passes, one to just change these to
278
# '$object: dependent.h' and one to simply 'dependent.h:'.
279
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
280
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
282
# The sourcefile does not contain any dependencies, so just
283
# store a dummy comment line, to avoid errors with the Makefile
284
# "include basename.Plo" scheme.
285
echo "#dummy" > "$depfile"
325
aix_post_process_depfile
329
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
330
# FIXME: That version still under development at the moment of writing.
331
# Make that this statement remains true also for stable, released
333
# It will wrap lines (doesn't matter whether long or short) with a
334
# trailing '\', as in:
340
# It will put a trailing '\' even on the last line, and will use leading
341
# spaces rather than leading tabs (at least since its commit 0394caf7
342
# "Emit spaces for -MD").
343
"$@" -MD -MF "$tmpdepfile"
345
if test $stat -ne 0; then
350
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
351
# We have to change lines of the first kind to '$object: \'.
352
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
353
# And for each line of the second kind, we have to emit a 'dep.h:'
354
# dummy dependency, to avoid the deleted-header problem.
355
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
287
356
rm -f "$tmpdepfile"
291
# Intel's C compiler anf tcc (Tiny C Compiler) understand '-MD -MF file'.
293
# $CC -MD -MF foo.d -c -o sub/foo.o sub/foo.c
294
# ICC 7.0 will fill foo.d with something like
297
# which is wrong. We want
298
# sub/foo.o: sub/foo.c
299
# sub/foo.o: sub/foo.h
302
# ICC 7.1 will output
359
## The order of this option in the case statement is important, since the
360
## shell code in configure will try each of these formats in the order
361
## listed in this file. A plain '-MD' option would be understood by many
362
## compilers, so we must ensure this comes after the gcc and icc options.
364
# Portland's C compiler understands '-MD'.
365
# Will always output deps to 'file.d' where file is the root name of the
366
# source file under compilation, even if file resides in a subdirectory.
367
# The object file name does not affect the name of the '.d' file.
368
# pgcc 10.2 will output
303
369
# foo.o: sub/foo.c sub/foo.h
304
# and will wrap long lines using '\':
370
# and will wrap long lines using '\' :
305
371
# foo.o: sub/foo.c ... \
306
372
# sub/foo.h ... \
308
# tcc 0.9.26 (FIXME still under development at the moment of writing)
309
# will emit a similar output, but also prepend the continuation lines
310
# with horizontal tabulation characters.
311
"$@" -MD -MF "$tmpdepfile"
313
if test $stat -eq 0; then :
374
set_dir_from "$object"
375
# Use the source, not the object, to determine the base name, since
376
# that's sadly what pgcc will do too.
377
set_base_from "$source"
380
# For projects that build the same source file twice into different object
381
# files, the pgcc approach of using the *source* file root name can cause
382
# problems in parallel builds. Use a locking strategy to avoid stomping on
383
# the same $tmpdepfile.
386
echo '$0: caught signal, cleaning up...' >&2
392
while test $i -gt 0; do
393
# mkdir is a portable test-and-set.
394
if mkdir "$lockdir" 2>/dev/null; then
395
# This process acquired the lock.
402
# If the lock is being held by a different process, wait
403
# until the winning process is done or we timeout.
404
while test -d "$lockdir" && test $i -gt 0; do
412
if test $i -le 0; then
413
echo "$0: failed to acquire lock after $numtries attempts" >&2
414
echo "$0: check lockdir '$lockdir'" >&2
418
if test $stat -ne 0; then
315
419
rm -f "$tmpdepfile"
319
# Each line is of the form 'foo.o: dependent.h',
320
# or 'foo.o: dep1.h dep2.h \', or ' dep3.h dep4.h \'.
423
# Each line is of the form `foo.o: dependent.h',
424
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
321
425
# Do two passes, one to just change these to
322
# '$object: dependent.h' and one to simply 'dependent.h:'.
323
sed -e "s/^[ $tab][ $tab]*/ /" -e "s,^[^:]*:,$object :," \
324
< "$tmpdepfile" > "$depfile"
326
s/[ '"$tab"'][ '"$tab"']*/ /g
333
' < "$tmpdepfile" >> "$depfile"
426
# `$object: dependent.h' and one to simply `dependent.h:'.
427
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
428
# Some versions of the HPUX 10.20 sed can't process this invocation
429
# correctly. Breaking it into two sed invocations is a workaround.
430
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
431
| sed -e 's/$/ :/' >> "$depfile"
334
432
rm -f "$tmpdepfile"
365
461
test -f "$tmpdepfile" && break
367
463
if test -f "$tmpdepfile"; then
368
sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
464
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
369
465
# Add 'dependent.h:' lines.
375
}' "$tmpdepfile" >> "$depfile"
471
}' "$tmpdepfile" >> "$depfile"
377
echo "#dummy" > "$depfile"
379
475
rm -f "$tmpdepfile" "$tmpdepfile2"
383
# The Tru64 compiler uses -MD to generate dependencies as a side
384
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
385
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
386
# dependencies in 'foo.d' instead, so we check for that too.
387
# Subdirectories are respected.
388
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
389
test "x$dir" = "x$object" && dir=
390
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
392
if test "$libtool" = yes; then
393
# With Tru64 cc, shared objects can also be used to make a
394
# static library. This mechanism is used in libtool 1.4 series to
395
# handle both shared and static libraries in a single compilation.
396
# With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d.
398
# With libtool 1.5 this exception was removed, and libtool now
399
# generates 2 separate objects for the 2 libraries. These two
400
# compilations output dependencies in $dir.libs/$base.o.d and
401
# in $dir$base.o.d. We have to check for both files, because
402
# one of the two compilations can be disabled. We should prefer
403
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
404
# automatically cleaned when .libs/ is deleted, while ignoring
405
# the former would cause a distcleancheck panic.
406
tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4
407
tmpdepfile2=$dir$base.o.d # libtool 1.5
408
tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5
409
tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504
412
tmpdepfile1=$dir$base.o.d
413
tmpdepfile2=$dir$base.d
414
tmpdepfile3=$dir$base.d
415
tmpdepfile4=$dir$base.d
420
if test $stat -eq 0; then :
422
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
426
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4"
428
test -f "$tmpdepfile" && break
430
if test -f "$tmpdepfile"; then
431
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
432
sed -e 's,^.*\.[a-z]*:['"$tab"' ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
434
echo "#dummy" > "$depfile"
479
# The Tru64 compiler uses -MD to generate dependencies as a side
480
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
481
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
482
# dependencies in 'foo.d' instead, so we check for that too.
483
# Subdirectories are respected.
484
set_dir_from "$object"
485
set_base_from "$object"
487
if test "$libtool" = yes; then
488
# Libtool generates 2 separate objects for the 2 libraries. These
489
# two compilations output dependencies in $dir.libs/$base.o.d and
490
# in $dir$base.o.d. We have to check for both files, because
491
# one of the two compilations can be disabled. We should prefer
492
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
493
# automatically cleaned when .libs/ is deleted, while ignoring
494
# the former would cause a distcleancheck panic.
495
tmpdepfile1=$dir$base.o.d # libtool 1.5
496
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
497
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
500
tmpdepfile1=$dir$base.d
501
tmpdepfile2=$dir$base.d
502
tmpdepfile3=$dir$base.d
507
if test $stat -ne 0; then
508
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
512
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
514
test -f "$tmpdepfile" && break
516
# Same post-processing that is required for AIX mode.
517
aix_post_process_depfile
440
521
if test "$libtool" = yes; then