mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
24 lines
367 B
Bash
Executable File
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-
|