debuggers.hg
changeset 3548:b65d76ce54d5
bitkeeper revision 1.1159.226.2 (41f530d3LtbkTKUSgcI8LiQlQRJG0w)
Fix Xen's linker command line.
Fix Xen's linker command line.
author | kaf24@scramble.cl.cam.ac.uk |
---|---|
date | Mon Jan 24 17:30:59 2005 +0000 (2005-01-24) |
parents | 67fbcadbd686 |
children | 8e9727839e1d 4df7d8e48278 |
files | xen/arch/x86/Rules.mk |
line diff
1.1 --- a/xen/arch/x86/Rules.mk Sun Jan 23 13:27:13 2005 +0000 1.2 +++ b/xen/arch/x86/Rules.mk Mon Jan 24 17:30:59 2005 +0000 1.3 @@ -24,13 +24,13 @@ CFLAGS += $(call test-gcc-flag,-fno-sta 1.4 1.5 ifeq ($(TARGET_SUBARCH),x86_32) 1.6 CFLAGS += -m32 -march=i686 1.7 -LDFLAGS := --oformat elf32-i386 1.8 +LDFLAGS := -m elf_i386 1.9 endif 1.10 1.11 ifeq ($(TARGET_SUBARCH),x86_64) 1.12 CFLAGS += -m64 -mno-red-zone -fpic -fno-reorder-blocks 1.13 CFLAGS += -fno-asynchronous-unwind-tables 1.14 -LDFLAGS := --oformat elf64-x86-64 1.15 +LDFLAGS := -m elf_x86_64 1.16 endif 1.17 1.18 # Test for at least GCC v3.2.x.