mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 18:50:31 -04:00
Since -march=pentium4 is supposed to be fixed with GCC 3.3, and
since people have been reporting success with it, re-enable the pentium4 optimization.
This commit is contained in:
parent
8ce4e5189e
commit
96f5595bf7
1 changed files with 1 additions and 3 deletions
|
|
@ -50,9 +50,7 @@ _CPUCFLAGS = -march=${CPUTYPE}
|
|||
. elif ${CPUTYPE} == "k5"
|
||||
_CPUCFLAGS = -march=pentium
|
||||
. elif ${CPUTYPE} == "p4"
|
||||
# gcc 3.2 is known to produce broken code with -march=pentium4, so it is
|
||||
# disabled for now. This is fixed in gcc 3.3.
|
||||
_CPUCFLAGS = -march=pentium3
|
||||
_CPUCFLAGS = -march=pentium4
|
||||
. elif ${CPUTYPE} == "p3"
|
||||
_CPUCFLAGS = -march=pentium3
|
||||
. elif ${CPUTYPE} == "p2"
|
||||
|
|
|
|||
Loading…
Reference in a new issue