comparison gcc/config/arm/gentune.sh @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 77e2b8dfacca
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
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
5 echo ";; -*- buffer-read-only: t -*-"
6 echo ";; Generated automatically by gentune.sh from arm-cores.def"
7
8 allcores=`awk -F'[(, ]+' '/^ARM_CORE/ { cores = cores$3"," } END { print cores } ' $1`
9
10 echo "(define_attr \"tune\""
11 echo " \"$allcores\"" | sed -e 's/,"$/"/'
12 echo " (const (symbol_ref \"arm_tune\")))"