Changeset 4c53333 in mainline for kernel/arch/amd64/Makefile.inc
- Timestamp:
- 2013-07-11T08:21:10Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 64e63ce1
- Parents:
- 80445cf (diff), c8bb1633 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/Makefile.inc
r80445cf r4c53333 30 30 BFD_ARCH = i386:x86-64 31 31 BFD = binary 32 CLANG_ARCH = x86_6433 32 34 33 FPU_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 34 CMN1 = -m64 -mcmodel=large -mno-red-zone -fno-unwind-tables -fno-omit-frame-pointer 55 35 GCC_CFLAGS += $(CMN1) 56 36 ICC_CFLAGS += $(CMN1) 57 SUNCC_CFLAGS += -m64 -xmodel=kernel 37 CLANG_CFLAGS += $(CMN1) 58 38 59 39 BITS = 64 … … 67 47 GCC_CFLAGS += $(CMN2) 68 48 ICC_CFLAGS += $(CMN2) 69 SUNCC_CFLAGS += -xtarget=opteron70 49 endif 71 50 … … 97 76 arch/$(KARCH)/src/proc/thread.c \ 98 77 arch/$(KARCH)/src/userspace.c \ 99 arch/$(KARCH)/src/syscall.c \ 100 arch/$(KARCH)/src/debugger.c 78 arch/$(KARCH)/src/syscall.c 101 79 102 80 ifeq ($(CONFIG_SMP),y)
Note:
See TracChangeset
for help on using the changeset viewer.