mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
change ccflags = -O march=i386 to march=i486
All asm code are writen for i486. so why did we compile it for i386 when it does not work on i386. svn path=/trunk/; revision=10773
This commit is contained in:
parent
198d9eefbc
commit
a40f706f8e
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ export BIN2RES = $(Q)$(TOOLS_PATH)/bin2res/bin2res
|
|||
export XSLTPROC = $(Q)xsltproc
|
||||
export MS2PS = $(Q)$(TOOLS_PATH)/ms2ps/ms2ps
|
||||
|
||||
export STD_CFLAGS = -I$(PATH_TO_TOP)/include -I$(W32API_PATH)/include -pipe -march=i386 -D_M_IX86
|
||||
export STD_CFLAGS = -I$(PATH_TO_TOP)/include -I$(W32API_PATH)/include -pipe -march=i486 -D_M_IX86
|
||||
export STD_CPPFLAGS = $(STD_CFLAGS)
|
||||
export STD_ASFLAGS = -I$(PATH_TO_TOP)/include -I$(W32API_PATH)/include -D__ASM__ -D_M_IX86
|
||||
export STD_RCFLAGS = --include-dir $(PATH_TO_TOP)/include --include-dir $(W32API_PATH)/include
|
||||
|
|
Loading…
Reference in a new issue