mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
target_cpu makes much more sense for -march
This commit is contained in:
parent
031041d3be
commit
3537d67eff
1 changed files with 2 additions and 2 deletions
|
@ -1325,9 +1325,9 @@ if test "x$optimize" = xyes; then
|
|||
)
|
||||
case "$arch" in
|
||||
auto)
|
||||
case "${host_cpu}" in
|
||||
case "${target_cpu}" in
|
||||
i?86)
|
||||
MORE_CFLAGS="-march=${host_cpu}"
|
||||
MORE_CFLAGS="-march=${target_cpu}"
|
||||
;;
|
||||
*)
|
||||
MORE_CFLAGS=""
|
||||
|
|
Loading…
Reference in a new issue