summaryrefslogtreecommitdiff
path: root/mk/embedded.mk
blob: 1614d8bc2ccb4076164a60f799f0bf05f17e1b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
## -*- makefile -*- ------------------------------------------------------
##
##   Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
##
##   This program is free software; you can redistribute it and/or modify
##   it under the terms of the GNU General Public License as published by
##   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
##   Boston MA 02111-1307, USA; either version 2 of the License, or
##   (at your option) any later version; incorporated herein by reference.
##
## -----------------------------------------------------------------------

##
## Make configuration for embedded directories
##

include $(MAKEDIR)/syslinux.mk

# Support IA32 and x86_64 platforms with one build
# Set up architecture specifics; for cross compilation, set ARCH as apt
# Initialize GCCOPT to null to begin with. Without this, make generates
# recursive error for GCCOPT
GCCOPT :=
ifeq ($(ARCH),i386)
	GCCOPT := $(call gcc_ok,-m32)
	GCCOPT += $(call gcc_ok,-march=i386)
	GCCOPT    += $(call gcc_ok,-mpreferred-stack-boundary=2,)
	GCCOPT    += $(call gcc_ok,-mincoming-stack-boundary=2,)
endif
ifeq ($(ARCH),x86_64)
	GCCOPT := $(call gcc_ok,-m64)
	GCCOPT += $(call gcc_ok,-march=x86-64)
	#let preferred-stack-boundary and incoming-stack-boundary be default(=4)
# Somewhere down the line ld barfs requiring -fPIC
	GCCOPT += $(call gcc_ok,-fPIC)
endif
GCCOPT    += $(call gcc_ok,-ffreestanding,)
GCCOPT	  += $(call gcc_ok,-fno-stack-protector,)
GCCOPT	  += $(call gcc_ok,-fwrapv,)
GCCOPT	  += $(call gcc_ok,-freg-struct-return,)
ifdef EFI_BUILD
GCCOPT    += -Os -fomit-frame-pointer -msoft-float
else
GCCOPT    += -Os -fomit-frame-pointer -mregparm=3 -DREGPARM=3 \
             -msoft-float
endif
GCCOPT    += $(call gcc_ok,-fno-exceptions,)
GCCOPT	  += $(call gcc_ok,-fno-asynchronous-unwind-tables,)
GCCOPT	  += $(call gcc_ok,-fno-strict-aliasing,)
GCCOPT	  += $(call gcc_ok,-falign-functions=0,-malign-functions=0)
GCCOPT    += $(call gcc_ok,-falign-jumps=0,-malign-jumps=0)
GCCOPT    += $(call gcc_ok,-falign-labels=0,-malign-labels=0)
GCCOPT    += $(call gcc_ok,-falign-loops=0,-malign-loops=0)
GCCOPT    += $(call gcc_ok,-fvisibility=hidden)

LIBGCC    := $(shell $(CC) $(GCCOPT) --print-libgcc)

LD        += -m elf_$(ARCH)

# Note: use += for CFLAGS and SFLAGS in case something is set in MCONFIG.local
CFLAGS    += $(GCCOPT) -g $(GCCWARN) -Wno-sign-compare $(OPTFLAGS) $(INCLUDES)
SFLAGS    += $(CFLAGS) -D__ASSEMBLY__

.SUFFIXES: .c .o .S .s .i .elf .com .bin .asm .lst .c32 .lss

%.o: %.c
	$(CC) $(MAKEDEPS) $(CFLAGS) -c -o $@ $<
%.i: %.c
	$(CC) $(MAKEDEPS) $(CFLAGS) -E -o $@ $<
%.s: %.c
	$(CC) $(MAKEDEPS) $(CFLAGS) -S -o $@ $<
%.o: %.S
	$(CC) $(MAKEDEPS) $(SFLAGS) -Wa,-a=$*.lst -c -o $@ $<
%.s: %.S
	$(CC) $(MAKEDEPS) $(SFLAGS) -E -o $@ $<