Blame view

buildroot/buildroot-2016.08.1/package/gcc/gcc.mk 11.5 KB
6b13f685e   김민수   BSP 최초 추가
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
  ################################################################################
  #
  # Common variables for the gcc-initial and gcc-final packages.
  #
  ################################################################################
  
  #
  # Version, site and source
  #
  
  GCC_VERSION = $(call qstrip,$(BR2_GCC_VERSION))
  
  ifeq ($(BR2_arc),y)
  GCC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,gcc,$(GCC_VERSION))
  GCC_SOURCE = gcc-$(GCC_VERSION).tar.gz
  else
  GCC_SITE = $(BR2_GNU_MIRROR:/=)/gcc/gcc-$(GCC_VERSION)
  endif
  
  GCC_SOURCE ?= gcc-$(GCC_VERSION).tar.bz2
  
  #
  # Xtensa special hook
  #
  
  HOST_GCC_XTENSA_OVERLAY_TAR = $(BR2_XTENSA_OVERLAY_DIR)/xtensa_$(call qstrip,$(BR2_XTENSA_CORE_NAME)).tar
  
  define HOST_GCC_XTENSA_OVERLAY_EXTRACT
  	tar xf $(HOST_GCC_XTENSA_OVERLAY_TAR) -C $(@D) --strip-components=1 gcc
  endef
  
  #
  # Apply patches
  #
  
  ifeq ($(ARCH),powerpc)
  ifneq ($(BR2_SOFT_FLOAT),)
  define HOST_GCC_APPLY_POWERPC_PATCH
  	$(APPLY_PATCHES) $(@D) package/gcc/$(GCC_VERSION) 1000-powerpc-link-with-math-lib.patch.conditional
  endef
  endif
  endif
  
  # gcc is a special package, not named gcc, but gcc-initial and
  # gcc-final, but patches are nonetheless stored in package/gcc in the
  # tree, and potentially in BR2_GLOBAL_PATCH_DIR directories as well.
  define HOST_GCC_APPLY_PATCHES
  	for patchdir in \
  	    package/gcc/$(GCC_VERSION) \
  	    $(addsuffix /gcc/$(GCC_VERSION),$(call qstrip,$(BR2_GLOBAL_PATCH_DIR))) \
  	    $(addsuffix /gcc,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR))) ; do \
  		if test -d $${patchdir}; then \
  			$(APPLY_PATCHES) $(@D) $${patchdir} \*.patch || exit 1; \
  		fi; \
  	done
  	$(HOST_GCC_APPLY_POWERPC_PATCH)
  endef
  
  HOST_GCC_EXCLUDES = \
  	libjava/* libgo/* \
  	gcc/testsuite/* libstdc++-v3/testsuite/*
  
  define HOST_GCC_FAKE_TESTSUITE
  	mkdir -p $(@D)/libstdc++-v3/testsuite/
  	echo "all:" > $(@D)/libstdc++-v3/testsuite/Makefile.in
  	echo "install:" >> $(@D)/libstdc++-v3/testsuite/Makefile.in
  endef
  
  #
  # Create 'build' directory and configure symlink
  #
  
  define HOST_GCC_CONFIGURE_SYMLINK
  	mkdir -p $(@D)/build
  	ln -sf ../configure $(@D)/build/configure
  endef
  
  #
  # Common configuration options
  #
  
  HOST_GCC_COMMON_DEPENDENCIES = \
  	host-binutils \
  	host-gmp \
  	host-mpfr \
  	$(if $(BR2_BINFMT_FLAT),host-elf2flt)
  
  HOST_GCC_COMMON_CONF_OPTS = \
  	--target=$(GNU_TARGET_NAME) \
  	--with-sysroot=$(STAGING_DIR) \
  	--disable-__cxa_atexit \
  	--with-gnu-ld \
  	--disable-libssp \
  	--disable-multilib \
  	--with-gmp=$(HOST_DIR)/usr \
  	--with-mpfr=$(HOST_DIR)/usr \
  	--with-pkgversion="Buildroot $(BR2_VERSION_FULL)" \
  	--with-bugurl="http://bugs.buildroot.net/"
  
  # Don't build documentation. It takes up extra space / build time,
  # and sometimes needs specific makeinfo versions to work
  HOST_GCC_COMMON_CONF_ENV = \
  	MAKEINFO=missing
  
  GCC_COMMON_TARGET_CFLAGS = $(TARGET_CFLAGS)
  GCC_COMMON_TARGET_CXXFLAGS = $(TARGET_CXXFLAGS)
  
  # Propagate options used for target software building to GCC target libs
  HOST_GCC_COMMON_CONF_ENV += CFLAGS_FOR_TARGET="$(GCC_COMMON_TARGET_CFLAGS)"
  HOST_GCC_COMMON_CONF_ENV += CXXFLAGS_FOR_TARGET="$(GCC_COMMON_TARGET_CXXFLAGS)"
  
  # libitm needs sparc V9+
  ifeq ($(BR2_sparc_v8)$(BR2_sparc_leon3),y)
  HOST_GCC_COMMON_CONF_OPTS += --disable-libitm
  endif
  
  # quadmath support requires wchar
  ifeq ($(BR2_USE_WCHAR)$(BR2_TOOLCHAIN_HAS_LIBQUADMATH),yy)
  HOST_GCC_COMMON_CONF_OPTS += --enable-libquadmath
  else
  HOST_GCC_COMMON_CONF_OPTS += --disable-libquadmath
  endif
  
  # libsanitizer requires wordexp, not in default uClibc config. Also
  # doesn't build properly with musl.
  ifeq ($(BR2_TOOLCHAIN_BUILDROOT_UCLIBC)$(BR2_TOOLCHAIN_BUILDROOT_MUSL),y)
  HOST_GCC_COMMON_CONF_OPTS += --disable-libsanitizer
  endif
  
  # libsanitizer is broken for SPARC
  # https://bugs.busybox.net/show_bug.cgi?id=7951
  ifeq ($(BR2_sparc)$(BR2_sparc64),y)
  HOST_GCC_COMMON_CONF_OPTS += --disable-libsanitizer
  endif
  
  ifeq ($(BR2_GCC_ENABLE_TLS),y)
  HOST_GCC_COMMON_CONF_OPTS += --enable-tls
  else
  HOST_GCC_COMMON_CONF_OPTS += --disable-tls
  endif
  
  ifeq ($(BR2_GCC_ENABLE_LTO),y)
  HOST_GCC_COMMON_CONF_OPTS += --enable-plugins --enable-lto
  endif
  
  ifeq ($(BR2_GCC_ENABLE_LIBMUDFLAP),y)
  HOST_GCC_COMMON_CONF_OPTS += --enable-libmudflap
  else
  HOST_GCC_COMMON_CONF_OPTS += --disable-libmudflap
  endif
  
  ifeq ($(BR2_PTHREADS_NONE),y)
  HOST_GCC_COMMON_CONF_OPTS += \
  	--disable-threads \
  	--disable-libitm \
  	--disable-libatomic
  else
  HOST_GCC_COMMON_CONF_OPTS += --enable-threads
  endif
  
  ifeq ($(BR2_GCC_NEEDS_MPC),y)
  HOST_GCC_COMMON_DEPENDENCIES += host-mpc
  HOST_GCC_COMMON_CONF_OPTS += --with-mpc=$(HOST_DIR)/usr
  endif
  
  ifeq ($(BR2_GCC_ENABLE_GRAPHITE),y)
  HOST_GCC_COMMON_DEPENDENCIES += host-isl
  HOST_GCC_COMMON_CONF_OPTS += --with-isl=$(HOST_DIR)/usr
  # gcc 5 doesn't need cloog any more, see
  # https://gcc.gnu.org/gcc-5/changes.html
  ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_5),)
  HOST_GCC_COMMON_DEPENDENCIES += host-cloog
  HOST_GCC_COMMON_CONF_OPTS += --with-cloog=$(HOST_DIR)/usr
  endif
  else
  HOST_GCC_COMMON_CONF_OPTS += --without-isl --without-cloog
  endif
  
  ifeq ($(BR2_arc),y)
  HOST_GCC_COMMON_DEPENDENCIES += host-flex host-bison
  endif
  
  ifeq ($(BR2_SOFT_FLOAT),y)
  # only mips*-*-*, arm*-*-* and sparc*-*-* accept --with-float
  # powerpc seems to be needing it as well
  ifeq ($(BR2_arm)$(BR2_armeb)$(BR2_mips)$(BR2_mipsel)$(BR2_mips64)$(BR2_mips64el)$(BR2_powerpc)$(BR2_sparc),y)
  HOST_GCC_COMMON_CONF_OPTS += --with-float=soft
  endif
  endif
  
  ifeq ($(BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE),y)
  HOST_GCC_COMMON_CONF_OPTS += --disable-decimal-float
  endif
  
  # Determine arch/tune/abi/cpu options
  ifeq ($(BR2_GCC_ARCH_HAS_CONFIGURABLE_DEFAULTS),y)
  ifneq ($(call qstrip,$(BR2_GCC_TARGET_ARCH)),)
  HOST_GCC_COMMON_CONF_OPTS += --with-arch=$(BR2_GCC_TARGET_ARCH)
  endif
  ifneq ($(call qstrip,$(BR2_GCC_TARGET_ABI)),)
  HOST_GCC_COMMON_CONF_OPTS += --with-abi=$(BR2_GCC_TARGET_ABI)
  endif
  ifneq ($(call qstrip,$(BR2_GCC_TARGET_CPU)),)
  ifneq ($(call qstrip,$(BR2_GCC_TARGET_CPU_REVISION)),)
  HOST_GCC_COMMON_CONF_OPTS += --with-cpu=$(call qstrip,$(BR2_GCC_TARGET_CPU)-$(BR2_GCC_TARGET_CPU_REVISION))
  else
  HOST_GCC_COMMON_CONF_OPTS += --with-cpu=$(call qstrip,$(BR2_GCC_TARGET_CPU))
  endif
  endif
  
  GCC_TARGET_FPU = $(call qstrip,$(BR2_GCC_TARGET_FPU))
  ifneq ($(GCC_TARGET_FPU),)
  HOST_GCC_COMMON_CONF_OPTS += --with-fpu=$(GCC_TARGET_FPU)
  endif
  
  GCC_TARGET_FLOAT_ABI = $(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
  ifneq ($(GCC_TARGET_FLOAT_ABI),)
  HOST_GCC_COMMON_CONF_OPTS += --with-float=$(GCC_TARGET_FLOAT_ABI)
  endif
  
  GCC_TARGET_MODE = $(call qstrip,$(BR2_GCC_TARGET_MODE))
  ifneq ($(GCC_TARGET_MODE),)
  HOST_GCC_COMMON_CONF_OPTS += --with-mode=$(GCC_TARGET_MODE)
  endif
  endif # BR2_GCC_ARCH_HAS_CONFIGURABLE_DEFAULTS
  
  # Enable proper double/long double for SPE ABI
  ifeq ($(BR2_powerpc_SPE),y)
  HOST_GCC_COMMON_CONF_OPTS += \
  	--enable-e500_double \
  	--with-long-double-128
  endif
  
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_CROSS_PATH_SUFFIX='".br_real"'
  ifeq ($(BR2_GCC_ARCH_HAS_CONFIGURABLE_DEFAULTS),)
  ifeq ($(call qstrip,$(BR2_GCC_TARGET_CPU_REVISION)),)
  HOST_GCC_COMMON_WRAPPER_TARGET_CPU := $(call qstrip,$(BR2_GCC_TARGET_CPU))
  else
  HOST_GCC_COMMON_WRAPPER_TARGET_CPU := $(call qstrip,$(BR2_GCC_TARGET_CPU)-$(BR2_GCC_TARGET_CPU_REVISION))
  endif
  HOST_GCC_COMMON_WRAPPER_TARGET_ARCH := $(call qstrip,$(BR2_GCC_TARGET_ARCH))
  HOST_GCC_COMMON_WRAPPER_TARGET_ABI := $(call qstrip,$(BR2_GCC_TARGET_ABI))
  HOST_GCC_COMMON_WRAPPER_TARGET_FPU := $(call qstrip,$(BR2_GCC_TARGET_FPU))
  HOST_GCC_COMMON_WRAPPER_TARGET_FLOAT_ABI := $(call qstrip,$(BR2_GCC_TARGET_FLOAT_ABI))
  HOST_GCC_COMMON_WRAPPER_TARGET_MODE := $(call qstrip,$(BR2_GCC_TARGET_MODE))
  
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_ARCH),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_ARCH='"$(HOST_GCC_COMMON_WRAPPER_TARGET_ARCH)"'
  endif
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_CPU),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_CPU='"$(HOST_GCC_COMMON_WRAPPER_TARGET_CPU)"'
  endif
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_ABI),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_ABI='"$(HOST_GCC_COMMON_WRAPPER_TARGET_ABI)"'
  endif
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_FPU),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_FPU='"$(HOST_GCC_COMMON_WRAPPER_TARGET_FPU)"'
  endif
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_FLOATABI_),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_FLOAT_ABI='"$(HOST_GCC_COMMON_WRAPPER_TARGET_FLOATABI_)"'
  endif
  ifneq ($(HOST_GCC_COMMON_WRAPPER_TARGET_MODE),)
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_MODE='"$(HOST_GCC_COMMON_WRAPPER_TARGET_MODE)"'
  endif
  endif # !BR2_GCC_ARCH_HAS_CONFIGURABLE_DEFAULTS
  
  # For gcc-initial, we need to tell gcc that the C library will be
  # providing the ssp support, as it can't guess it since the C library
  # hasn't been built yet.
  #
  # For gcc-final, the gcc logic to detect whether SSP support is
  # available or not in the C library is not working properly for
  # uClibc, so let's be explicit as well.
  HOST_GCC_COMMON_MAKE_OPTS = \
  	gcc_cv_libc_provides_ssp=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
  
  ifeq ($(BR2_CCACHE),y)
  HOST_GCC_COMMON_CCACHE_HASH_FILES += $(DL_DIR)/$(GCC_SOURCE)
  
  # Cfr. PATCH_BASE_DIRS in .stamp_patched, but we catch both versioned
  # and unversioned patches unconditionally. Moreover, to facilitate the
  # addition of gcc patches in BR2_GLOBAL_PATCH_DIR, we allow them to be
  # stored in a sub-directory called 'gcc' even if it's not technically
  # the name of the package.
  HOST_GCC_COMMON_CCACHE_HASH_FILES += \
  	$(sort $(wildcard \
  		package/gcc/$(GCC_VERSION)/*.patch \
  		$(addsuffix /$($(PKG)_RAWNAME)/$(GCC_VERSION)/*.patch,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR))) \
  		$(addsuffix /$($(PKG)_RAWNAME)/*.patch,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR))) \
  		$(addsuffix /gcc/$(GCC_VERSION)/*.patch,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR))) \
  		$(addsuffix /gcc/*.patch,$(call qstrip,$(BR2_GLOBAL_PATCH_DIR)))))
  ifeq ($(BR2_xtensa),y)
  HOST_GCC_COMMON_CCACHE_HASH_FILES += $(HOST_GCC_XTENSA_OVERLAY_TAR)
  endif
  ifeq ($(ARCH),powerpc)
  ifneq ($(BR2_SOFT_FLOAT),)
  HOST_GCC_COMMON_CCACHE_HASH_FILES += package/gcc/$(GCC_VERSION)/1000-powerpc-link-with-math-lib.patch.conditional
  endif
  endif
  
  # _CONF_OPTS contains some references to the absolute path of $(HOST_DIR)
  # and a reference to the Buildroot git revision (BR2_VERSION_FULL),
  # so substitute those away.
  HOST_GCC_COMMON_TOOLCHAIN_WRAPPER_ARGS += -DBR_CCACHE_HASH=\"`\
  	printf '%s
  ' $(subst $(HOST_DIR),@HOST_DIR@,\
  		$(subst --with-pkgversion="Buildroot $(BR2_VERSION_FULL)",,$($(PKG)_CONF_OPTS))) \
  		| sha256sum - $(HOST_GCC_COMMON_CCACHE_HASH_FILES) \
  		| cut -c -64 | tr -d '
  '`\"
  endif # BR2_CCACHE
  
  # The LTO support in gcc creates wrappers for ar, ranlib and nm which load
  # the lto plugin. These wrappers are called *-gcc-ar, *-gcc-ranlib, and
  # *-gcc-nm and should be used instead of the real programs when -flto is
  # used. However, we should not add the toolchain wrapper for them, and they
  # match the *cc-* pattern. Therefore, an additional case is added for *-ar,
  # *-ranlib and *-nm.
  # According to gfortran manpage, it supports all options supported by gcc, so
  # add gfortran to the list of the program called via the Buildroot wrapper.
  # Avoid that a .br_real is symlinked a second time.
  # Also create <arch>-linux-<tool> symlinks.
  define HOST_GCC_INSTALL_WRAPPER_AND_SIMPLE_SYMLINKS
  	$(Q)cd $(HOST_DIR)/usr/bin; \
  	for i in $(GNU_TARGET_NAME)-*; do \
  		case "$$i" in \
  		*.br_real) \
  			;; \
  		*-ar|*-ranlib|*-nm) \
  			ln -snf $$i $(ARCH)-linux$${i##$(GNU_TARGET_NAME)}; \
  			;; \
  		*cc|*cc-*|*++|*++-*|*cpp|*-gfortran) \
  			rm -f $$i.br_real; \
  			mv $$i $$i.br_real; \
  			ln -sf toolchain-wrapper $$i; \
  			ln -sf toolchain-wrapper $(ARCH)-linux$${i##$(GNU_TARGET_NAME)}; \
  			ln -snf $$i.br_real $(ARCH)-linux$${i##$(GNU_TARGET_NAME)}.br_real; \
  			;; \
  		*) \
  			ln -snf $$i $(ARCH)-linux$${i##$(GNU_TARGET_NAME)}; \
  			;; \
  		esac; \
  	done
  
  endef
  
  include $(sort $(wildcard package/gcc/*/*.mk))