common.mk 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. #
  2. # Copyright (C) 2002-2003 Erik Andersen <andersen@uclibc.org>
  3. # Copyright (C) 2004 Manuel Novoa III <mjn3@uclibc.org>
  4. # Copyright (C) 2005-2006 Felix Fietkau <nbd@nbd.name>
  5. # Copyright (C) 2006-2014 OpenWrt.org
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. # General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. include $(TOPDIR)/rules.mk
  21. PKG_NAME:=gcc
  22. GCC_VERSION:=$(call qstrip,$(CONFIG_GCC_VERSION))
  23. PKG_VERSION:=$(firstword $(subst +, ,$(GCC_VERSION)))
  24. GCC_DIR:=$(PKG_NAME)-$(PKG_VERSION)
  25. PKG_SOURCE_URL:=@GNU/gcc/gcc-$(PKG_VERSION)
  26. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  27. ifeq ($(PKG_VERSION),5.4.0)
  28. PKG_HASH:=608df76dec2d34de6558249d8af4cbee21eceddbcb580d666f7a5a583ca3303a
  29. endif
  30. ifeq ($(PKG_VERSION),6.3.0)
  31. PKG_HASH:=f06ae7f3f790fbf0f018f6d40e844451e6bc3b7bc96e128e63b09825c1f8b29f
  32. endif
  33. ifneq ($(CONFIG_GCC_VERSION_4_8_ARC),)
  34. PKG_VERSION:=4.8.5
  35. PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/gcc/archive/arc-2016.03
  36. PKG_SOURCE:=$(PKG_NAME)-$(GCC_VERSION).tar.gz
  37. PKG_HASH:=6a5eb0c83dca16f228ac836677a1fbb42a53c30334487ac37c2c18db80a38f35
  38. PKG_REV:=2016.03
  39. GCC_DIR:=gcc-arc-$(PKG_REV)
  40. HOST_BUILD_DIR = $(BUILD_DIR_HOST)/$(PKG_NAME)-$(GCC_VERSION)
  41. endif
  42. PATCH_DIR=../patches/$(GCC_VERSION)
  43. BUGURL=http://www.lede-project.org/bugs/
  44. PKGVERSION=LEDE GCC $(PKG_VERSION) $(REVISION)
  45. HOST_BUILD_PARALLEL:=1
  46. include $(INCLUDE_DIR)/toolchain-build.mk
  47. HOST_SOURCE_DIR:=$(HOST_BUILD_DIR)
  48. ifeq ($(GCC_VARIANT),minimal)
  49. GCC_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
  50. else
  51. HOST_BUILD_DIR:=$(HOST_BUILD_DIR)-$(GCC_VARIANT)
  52. GCC_BUILD_DIR:=$(HOST_BUILD_DIR)
  53. endif
  54. HOST_STAMP_PREPARED:=$(HOST_BUILD_DIR)/.prepared
  55. HOST_STAMP_BUILT:=$(GCC_BUILD_DIR)/.built
  56. HOST_STAMP_CONFIGURED:=$(GCC_BUILD_DIR)/.configured
  57. HOST_STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.gcc_$(GCC_VARIANT)_installed
  58. SEP:=,
  59. TARGET_LANGUAGES:="c,c++$(if $(CONFIG_INSTALL_LIBGCJ),$(SEP)java)$(if $(CONFIG_INSTALL_GFORTRAN),$(SEP)fortran)$(if $(CONFIG_INSTALL_GCCGO),$(SEP)go)"
  60. export libgcc_cv_fixed_point=no
  61. ifdef CONFIG_USE_UCLIBC
  62. export glibcxx_cv_c99_math_tr1=no
  63. endif
  64. ifdef CONFIG_INSTALL_GCCGO
  65. export libgo_cv_c_split_stack_supported=no
  66. endif
  67. ifdef CONFIG_GCC_USE_GRAPHITE
  68. GRAPHITE_CONFIGURE=--with-isl=$(REAL_STAGING_DIR_HOST)
  69. else
  70. GRAPHITE_CONFIGURE=--without-isl --without-cloog
  71. endif
  72. GCC_CONFIGURE:= \
  73. SHELL="$(BASH)" \
  74. $(if $(shell gcc --version 2>&1 | grep LLVM), \
  75. CFLAGS="-O2 -fbracket-depth=512 -pipe" \
  76. CXXFLAGS="-O2 -fbracket-depth=512 -pipe" \
  77. ) \
  78. $(HOST_SOURCE_DIR)/configure \
  79. --with-bugurl=$(BUGURL) \
  80. --with-pkgversion="$(PKGVERSION)" \
  81. --prefix=$(TOOLCHAIN_DIR) \
  82. --build=$(GNU_HOST_NAME) \
  83. --host=$(GNU_HOST_NAME) \
  84. --target=$(REAL_GNU_TARGET_NAME) \
  85. --with-gnu-ld \
  86. --enable-target-optspace \
  87. --disable-libgomp \
  88. --disable-libmudflap \
  89. --disable-multilib \
  90. --disable-libmpx \
  91. --disable-nls \
  92. $(GRAPHITE_CONFIGURE) \
  93. --with-host-libstdcxx=-lstdc++ \
  94. $(SOFT_FLOAT_CONFIG_OPTION) \
  95. $(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
  96. $(if $(CONFIG_mips64)$(CONFIG_mips64el),--with-arch=mips64 \
  97. --with-abi=$(call qstrip,$(CONFIG_MIPS64_ABI))) \
  98. $(if $(CONFIG_arc),--with-cpu=$(CONFIG_CPU_TYPE)) \
  99. --with-gmp=$(TOPDIR)/staging_dir/host \
  100. --with-mpfr=$(TOPDIR)/staging_dir/host \
  101. --with-mpc=$(TOPDIR)/staging_dir/host \
  102. --disable-decimal-float
  103. ifneq ($(CONFIG_mips)$(CONFIG_mipsel),)
  104. GCC_CONFIGURE += --with-mips-plt
  105. endif
  106. ifndef GCC_VERSION_4_8
  107. GCC_CONFIGURE += --with-diagnostics-color=auto-if-env
  108. endif
  109. ifneq ($(CONFIG_SSP_SUPPORT),)
  110. GCC_CONFIGURE+= \
  111. --enable-libssp
  112. else
  113. GCC_CONFIGURE+= \
  114. --disable-libssp
  115. endif
  116. ifneq ($(CONFIG_EXTRA_TARGET_ARCH),)
  117. GCC_CONFIGURE+= \
  118. --enable-biarch \
  119. --enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-$(TARGET_SUFFIX)
  120. endif
  121. ifdef CONFIG_sparc
  122. GCC_CONFIGURE+= \
  123. --enable-targets=all \
  124. --with-long-double-128
  125. endif
  126. ifeq ($(LIBC),uClibc)
  127. GCC_CONFIGURE+= \
  128. --disable-__cxa_atexit
  129. else
  130. GCC_CONFIGURE+= \
  131. --enable-__cxa_atexit
  132. endif
  133. ifneq ($(GCC_ARCH),)
  134. GCC_CONFIGURE+= --with-arch=$(GCC_ARCH)
  135. endif
  136. ifneq ($(CONFIG_SOFT_FLOAT),y)
  137. ifeq ($(CONFIG_arm),y)
  138. GCC_CONFIGURE+= \
  139. --with-float=hard
  140. endif
  141. endif
  142. ifeq ($(CONFIG_TARGET_x86)$(CONFIG_USE_GLIBC)$(CONFIG_INSTALL_GCCGO),yyy)
  143. TARGET_CFLAGS+=-fno-split-stack
  144. endif
  145. GCC_MAKE:= \
  146. export SHELL="$(BASH)"; \
  147. $(MAKE) \
  148. CFLAGS="$(HOST_CFLAGS)" \
  149. CFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
  150. CXXFLAGS_FOR_TARGET="$(TARGET_CFLAGS)" \
  151. GOCFLAGS_FOR_TARGET="$(TARGET_CFLAGS)"
  152. define Host/SetToolchainInfo
  153. $(SED) 's,TARGET_CROSS=.*,TARGET_CROSS=$(REAL_GNU_TARGET_NAME)-,' $(TOOLCHAIN_DIR)/info.mk
  154. $(SED) 's,GCC_VERSION=.*,GCC_VERSION=$(GCC_VERSION),' $(TOOLCHAIN_DIR)/info.mk
  155. endef
  156. ifneq ($(GCC_PREPARE),)
  157. define Host/Prepare
  158. $(call Host/SetToolchainInfo)
  159. $(call Host/Prepare/Default)
  160. ln -snf $(GCC_DIR) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
  161. $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_SOURCE_DIR)/
  162. $(SED) 's,^MULTILIB_OSDIRNAMES,# MULTILIB_OSDIRNAMES,' $(HOST_SOURCE_DIR)/gcc/config/*/t-*
  163. $(SED) 'd' $(HOST_SOURCE_DIR)/gcc/DEV-PHASE
  164. $(SED) 's, DATESTAMP,,' $(HOST_SOURCE_DIR)/gcc/version.c
  165. #(cd $(HOST_SOURCE_DIR)/libstdc++-v3; autoconf;);
  166. $(SED) 's,gcc_no_link=yes,gcc_no_link=no,' $(HOST_SOURCE_DIR)/libstdc++-v3/configure
  167. mkdir -p $(GCC_BUILD_DIR)
  168. endef
  169. else
  170. define Host/Prepare
  171. mkdir -p $(GCC_BUILD_DIR)
  172. endef
  173. endif
  174. define Host/Configure
  175. (cd $(GCC_BUILD_DIR) && rm -f config.cache; \
  176. $(GCC_CONFIGURE) \
  177. );
  178. endef
  179. define Host/Clean
  180. rm -rf $(if $(GCC_PREPARE),$(HOST_SOURCE_DIR)) \
  181. $(STAGING_DIR_HOST)/stamp/.gcc_* \
  182. $(STAGING_DIR_HOST)/stamp/.binutils_* \
  183. $(GCC_BUILD_DIR) \
  184. $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME) \
  185. $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME) \
  186. $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-gc* \
  187. $(TOOLCHAIN_DIR)/bin/$(REAL_GNU_TARGET_NAME)-c*
  188. endef