Makefile.inc 1.3 KB

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