123456789101112131415161718192021222324 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- PKG_NAME:= newlib
- ifeq ($(ADK_LIBC_VERSION),git)
- PKG_VERSION:= git
- PKG_RELEASE:= 1
- PKG_SITES:= git://sourceware.org/git/newlib-cygwin.git
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
- endif
- ifeq ($(ADK_TARGET_LIB_NEWLIB_4_1_0),y)
- PKG_VERSION:= 4.1.0
- PKG_RELEASE:= 1
- PKG_HASH:= f296e372f51324224d387cc116dc37a6bd397198756746f93a2b02e9a5d40154
- PKG_SITES:= ftp://sourceware.org/pub/newlib/
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
- endif
- ifeq ($(ADK_TARGET_LIB_NEWLIB_XTENSA),y)
- PKG_VERSION:= xtensa
- PKG_GIT:= branch
- PKG_RELEASE:= 1
- PKG_SITES:= https://github.com/jcmvbkbc/newlib-xtensa.git
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
- endif
|