mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 21:41:57 +00:00
use -march=pentium and -march=pentiumpro on i586 and i686
builds. Non-Intel 686's should probably configure with target i586-[system triplet].
This commit is contained in:
parent
acf2de7612
commit
85687bc75a
1 changed files with 2 additions and 2 deletions
|
@ -858,10 +858,10 @@ if test "x$debug" != xyes; then
|
|||
MORE_CFLAGS="-m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2"
|
||||
;;
|
||||
i586-*-*)
|
||||
MORE_CFLAGS="-mpentium -malign-loops=2 -malign-jumps=2 -malign-functions=2"
|
||||
MORE_CFLAGS="-march=pentium -malign-loops=2 -malign-jumps=2 -malign-functions=2"
|
||||
;;
|
||||
i686-*-*)
|
||||
MORE_CFLAGS="-mpentiumpro -malign-loops=2 -malign-jumps=2 -malign-functions=2"
|
||||
MORE_CFLAGS="-march=pentiumpro -malign-loops=2 -malign-jumps=2 -malign-functions=2"
|
||||
;;
|
||||
*)
|
||||
MORE_CFLAGS=""
|
||||
|
|
Loading…
Reference in a new issue