diff options
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/gcc-final/gcc-final.mk | 16 | ||||
-rw-r--r-- | package/gcc/gcc-initial/gcc-initial.mk | 4 | ||||
-rw-r--r-- | package/gcc/gcc.mk | 52 |
3 files changed, 36 insertions, 36 deletions
diff --git a/package/gcc/gcc-final/gcc-final.mk b/package/gcc/gcc-final/gcc-final.mk index 44b956196a..f1cd66a2af 100644 --- a/package/gcc/gcc-final/gcc-final.mk +++ b/package/gcc/gcc-final/gcc-final.mk @@ -36,7 +36,7 @@ define HOST_GCC_FINAL_CONFIGURE_CMDS --prefix="$(HOST_DIR)/usr" \ --sysconfdir="$(HOST_DIR)/etc" \ --enable-static \ - $(QUIET) $(HOST_GCC_FINAL_CONF_OPT) \ + $(QUIET) $(HOST_GCC_FINAL_CONF_OPTS) \ ) endef @@ -48,28 +48,28 @@ GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_FORTRAN) += fortran GCC_FINAL_CROSS_LANGUAGES-$(BR2_INSTALL_OBJC) += objc GCC_FINAL_CROSS_LANGUAGES = $(subst $(space),$(comma),$(GCC_FINAL_CROSS_LANGUAGES-y)) -HOST_GCC_FINAL_CONF_OPT = \ - $(HOST_GCC_COMMON_CONF_OPT) \ +HOST_GCC_FINAL_CONF_OPTS = \ + $(HOST_GCC_COMMON_CONF_OPTS) \ --enable-languages=$(GCC_FINAL_CROSS_LANGUAGES) \ $(DISABLE_LARGEFILE) \ --with-build-time-tools=$(HOST_DIR)/usr/$(GNU_TARGET_NAME)/bin # Disable shared libs like libstdc++ if we do static since it confuses linking ifeq ($(BR2_PREFER_STATIC_LIB),y) -HOST_GCC_FINAL_CONF_OPT += --disable-shared +HOST_GCC_FINAL_CONF_OPTS += --disable-shared else -HOST_GCC_FINAL_CONF_OPT += --enable-shared +HOST_GCC_FINAL_CONF_OPTS += --enable-shared endif ifeq ($(BR2_GCC_ENABLE_OPENMP),y) -HOST_GCC_FINAL_CONF_OPT += --enable-libgomp +HOST_GCC_FINAL_CONF_OPTS += --enable-libgomp else -HOST_GCC_FINAL_CONF_OPT += --disable-libgomp +HOST_GCC_FINAL_CONF_OPTS += --disable-libgomp endif # End with user-provided options, so that they can override previously # defined options. -HOST_GCC_FINAL_CONF_OPT += \ +HOST_GCC_FINAL_CONF_OPTS += \ $(call qstrip,$(BR2_EXTRA_GCC_CONFIG_OPTIONS)) HOST_GCC_FINAL_CONF_ENV = \ diff --git a/package/gcc/gcc-initial/gcc-initial.mk b/package/gcc/gcc-initial/gcc-initial.mk index 63cf88ba22..ef3ad30bd0 100644 --- a/package/gcc/gcc-initial/gcc-initial.mk +++ b/package/gcc/gcc-initial/gcc-initial.mk @@ -36,8 +36,8 @@ endef HOST_GCC_INITIAL_POST_PATCH_HOOKS += HOST_GCC_INITIAL_DISABLE_LIBGMON endif -HOST_GCC_INITIAL_CONF_OPT = \ - $(HOST_GCC_COMMON_CONF_OPT) \ +HOST_GCC_INITIAL_CONF_OPTS = \ + $(HOST_GCC_COMMON_CONF_OPTS) \ --enable-languages=c \ --disable-shared \ --without-headers \ diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk index 7da4ee2afc..3303591c08 100644 --- a/package/gcc/gcc.mk +++ b/package/gcc/gcc.mk @@ -91,7 +91,7 @@ HOST_GCC_COMMON_DEPENDENCIES = \ host-mpfr \ $(if $(BR2_BINFMT_FLAT),host-elf2flt) -HOST_GCC_COMMON_CONF_OPT = \ +HOST_GCC_COMMON_CONF_OPTS = \ --target=$(GNU_TARGET_NAME) \ --with-sysroot=$(STAGING_DIR) \ --disable-__cxa_atexit \ @@ -110,54 +110,54 @@ HOST_GCC_COMMON_CONF_ENV = \ # Workaround until it's fixed in 4.5.4 or later ifeq ($(ARCH),powerpc) ifeq ($(findstring x4.5.,x$(GCC_VERSION)),x4.5.) -HOST_GCC_COMMON_CONF_OPT += --disable-target-optspace +HOST_GCC_COMMON_CONF_OPTS += --disable-target-optspace endif else -HOST_GCC_COMMON_CONF_OPT += --enable-target-optspace +HOST_GCC_COMMON_CONF_OPTS += --enable-target-optspace endif # gcc 4.6.x quadmath requires wchar ifneq ($(BR2_TOOLCHAIN_BUILDROOT_WCHAR),y) -HOST_GCC_COMMON_CONF_OPT += --disable-libquadmath +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_OPT += --disable-libsanitizer +HOST_GCC_COMMON_CONF_OPTS += --disable-libsanitizer endif ifeq ($(BR2_GCC_ENABLE_TLS),y) -HOST_GCC_COMMON_CONF_OPT += --enable-tls +HOST_GCC_COMMON_CONF_OPTS += --enable-tls else -HOST_GCC_COMMON_CONF_OPT += --disable-tls +HOST_GCC_COMMON_CONF_OPTS += --disable-tls endif ifeq ($(BR2_GCC_ENABLE_LIBMUDFLAP),y) -HOST_GCC_COMMON_CONF_OPT += --enable-libmudflap +HOST_GCC_COMMON_CONF_OPTS += --enable-libmudflap else -HOST_GCC_COMMON_CONF_OPT += --disable-libmudflap +HOST_GCC_COMMON_CONF_OPTS += --disable-libmudflap endif ifeq ($(BR2_PTHREADS_NONE),y) -HOST_GCC_COMMON_CONF_OPT += \ +HOST_GCC_COMMON_CONF_OPTS += \ --disable-threads \ --disable-libitm \ --disable-libatomic else -HOST_GCC_COMMON_CONF_OPT += --enable-threads +HOST_GCC_COMMON_CONF_OPTS += --enable-threads endif ifeq ($(BR2_GCC_NEEDS_MPC),y) HOST_GCC_COMMON_DEPENDENCIES += host-mpc -HOST_GCC_COMMON_CONF_OPT += --with-mpc=$(HOST_DIR)/usr +HOST_GCC_COMMON_CONF_OPTS += --with-mpc=$(HOST_DIR)/usr endif ifeq ($(BR2_GCC_ENABLE_GRAPHITE),y) HOST_GCC_COMMON_DEPENDENCIES += host-isl host-cloog -HOST_GCC_COMMON_CONF_OPT += --with-isl=$(HOST_DIR)/usr --with-cloog=$(HOST_DIR)/usr +HOST_GCC_COMMON_CONF_OPTS += --with-isl=$(HOST_DIR)/usr --with-cloog=$(HOST_DIR)/usr else -HOST_GCC_COMMON_CONF_OPT += --without-isl --without-cloog +HOST_GCC_COMMON_CONF_OPTS += --without-isl --without-cloog endif ifneq ($(BR2_arc)$(BR2_GCC_VERSION_SNAP),) @@ -168,60 +168,60 @@ 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_OPT += --with-float=soft +HOST_GCC_COMMON_CONF_OPTS += --with-float=soft endif endif ifeq ($(BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE),y) -HOST_GCC_COMMON_CONF_OPT += --disable-decimal-float +HOST_GCC_COMMON_CONF_OPTS += --disable-decimal-float endif # Determine arch/tune/abi/cpu options ifneq ($(call qstrip,$(BR2_GCC_TARGET_ARCH)),) -HOST_GCC_COMMON_CONF_OPT += --with-arch=$(BR2_GCC_TARGET_ARCH) +HOST_GCC_COMMON_CONF_OPTS += --with-arch=$(BR2_GCC_TARGET_ARCH) endif ifneq ($(call qstrip,$(BR2_GCC_TARGET_TUNE)),) -HOST_GCC_COMMON_CONF_OPT += --with-tune=$(BR2_GCC_TARGET_TUNE) +HOST_GCC_COMMON_CONF_OPTS += --with-tune=$(BR2_GCC_TARGET_TUNE) endif ifneq ($(call qstrip,$(BR2_GCC_TARGET_ABI)),) -HOST_GCC_COMMON_CONF_OPT += --with-abi=$(BR2_GCC_TARGET_ABI) +HOST_GCC_COMMON_CONF_OPTS += --with-abi=$(BR2_GCC_TARGET_ABI) endif # GCC doesn't support --with-cpu for bfin ifeq ($(BR2_bfin),) ifneq ($(call qstrip,$(BR2_GCC_TARGET_CPU)),) ifneq ($(call qstrip,$(BR2_GCC_TARGET_CPU_REVISION)),) -HOST_GCC_COMMON_CONF_OPT += --with-cpu=$(call qstrip,$(BR2_GCC_TARGET_CPU)-$(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_OPT += --with-cpu=$(call qstrip,$(BR2_GCC_TARGET_CPU)) +HOST_GCC_COMMON_CONF_OPTS += --with-cpu=$(call qstrip,$(BR2_GCC_TARGET_CPU)) endif endif endif GCC_TARGET_FPU = $(call qstrip,$(BR2_GCC_TARGET_FPU)) ifneq ($(GCC_TARGET_FPU),) -HOST_GCC_COMMON_CONF_OPT += --with-fpu=$(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_OPT += --with-float=$(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_OPT += --with-mode=$(GCC_TARGET_MODE) +HOST_GCC_COMMON_CONF_OPTS += --with-mode=$(GCC_TARGET_MODE) endif # Branding works on >= 4.3 ifneq ($(findstring x4.2.,x$(GCC_VERSION)),x4.2.) -HOST_GCC_COMMON_CONF_OPT += \ +HOST_GCC_COMMON_CONF_OPTS += \ --with-pkgversion="Buildroot $(BR2_VERSION_FULL)" \ --with-bugurl="http://bugs.buildroot.net/" endif # Enable proper double/long double for SPE ABI ifeq ($(BR2_powerpc_SPE),y) -HOST_GCC_COMMON_CONF_OPT += \ +HOST_GCC_COMMON_CONF_OPTS += \ --enable-e500_double \ --with-long-double-128 endif |