Makefile 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#

UTS_MACHINE := arc

11
ifeq ($(CROSS_COMPILE),)
12
ifndef CONFIG_CPU_BIG_ENDIAN
13
CROSS_COMPILE := arc-linux-
14 15 16
else
CROSS_COMPILE := arceb-linux-
endif
17 18
endif

V
Vineet Gupta 已提交
19
KBUILD_DEFCONFIG := nsim_700_defconfig
20

21
cflags-y	+= -fno-common -pipe -fno-builtin -D__linux__
22 23
cflags-$(CONFIG_ISA_ARCOMPACT)	+= -mA7
cflags-$(CONFIG_ISA_ARCV2)	+= -mcpu=archs
24

25 26 27 28 29 30 31 32 33 34 35 36 37 38
is_700 = $(shell $(CC) -dM -E - < /dev/null | grep -q "ARC700" && echo 1 || echo 0)

ifdef CONFIG_ISA_ARCOMPACT
ifeq ($(is_700), 0)
    $(error Toolchain not configured for ARCompact builds)
endif
endif

ifdef CONFIG_ISA_ARCV2
ifeq ($(is_700), 1)
    $(error Toolchain not configured for ARCv2 builds)
endif
endif

39 40 41 42
ifdef CONFIG_ARC_CURR_IN_REG
# For a global register defintion, make sure it gets passed to every file
# We had a customer reported bug where some code built in kernel was NOT using
# any kernel headers, and missing the r25 global register
43
# Can't do unconditionally because of recursive include issues
44 45 46 47
# due to <linux/thread_info.h>
LINUXINCLUDE	+=  -include ${src}/arch/arc/include/asm/current.h
endif

V
Vineet Gupta 已提交
48 49 50 51
upto_gcc44    :=  $(call cc-ifversion, -le, 0404, y)
atleast_gcc44 :=  $(call cc-ifversion, -ge, 0404, y)
atleast_gcc48 :=  $(call cc-ifversion, -ge, 0408, y)

52 53 54 55
cflags-$(atleast_gcc44)			+= -fsection-anchors

cflags-$(CONFIG_ARC_HAS_LLSC)		+= -mlock
cflags-$(CONFIG_ARC_HAS_SWAPE)		+= -mswape
V
Vineet Gupta 已提交
56

57 58
ifdef CONFIG_ISA_ARCV2

59
ifndef CONFIG_ARC_HAS_LL64
60 61 62 63 64 65 66
cflags-y				+= -mno-ll64
endif

ifndef CONFIG_ARC_HAS_DIV_REM
cflags-y				+= -mno-div-rem
endif

67 68
endif

V
Vineet Gupta 已提交
69 70 71 72 73
# By default gcc 4.8 generates dwarf4 which kernel unwinder can't grok
ifeq ($(atleast_gcc48),y)
cflags-$(CONFIG_ARC_DW2_UNWIND)		+= -gdwarf-2
endif

74 75
ifndef CONFIG_CC_OPTIMIZE_FOR_SIZE
# Generic build system uses -O2, we want -O3
76
# Note: No need to add to cflags-y as that happens anyways
77
ARCH_CFLAGS += -O3
78 79 80 81 82 83 84 85 86 87
endif

# small data is default for elf32 tool-chain. If not usable, disable it
# This also allows repurposing GP as scratch reg to gcc reg allocator
disable_small_data := y
cflags-$(disable_small_data)		+= -mno-sdata -fcall-used-gp

cflags-$(CONFIG_CPU_BIG_ENDIAN)		+= -mbig-endian
ldflags-$(CONFIG_CPU_BIG_ENDIAN)	+= -EB

V
Vineet Gupta 已提交
88
# STAR 9000518362: (fixed with binutils shipping with gcc 4.8)
89
# arc-linux-uclibc-ld (buildroot) or arceb-elf32-ld (EZChip) don't accept
V
Vineet Gupta 已提交
90 91
# --build-id w/o "-marclinux". Default arc-elf32-ld is OK
ldflags-$(upto_gcc44)			+= -marclinux
92

V
Vineet Gupta 已提交
93
LIBGCC	:= $(shell $(CC) $(cflags-y) --print-libgcc-file-name)
94 95

# Modules with short calls might break for calls into builtin-kernel
96
KBUILD_CFLAGS_MODULE	+= -mlong-calls -mno-millicode
97 98 99 100 101 102 103 104 105 106 107

# Finally dump eveything into kernel build system
KBUILD_CFLAGS	+= $(cflags-y)
KBUILD_AFLAGS	+= $(KBUILD_CFLAGS)
LDFLAGS		+= $(ldflags-y)

head-y		:= arch/arc/kernel/head.o

# See arch/arc/Kbuild for content of core part of the kernel
core-y		+= arch/arc/

V
Vineet Gupta 已提交
108 109 110
# w/o this dtb won't embed into kernel binary
core-y		+= arch/arc/boot/dts/

V
Vineet Gupta 已提交
111 112
core-$(CONFIG_ARC_PLAT_SIM)	+= arch/arc/plat-sim/
core-$(CONFIG_ARC_PLAT_TB10X)	+= arch/arc/plat-tb10x/
113
core-$(CONFIG_ARC_PLAT_AXS10X)	+= arch/arc/plat-axs10x/
114 115 116 117 118
core-$(CONFIG_ARC_PLAT_EZNPS)	+= arch/arc/plat-eznps/

ifdef CONFIG_ARC_PLAT_EZNPS
KBUILD_CPPFLAGS += -I$(srctree)/arch/arc/plat-eznps/include
endif
119

V
Vineet Gupta 已提交
120 121
drivers-$(CONFIG_OPROFILE)	+= arch/arc/oprofile/

122 123
libs-y		+= arch/arc/lib/ $(LIBGCC)

124 125
boot		:= arch/arc/boot

A
Andrea Gelmini 已提交
126
#default target for make without any arguments.
127
KBUILD_IMAGE	:= bootpImage
128 129 130 131

all:	$(KBUILD_IMAGE)
bootpImage: vmlinux

132 133 134
boot_targets += uImage uImage.bin uImage.gz

$(boot_targets): vmlinux
135 136
	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

V
Vineet Gupta 已提交
137 138 139 140
%.dtb %.dtb.S %.dtb.o: scripts
	$(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@

dtbs: scripts
141
	$(Q)$(MAKE) $(build)=$(boot)/dts
V
Vineet Gupta 已提交
142

143 144 145 146 147 148 149 150 151 152 153 154
archclean:
	$(Q)$(MAKE) $(clean)=$(boot)

# Hacks to enable final link due to absence of link-time branch relexation
# and gcc choosing optimal(shorter) branches at -O3
#
# vineetg Feb 2010: -mlong-calls switched off for overall kernel build
# However lib/decompress_inflate.o (.init.text) calls
# zlib_inflate_workspacesize (.text) causing relocation errors.
# Thus forcing all exten calls in this file to be long calls
export CFLAGS_decompress_inflate.o = -mmedium-calls
export CFLAGS_initramfs.o = -mmedium-calls
V
Vineet Gupta 已提交
155 156 157
ifdef CONFIG_SMP
export CFLAGS_core.o = -mmedium-calls
endif