Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 516984
Collapse All | Expand All

(-)_Makefile (-1 / +38 lines)
Lines 61-66 Link Here
61
ifneq ($(ARCH),axp)
61
ifneq ($(ARCH),axp)
62
ifneq ($(ARCH),ia64)
62
ifneq ($(ARCH),ia64)
63
ifneq ($(ARCH),ppc)
63
ifneq ($(ARCH),ppc)
64
ifneq ($(ARCH),ppc64)
64
ifneq ($(ARCH),sparc)
65
ifneq ($(ARCH),sparc)
65
$(error arch $(ARCH) is currently not supported)
66
$(error arch $(ARCH) is currently not supported)
66
endif
67
endif
Lines 69-74 Link Here
69
endif
70
endif
70
endif
71
endif
71
endif
72
endif
73
endif
72
74
73
CC=gcc
75
CC=gcc
74
76
Lines 83-88 Link Here
83
	-fomit-frame-pointer -fexpensive-optimizations
85
	-fomit-frame-pointer -fexpensive-optimizations
84
endif
86
endif
85
87
88
ifeq ($(ARCH),ppc64)
89
OPT_CFLAGS=-O2 -ffast-math -funroll-loops \
90
        -fomit-frame-pointer -fexpensive-optimizations
91
endif
92
86
ifeq ($(ARCH),sparc)
93
ifeq ($(ARCH),sparc)
87
OPT_CFLAGS=-ffast-math -funroll-loops \
94
OPT_CFLAGS=-ffast-math -funroll-loops \
88
	-fomit-frame-pointer -fexpensive-optimizations
95
	-fomit-frame-pointer -fexpensive-optimizations
Lines 324-330 Link Here
324
 ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
331
 ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
325
  TARGETS += $(BUILDDIR)/sdlquake2
332
  TARGETS += $(BUILDDIR)/sdlquake2
326
 endif
333
 endif
327
 
334
328
 ifeq ($(strip $(BUILD_SVGA)),YES)
335
 ifeq ($(strip $(BUILD_SVGA)),YES)
329
  $(warning Warning: SVGAlib support not supported for $(ARCH))
336
  $(warning Warning: SVGAlib support not supported for $(ARCH))
330
 endif
337
 endif
Lines 350-355 Link Here
350
 endif
357
 endif
351
endif # ARCH ppc
358
endif # ARCH ppc
352
359
360
ifeq ($(ARCH),ppc64)
361
 ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
362
  TARGETS += $(BUILDDIR)/sdlquake2
363
 endif
364
365
 ifeq ($(strip $(BUILD_SVGA)),YES)
366
  $(warning Warning: SVGAlib support not supported for $(ARCH))
367
 endif
368
369
 ifeq ($(strip $(BUILD_X11)),YES)
370
  TARGETS += $(BUILDDIR)/ref_softx.$(SHLIBEXT)
371
 endif
372
373
 ifeq ($(strip $(BUILD_GLX)),YES)
374
  TARGETS += $(BUILDDIR)/ref_glx.$(SHLIBEXT)
375
 endif
376
377
 ifeq ($(strip $(BUILD_FXGL)),YES)
378
  $(warning Warning: FXGL support not supported for $(ARCH))
379
 endif
380
381
 ifeq ($(strip $(BUILD_SDL)),YES)
382
  TARGETS += $(BUILDDIR)/ref_softsdl.$(SHLIBEXT)
383
 endif
384
385
 ifeq ($(strip $(BUILD_SDLGL)),YES)
386
  TARGETS += $(BUILDDIR)/ref_sdlgl.$(SHLIBEXT)
387
 endif
388
endif # ARCH ppc64
389
353
ifeq ($(ARCH),sparc)
390
ifeq ($(ARCH),sparc)
354
 ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
391
 ifeq ($(strip $(BUILD_SDLQUAKE2)),YES)
355
  TARGETS += $(BUILDDIR)/sdlquake2
392
  TARGETS += $(BUILDDIR)/sdlquake2

Return to bug 516984