view more/report-recorded-commands.sh @ 1725:c0c2e67782be draft

New squashfs config symbol, not sure why you'd ever want to switch it off...
author Rob Landley <rob@landley.net>
date Sun, 25 Jan 2015 11:48:36 -0600
parents 300e6d919d86
children
line wrap: on
line source

#!/bin/bash

# List the commands used to build each architecture.

# If given an argument it's the architecture to compare others against,
# which shows just the extra commands used by those other architectures.

# Mines the output created by build.sh after record-commands.sh.

COMPARE="$1"

# Output the list of commands used in a command log.

function mine_commands()
{
  awk '{print $1}' build/logs/cmdlines.$1.* | sort -u
}

# Iterate through architectures

for i in `ls -1 build/logs/cmdlines.* | sed 's@.*/cmdlines\.\([^.]*\).*@\1@' | sort -u`
do
  [ "$COMPARE" == "$i" ] && continue

  # Start of new group, announce build stage we're looking at.
  echo
  echo -n Checking $i:

  if [ -z "$COMPARE" ]
  then
    # Show all commands in first architecture.
    echo $(mine_commands $i)
  else
    # Show commands that differ from first architecture (if any).
    echo $(sort <(mine_commands $COMPARE) <(mine_commands $i) | uniq -u)
  fi
done