Makefile.inc 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. PKG_VERSION:= 2.12.1
  5. PKG_RELEASE:= 1
  6. PKG_MD5SUM:= a8e77cd873125d9b46ca2e46ee1a13d0
  7. PKG_SITES:= ${MASTER_SITE_GNU:=glibc/}
  8. GLIBC_PORTS_VERSION:= 2.12
  9. GLIBC_CONFOPTS:= --build=$(GNU_HOST_NAME) \
  10. --host=$(REAL_GNU_TARGET_NAME) \
  11. --with-headers=$(TOOLCHAIN_SYSROOT)/usr/include \
  12. --disable-nls \
  13. --disable-sanity-checks \
  14. --disable-nls \
  15. --without-cvs \
  16. --disable-profile \
  17. --disable-debug \
  18. --without-gd \
  19. --with-__thread \
  20. --with-tls \
  21. --enable-kernel="2.6.0" \
  22. --enable-add-ons
  23. GLIBC_ENV:= PATH='${TARGET_PATH}' \
  24. BUILD_CC=${HOSTCC} \
  25. CFLAGS="$(TARGET_CFLAGS)" \
  26. CC=${REAL_GNU_TARGET_NAME}-gcc \
  27. CXX=${REAL_GNU_TARGET_NAME}-g++ \
  28. AR=${REAL_GNU_TARGET_NAME}-ar \
  29. RANLIB=${REAL_GNU_TARGET_NAME}-ranlib \
  30. libc_cv_forced_unwind=yes \
  31. libc_cv_c_cleanup=yes \
  32. libc_cv_gnu99_inline=yes \
  33. libc_cv_sparc64_tls=yes \