| OLD | NEW |
| 1 cc = cc | |
| 2 cxx = c++ | |
| 3 ld = $cc | |
| 4 ldxx = $cxx | |
| 5 ar = ar | |
| 6 | |
| 7 rule cc | 1 rule cc |
| 8 command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $
out | 2 command = $cc -MMD -MF $out.d $defines $includes $cflags $cflags_c -c $in -o $
out |
| 9 description = CC $out | 3 description = CC $out |
| 10 depfile = $out.d | 4 depfile = $out.d |
| 11 deps = gcc | 5 deps = gcc |
| 12 | 6 |
| 13 rule cxx | 7 rule cxx |
| 14 command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o
$out | 8 command = $cxx -MMD -MF $out.d $defines $includes $cflags $cflags_cc -c $in -o
$out |
| 15 description = CXX $out | 9 description = CXX $out |
| 16 depfile = $out.d | 10 depfile = $out.d |
| 17 deps = gcc | 11 deps = gcc |
| 18 | 12 |
| 19 rule alink_thin | 13 rule alink_thin |
| 20 command = rm -f $out && libtool -static -o $out $in | 14 command = rm -f $out && libtool -static -o $out $in |
| 21 description = AR $out | 15 description = AR $out |
| 22 | 16 |
| 23 rule link | 17 rule link |
| 24 command = $ld $ldflags -o $out $in $solibs $libs | 18 command = $ld $ldflags -o $out $in $solibs $libs |
| 25 description = LINK $out | 19 description = LINK $out |
| OLD | NEW |