URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [config/] [arm/] [gentune.sh] - Rev 199
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/sh # Generate arm-tune.md, a file containing the tune attribute from the list of # CPUs in arm-cores.def echo ";; -*- buffer-read-only: t -*-" echo ";; Generated automatically by gentune.sh from arm-cores.def" allcores=`awk -F'[(, ]+' '/^ARM_CORE/ { cores = cores$3"," } END { print cores } ' $1` echo "(define_attr \"tune\"" echo " \"$allcores\"" | sed -e 's/,"$/"/' echo " (const (symbol_ref \"arm_tune\")))"
Go to most recent revision | Compare with Previous | Blame | View Log