Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/Makefile.inc

    r1f5c9c96 r95e370f8  
    3030BFD_ARCH = i386:x86-64
    3131BFD = binary
    32 CLANG_ARCH = x86_64
    3332
    3433FPU_NO_CFLAGS = -mno-sse -mno-sse2
    35 
    36 #
    37 # FIXME:
    38 #
    39 # The -fno-optimize-sibling-calls should be removed as soon as a bug
    40 # in GCC concerning the "large" memory model and tail call optimization
    41 # is fixed.
    42 #
    43 # When GCC generates a code for tail call, instead of generating ..
    44 #
    45 #   jmp *fnc
    46 #
    47 # it generates an assembly code with an illegal immediate prefix:
    48 #
    49 #   jmp *$fnc
    50 #
    51 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48385 for reference.
    52 #
    53 
    54 CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer -fno-optimize-sibling-calls
     34CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer
    5535GCC_CFLAGS += $(CMN1)
    5636ICC_CFLAGS += $(CMN1)
    57 SUNCC_CFLAGS += -m64 -xmodel=kernel
     37CLANG_CFLAGS += $(CMN1)
    5838
    5939BITS = 64
     
    6747        GCC_CFLAGS += $(CMN2)
    6848        ICC_CFLAGS += $(CMN2)
    69         SUNCC_CFLAGS += -xtarget=opteron
    7049endif
    7150
     
    8665        arch/$(KARCH)/src/bios/bios.c \
    8766        arch/$(KARCH)/src/interrupt.c \
     67        arch/$(KARCH)/src/mm/km.c \
    8868        arch/$(KARCH)/src/mm/as.c \
    8969        arch/$(KARCH)/src/mm/frame.c \
     
    9676        arch/$(KARCH)/src/proc/thread.c \
    9777        arch/$(KARCH)/src/userspace.c \
    98         arch/$(KARCH)/src/syscall.c \
    99         arch/$(KARCH)/src/debugger.c
     78        arch/$(KARCH)/src/syscall.c
    10079
    10180ifeq ($(CONFIG_SMP),y)
Note: See TracChangeset for help on using the changeset viewer.