view more/report-recorded-commands.sh @ 1792:23cb10ca9797 draft

If somebody feeds in -W,-elf2flt to set the stack size, don't feed the elf2flt flag in twice.
author Rob Landley <rob@landley.net>
date Mon, 21 Sep 2015 21:32:22 -0500
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