Changeset 34:fef9c670375b for Makefile
- Timestamp:
- 12/02/07 15:49:03 (3 years ago)
- Branch:
- default
- convert_revision:
- svn:7c786126-522e-0410-a822-d6d8feae56ca/trunk@124
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r0 r34 199 199 endif 200 200 201 OPTIMIZE = -O 3 -ffast-math-funroll-loops -fomit-frame-pointer201 OPTIMIZE = -O2 -funroll-loops -fomit-frame-pointer 202 202 203 203 ifeq ($(ARCH),x86_64) 204 OPTIMIZE = -O 3 -fomit-frame-pointer -ffast-math-funroll-loops \204 OPTIMIZE = -O2 -fomit-frame-pointer -funroll-loops \ 205 205 -falign-loops=2 -falign-jumps=2 -falign-functions=2 \ 206 206 -fstrength-reduce … … 209 209 else 210 210 ifeq ($(ARCH),x86) 211 OPTIMIZE = -O 3 -march=i586 -fomit-frame-pointer -ffast-math\211 OPTIMIZE = -O2 -march=i586 -fomit-frame-pointer \ 212 212 -funroll-loops -falign-loops=2 -falign-jumps=2 \ 213 213 -falign-functions=2 -fstrength-reduce … … 320 320 321 321 ifeq ($(ARCH),ppc) 322 OPTIMIZE += -faltivec -O 3322 OPTIMIZE += -faltivec -O2 323 323 endif 324 324 ifeq ($(ARCH),x86) … … 365 365 $(LIBSDIR)/macosx/libSDL-1.2.0.dylib 366 366 367 OPTIMIZE += -f fast-math -falign-loops=16367 OPTIMIZE += -falign-loops=16 368 368 369 369 ifneq ($(HAVE_VM_COMPILED),true) … … 416 416 endif 417 417 418 OPTIMIZE = -O 3 -march=i586 -fno-omit-frame-pointer -ffast-math\418 OPTIMIZE = -O2 -march=i586 -fno-omit-frame-pointer \ 419 419 -falign-loops=2 -funroll-loops -falign-jumps=2 -falign-functions=2 \ 420 420 -fstrength-reduce … … 488 488 ifeq ($(ARCH),axp) 489 489 BASE_CFLAGS += -DNO_VM_COMPILED 490 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O 3 -ffast-math-funroll-loops \490 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O2 -funroll-loops \ 491 491 -fomit-frame-pointer -fexpensive-optimizations 492 492 else 493 493 ifeq ($(ARCH),x86) 494 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O 3-mtune=pentiumpro \495 -march=pentium -fomit-frame-pointer -pipe -ffast-math\494 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O2 -mtune=pentiumpro \ 495 -march=pentium -fomit-frame-pointer -pipe \ 496 496 -falign-loops=2 -falign-jumps=2 -falign-functions=2 \ 497 497 -funroll-loops -fstrength-reduce … … 568 568 BASE_CFLAGS=-Dstricmp=strcasecmp -Xcpluscomm -woff 1185 -mips3 \ 569 569 -nostdinc -I. -I$(ROOT)/usr/include -DNO_VM_COMPILED 570 RELEASE_CFLAGS=$(BASE_CFLAGS) -O 3570 RELEASE_CFLAGS=$(BASE_CFLAGS) -O2 571 571 DEBUG_CFLAGS=$(BASE_CFLAGS) -g 572 572 … … 607 607 -pipe -DUSE_ICON $(shell sdl-config --cflags) 608 608 609 OPTIMIZE = -O 3 -ffast-math-funroll-loops609 OPTIMIZE = -O2 -funroll-loops 610 610 611 611 ifeq ($(ARCH),sparc) 612 OPTIMIZE = -O 3 -ffast-math-falign-loops=2 \612 OPTIMIZE = -O2 -falign-loops=2 \ 613 613 -falign-jumps=2 -falign-functions=2 -fstrength-reduce \ 614 614 -mtune=ultrasparc -mv8plus -mno-faster-structs \ … … 616 616 else 617 617 ifeq ($(ARCH),x86) 618 OPTIMIZE = -O 3 -march=i586 -fomit-frame-pointer -ffast-math\618 OPTIMIZE = -O2 -march=i586 -fomit-frame-pointer \ 619 619 -funroll-loops -falign-loops=2 -falign-jumps=2 \ 620 620 -falign-functions=2 -fstrength-reduce … … 652 652 BASE_CFLAGS=-DNO_VM_COMPILED 653 653 DEBUG_CFLAGS=$(BASE_CFLAGS) -g 654 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O 3654 RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O2 655 655 656 656 SHLIBEXT=so
