wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2000-2002 |
| 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 8 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000 |
Mike Frysinger | 262ae0a | 2009-09-03 23:12:47 -0400 | [diff] [blame] | 9 | |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 10 | PLATFORM_CPPFLAGS += -fno-strict-aliasing |
Graeme Russ | 5c16165 | 2010-10-07 20:03:23 +1100 | [diff] [blame] | 11 | PLATFORM_CPPFLAGS += -fomit-frame-pointer |
Masahiro Yamada | f694183 | 2014-02-26 14:51:01 +0900 | [diff] [blame] | 12 | PF_CPPFLAGS_X86 := $(call cc-option, -fno-toplevel-reorder, \ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 13 | $(call cc-option, -fno-unit-at-a-time)) \ |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 14 | $(call cc-option, -mpreferred-stack-boundary=2) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 15 | |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 16 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_X86) |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 17 | PLATFORM_CPPFLAGS += -fno-dwarf2-cfi-asm |
Vasili Galka | dbb7234 | 2014-06-10 16:14:56 +0300 | [diff] [blame] | 18 | PLATFORM_CPPFLAGS += -march=i386 -m32 |
Graeme Russ | d664adb | 2010-10-07 20:03:20 +1100 | [diff] [blame] | 19 | |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 20 | PLATFORM_RELFLAGS += -ffunction-sections -fvisibility=hidden |
| 21 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 22 | PLATFORM_LDFLAGS += -Bsymbolic -Bsymbolic-functions -m elf_i386 |
Graeme Russ | a85f53c | 2011-02-12 15:11:21 +1100 | [diff] [blame] | 23 | |
Gabe Black | 36b2409 | 2011-11-16 23:01:37 +0000 | [diff] [blame] | 24 | LDFLAGS_FINAL += --wrap=__divdi3 --wrap=__udivdi3 |
| 25 | LDFLAGS_FINAL += --wrap=__moddi3 --wrap=__umoddi3 |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 26 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 27 | # This is used in the top-level Makefile which does not include |
| 28 | # PLATFORM_LDFLAGS |
| 29 | LDFLAGS_EFI_PAYLOAD := -Bsymbolic -Bsymbolic-functions -shared --no-undefined |
| 30 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 31 | OBJCOPYFLAGS_EFI := -j .text -j .sdata -j .data -j .dynamic -j .dynsym \ |
| 32 | -j .rel -j .rela -j .reloc |
| 33 | |
| 34 | CFLAGS_NON_EFI := -mregparm=3 |
| 35 | CFLAGS_EFI := -fpic -fshort-wchar |
| 36 | |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 37 | ifeq ($(CONFIG_EFI_STUB_64BIT),) |
| 38 | CFLAGS_EFI += $(call cc-option, -mno-red-zone) |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 39 | EFIARCH = ia32 |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 40 | EFIPAYLOAD_BFDTARGET = elf32-i386 |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 41 | else |
| 42 | EFIARCH = x86_64 |
| 43 | EFIPAYLOAD_BFDTARGET = elf64-x86-64 |
| 44 | endif |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 45 | |
| 46 | EFIPAYLOAD_BFDARCH = i386 |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 47 | |
Simon Glass | d36badf | 2016-11-07 08:47:13 -0700 | [diff] [blame] | 48 | LDSCRIPT_EFI := $(srctree)/arch/x86/lib/elf_$(EFIARCH)_efi.lds |
Simon Glass | 2dcd4e9 | 2016-11-07 08:47:14 -0700 | [diff] [blame] | 49 | EFISTUB := crt0_$(EFIARCH)_efi.o reloc_$(EFIARCH)_efi.o |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 50 | OBJCOPYFLAGS_EFI += --target=efi-app-$(EFIARCH) |
| 51 | |
Simon Glass | 96a8d40 | 2015-08-04 12:33:56 -0600 | [diff] [blame] | 52 | CPPFLAGS_REMOVE_crt0-efi-$(EFIARCH).o += $(CFLAGS_NON_EFI) |
| 53 | CPPFLAGS_crt0-efi-$(EFIARCH).o += $(CFLAGS_EFI) |
| 54 | |
Ben Stoltz | 3f1c046 | 2015-08-04 12:33:42 -0600 | [diff] [blame] | 55 | ifeq ($(CONFIG_EFI_APP),y) |
| 56 | |
| 57 | PLATFORM_CPPFLAGS += $(CFLAGS_EFI) |
| 58 | LDFLAGS_FINAL += -znocombreloc -shared |
| 59 | LDSCRIPT := $(LDSCRIPT_EFI) |
| 60 | |
| 61 | else |
| 62 | |
| 63 | PLATFORM_CPPFLAGS += $(CFLAGS_NON_EFI) |
| 64 | PLATFORM_LDFLAGS += --emit-relocs |
| 65 | LDFLAGS_FINAL += --gc-sections -pie |
| 66 | |
| 67 | endif |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 68 | |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 69 | ifneq ($(CONFIG_EFI_STUB)$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) |
Simon Glass | 5bd828b | 2016-11-07 08:47:15 -0700 | [diff] [blame] | 70 | |
| 71 | ifneq ($(CONFIG_EFI_STUB_64BIT),) |
| 72 | EFI_LDS := elf_x86_64_efi.lds |
| 73 | EFI_CRT0 := crt0_x86_64_efi.o |
| 74 | EFI_RELOC := reloc_x86_64_efi.o |
| 75 | EFI_TARGET := --target=efi-app-ia32 |
| 76 | else |
| 77 | EFI_LDS := elf_ia32_efi.lds |
| 78 | EFI_CRT0 := crt0_ia32_efi.o |
| 79 | EFI_RELOC := reloc_ia32_efi.o |
| 80 | EFI_TARGET := --target=efi-app-x86_64 |
| 81 | endif |
| 82 | |
| 83 | endif |