Fix from stable branch.
This commit is contained in:
parent
0c86c87c60
commit
9fe07b7cf0
1 changed files with 3 additions and 3 deletions
6
config
6
config
|
@ -527,9 +527,9 @@ case "$GUESSOS" in
|
|||
esac
|
||||
if [ "$CC" = "gcc" ]; then
|
||||
case ${ISA:-generic} in
|
||||
EV5|EV45) options="$options -march=ev5";;
|
||||
EV56|PCA56) options="$options -march=ev56";;
|
||||
*) options="$options -march=ev6";;
|
||||
EV5|EV45) options="$options -mcpu=ev5";;
|
||||
EV56|PCA56) options="$options -mcpu=ev56";;
|
||||
*) options="$options -mcpu=ev6";;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue