Makefile.alpha
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. # This material is inherited from the Linux Makefile: arch/alpha/Makefile:
  2. #
  3. #
  4. # alpha/Makefile
  5. #
  6. # This file is subject to the terms and conditions of the GNU General Public
  7. # License.  See the file "COPYING" in the main directory of this archive
  8. # for more details.
  9. #
  10. # Copyright (C) 1994 by Linus Torvalds
  11. #
  12. NM := nm -B
  13. LINKFLAGS = -static -T arch/alpha/vmlinux.lds -N #-relax
  14. CFLAGS := $(CFLAGS) -pipe -mno-fp-regs -ffixed-8
  15. # Determine if we can use the BWX instructions with GAS.
  16. old_gas := $(shell if $(AS) --version 2>&1 | grep 'version 2.7' > /dev/null; then echo y; else echo n; fi)
  17. # Determine if GCC understands the -mcpu= option.
  18. have_mcpu := $(shell if $(CC) -mcpu=ev5 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  19. have_mcpu_pca56 := $(shell if $(CC) -mcpu=pca56 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  20. have_mcpu_ev6 := $(shell if $(CC) -mcpu=ev6 -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo y; else echo n; fi)
  21. # Turn on the proper cpu optimizations.
  22. ifeq ($(have_mcpu),y)
  23.   # If GENERIC, make sure to turn off any instruction set extensions that
  24.   # the host compiler might have on by default.  Given that EV4 and EV5
  25.   # have the same instruction set, prefer EV5 because an EV5 schedule is
  26.   # more likely to keep an EV4 processor busy than vice-versa.
  27.   mcpu_done := n
  28.   ifeq ($(CONFIG_ALPHA_GENERIC),y)
  29.     CFLAGS := $(CFLAGS) -mcpu=ev5
  30.     mcpu_done := y
  31.   endif
  32.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_PYXIS),ny)
  33.     CFLAGS := $(CFLAGS) -mcpu=ev56
  34.     mcpu_done := y
  35.   endif
  36.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_POLARIS),ny)
  37.     ifeq ($(have_mcpu_pca56),y)
  38.       CFLAGS := $(CFLAGS) -mcpu=pca56
  39.     else
  40.       CFLAGS := $(CFLAGS) -mcpu=ev56
  41.     endif
  42.     mcpu_done := y
  43.   endif
  44.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_NAUTILUS)$(have_mcpu_ev67),nyy)
  45.     CFLAGS := $(CFLAGS) -mcpu=ev67
  46.     mcpu_done := y
  47.   endif
  48.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV4),ny)
  49.     CFLAGS := $(CFLAGS) -mcpu=ev4
  50.     mcpu_done := y
  51.   endif
  52.   ifeq ($(mcpu_done)$(CONFIG_ALPHA_EV6),ny)
  53.     ifeq ($(have_mcpu_ev6),y)
  54.       CFLAGS := $(CFLAGS) -mcpu=ev6
  55.     else
  56.       ifeq ($(have_mcpu_pca56),y)
  57.         CFLAGS := $(CFLAGS) -mcpu=pca56
  58.       else
  59.         CFLAGS := $(CFLAGS) -mcpu=ev56
  60.       endif
  61.     endif
  62.     mcpu_done := y
  63.   endif
  64. endif
  65. # For TSUNAMI, we must have the assembler not emulate our instructions.
  66. # The same is true for IRONGATE, POLARIS, PYXIS.
  67. # BWX is most important, but we don't really want any emulation ever.
  68. ifeq ($(old_gas),y)
  69.   # How do we do #error in make?
  70.   CFLAGS := --error-please-upgrade-your-assembler
  71. endif
  72. CFLAGS := $(CFLAGS) -Wa,-mev6