crosstool-ng/tools/ct-ng.extract-config
Yann E. MORIN" ede3c76fc2 Fix the install procedure:
- remove useless script tools/addToolVersion.sh: it is not needed when running crosstool-NG, only for developpers,
 - create a symlink to the configuration extract script, so that it is in the PATH if ct-ng is.
2007-07-08 22:28:47 +00:00

24 lines
367 B
Bash
Executable File

#!/bin/sh
# This scripts extracts a crosstool-NG configuration from the log file
# of a toolchain build with crosstool-NG.
# Usage: $0 <logfile>
cat "$1" |awk '
BEGIN {
dump = 0;
}
$0~/Dumping crosstool-NG configuration: done in.+s$/ {
dump = 0;
}
dump == 1 { $1 = "" }
dump == 1
$0~/Dumping crosstool-NG configuration$/ {
dump = 1;
}
' |cut -d ' ' -f 2-