Makefile.inc 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. PKG_NAME:= glibc
  4. ifeq ($(ADK_LIBC_VERSION),git)
  5. PKG_VERSION:= 2.21.90
  6. PKG_SITES:= git://sourceware.org/git/glibc.git
  7. endif
  8. ifeq ($(ADK_TARGET_LIB_GLIBC_2_21),y)
  9. PKG_VERSION:= 2.21
  10. PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
  11. PKG_RELEASE:= 1
  12. PKG_HASH:= aeeb362437965a5d3f40b151094ca79def04a115bd363fdd4a9a0c69482923b8
  13. endif
  14. ifeq ($(ADK_TARGET_LIB_GLIBC_2_20),y)
  15. PKG_VERSION:= 2.20
  16. PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
  17. PKG_RELEASE:= 1
  18. PKG_HASH:= f84b6d42aecc288d593c397b0a3d02260a33ee686bce0c634eb9b32798f36ba5
  19. endif
  20. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.xz
  21. GLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \
  22. --host=$(GNU_TARGET_NAME) \
  23. --with-headers=$(STAGING_TARGET_DIR)/usr/include \
  24. --disable-sanity-checks \
  25. --disable-werror \
  26. --disable-nls \
  27. --disable-werror \
  28. --without-cvs \
  29. --disable-profile \
  30. --disable-debug \
  31. --without-gd \
  32. --disable-nscd \
  33. --with-__thread \
  34. --with-tls \
  35. --enable-kernel="2.6.32" \
  36. --enable-add-ons
  37. ifeq ($(ADK_TARGET_FLOAT),soft)
  38. GLIBC_CONFOPTS+= --without-fp
  39. endif
  40. ifeq ($(ADK_TARGET_FLOAT),hard)
  41. GLIBC_CONFOPTS+= --with-fp
  42. endif
  43. TARGET_CFLAGS:= $(filter-out -fstack-protector-all,$(TARGET_CFLAGS))
  44. TARGET_LDFLAGS:= $(filter-out -fstack-protector-all,$(TARGET_LDFLAGS))
  45. GLIBC_ENV:= PATH='${TARGET_PATH}' \
  46. CONFIG_SHELL='$(strip ${SHELL})' \
  47. BUILD_CC=${CC_FOR_BUILD} \
  48. CFLAGS="$(TARGET_CFLAGS)" \
  49. CC="${TARGET_CC}" \
  50. CXX="${TARGET_CXX}" \
  51. AR="${TARGET_AR}" \
  52. RANLIB="${TARGET_RANLIB}" \
  53. libc_cv_forced_unwind=yes \
  54. libc_cv_cc_with_libunwind=yes \
  55. libc_cv_c_cleanup=yes \
  56. libc_cv_gnu99_inline=yes \
  57. libc_cv_initfini_array=yes \