From: lordhavoc Date: Fri, 1 Mar 2002 00:13:42 +0000 (+0000) Subject: changed mingw makefile to by default not compile for any specific processor X-Git-Tag: RELEASE_0_2_0_RC1~599 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=064f66b0d779550f9beadc25261645d35691ec43;p=xonotic%2Fdarkplaces.git changed mingw makefile to by default not compile for any specific processor git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1596 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile.mingw b/makefile.mingw index 174ce775..b50d8f57 100644 --- a/makefile.mingw +++ b/makefile.mingw @@ -3,8 +3,10 @@ OBJECTS= builddate.o chase.o cl_demo.o cl_input.o cl_main.o cl_parse.o cl_tent.o #K6/athlon optimizations #CPUOPTIMIZATIONS=-march=k6 -#686 optimizations -CPUOPTIMIZATIONS=-march=i686 +#686 optimizations (note: crashs on k6, works on athlon) +#CPUOPTIMIZATIONS=-march=i686 +#generic (run on anything) +CPUOPTIMIZATIONS= #note: #the -Werror can be removed to compile even if there are warnings,