diff options
-rw-r--r-- | package/libgfortran/Makefile | 32 | ||||
-rw-r--r-- | package/libstdcxx/Makefile | 2 | ||||
-rw-r--r-- | target/config/Config.in.toolchain | 2 |
3 files changed, 35 insertions, 1 deletions
diff --git a/package/libgfortran/Makefile b/package/libgfortran/Makefile new file mode 100644 index 000000000..596a4887c --- /dev/null +++ b/package/libgfortran/Makefile @@ -0,0 +1,32 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${ADK_TOPDIR}/rules.mk +include ${ADK_TOPDIR}/toolchain/gcc/Makefile.inc + +PKG_NAME:= libgfortran +PKG_DESCR:= gcc fortran library +PKG_SECTION:= base/libs +PKG_OPTS:= noremove + +PKG_DFLT_LIBGCC:= y if !ADK_APPLIANCE_TOOLCHAIN + +NO_DISTFILES:= 1 + +include ${ADK_TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,LIBGFORTRAN,libgfortran,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +CONFIG_STYLE:= manual +BUILD_STYLE:= manual +INSTALL_STYLE:= manual + +libgfortran-install: + $(INSTALL_DIR) ${IDIR_LIBGFORTRAN}/$(ADK_TARGET_LIBC_PATH) +ifeq ($(ADK_TARGET_USE_STATIC_LIBS),) +ifeq ($(ADK_TARGET_BINFMT_FLAT),) + ${CP} ${STAGING_TARGET_DIR}/usr/lib/libgfortran.so* ${IDIR_LIBGFORTRAN}/$(ADK_TARGET_LIBC_PATH) +endif +endif + +include ${ADK_TOPDIR}/mk/pkg-bottom.mk diff --git a/package/libstdcxx/Makefile b/package/libstdcxx/Makefile index ec4838517..7ea1cb740 100644 --- a/package/libstdcxx/Makefile +++ b/package/libstdcxx/Makefile @@ -6,7 +6,7 @@ include ${ADK_TOPDIR}/toolchain/gcc/Makefile.inc PKG_NAME:= libstdcxx PKG_DESCR:= c++ support library -PKG_SECTION:= libs/misc +PKG_SECTION:= base/libs PKG_OPTS:= noremove NO_DISTFILES:= 1 diff --git a/target/config/Config.in.toolchain b/target/config/Config.in.toolchain index 6301bfb13..206de7fe4 100644 --- a/target/config/Config.in.toolchain +++ b/target/config/Config.in.toolchain @@ -65,10 +65,12 @@ config ADK_TOOLCHAIN_WITH_OBJC config ADK_TOOLCHAIN_WITH_FORTRAN bool "enable Fortran" + select ADK_PACKAGE_LIBGFORTRAN default n config ADK_TOOLCHAIN_WITH_GO bool "enable Go" + select ADK_PACKAGE_LIBGO default n endmenu |