1#!/bin/sh
2# Generate arm-tune.md, a file containing the tune attribute from the list of 
3# CPUs in arm-cores.def
4
5echo ";; -*- buffer-read-only: t -*-"
6echo ";; Generated automatically by gentune.sh from arm-cores.def"
7
8allcores=`awk -F'[(, 	]+' '/^ARM_CORE/ { cores = cores$3"," } END { print cores } ' $1`
9
10echo "(define_attr \"tune\""
11echo "	\"$allcores\"" | sed -e 's/,"$/"/'
12echo "	(const (symbol_ref \"arm_tune\")))"
13