URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20010129-1.x] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
# Use "-mtune=i686" on i?86-*-* unless "-m64" is specified.
if { [istarget "i?86-*-*"] } {
set target_name [target_info name]
if {[board_info $target_name exists multilib_flags]} {
set multilib_flags [board_info $target_name multilib_flags]
if { ![regexp -- "-m64" $multilib_flags] } {
set additional_flags "-mtune=i686"
}
} else {
set additional_flags "-mtune=i686"
}
}
return 0
Go to most recent revision | Compare with Previous | Blame | View Log