From: aldot at uclibc.org <aldot@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package: gmp mpfr
Date: Wed, 13 Dec 2006 11:57:05 -0800 (PST) [thread overview]
Message-ID: <20061213195705.970F148587@busybox.net> (raw)
Author: aldot
Date: 2006-12-13 11:57:05 -0800 (Wed, 13 Dec 2006)
New Revision: 16903
Log:
- Add libgmp-host and libmpfr-host support. I'll need this for fortran support.
Modified:
trunk/buildroot/package/gmp/gmp.mk
trunk/buildroot/package/mpfr/mpfr.mk
Changeset:
Modified: trunk/buildroot/package/gmp/gmp.mk
===================================================================
--- trunk/buildroot/package/gmp/gmp.mk 2006-12-13 19:55:27 UTC (rev 16902)
+++ trunk/buildroot/package/gmp/gmp.mk 2006-12-13 19:57:05 UTC (rev 16903)
@@ -85,6 +85,7 @@
$(TARGET_DIR)/lib/libgmp.a
libgmp: uclibc $(TARGET_DIR)/lib/libgmp.so.$(GMP_LIBVERSION)
+libgmp-stage: uclibc $(STAGING_DIR)/lib/$(GMP_BINARY)
libgmp-clean:
rm -f $(TARGET_DIR)/lib/$(GMP_BINARY)
@@ -93,6 +94,37 @@
libgmp-dirclean:
rm -rf $(GMP_DIR)
+GMP_HOST_DIR:=$(TOOL_BUILD_DIR)/gmp-$(GMP_VERSION)
+$(GMP_HOST_DIR)/.configured: $(GMP_DIR)/.unpacked
+ [ -d $(GMP_HOST_DIR) ] || mkdir $(GMP_HOST_DIR)
+ (cd $(GMP_HOST_DIR); \
+ CC_FOR_BUILD="$(HOSTCC)" \
+ CC="$(HOSTCC)" \
+ CFLAGS="$(HOST_CFLAGS)" \
+ $(GMP_DIR)/configure \
+ --prefix=$(STAGING_DIR) \
+ --exec_prefix=$(STAGING_DIR) \
+ --libdir=$(STAGING_DIR)/lib \
+ --includedir=$(STAGING_DIR)/include \
+ --bindir=/usr/bin \
+ --sbindir=/usr/sbin \
+ --libexecdir=/usr/lib \
+ --sysconfdir=/etc \
+ --datadir=/usr/share \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --infodir=/usr/info \
+ --enable-shared \
+ --enable-static \
+ $(DISABLE_NLS) \
+ ) && \
+ touch $(GMP_HOST_DIR)/.configured
+
+$(GMP_HOST_DIR)/.libs/$(GMP_BINARY): $(GMP_HOST_DIR)/.configured
+ $(MAKE) -C $(GMP_HOST_DIR)
+
+libgmp-host: $(GMP_HOST_DIR)/.libs/$(GMP_BINARY)
+
#############################################################
#
# Toplevel Makefile options
Modified: trunk/buildroot/package/mpfr/mpfr.mk
===================================================================
--- trunk/buildroot/package/mpfr/mpfr.mk 2006-12-13 19:55:27 UTC (rev 16902)
+++ trunk/buildroot/package/mpfr/mpfr.mk 2006-12-13 19:57:05 UTC (rev 16903)
@@ -34,11 +34,12 @@
endif
touch $(MPFR_DIR)/.unpacked
-$(MPFR_DIR)/.configured: $(MPFR_DIR)/.unpacked
+$(MPFR_DIR)/.configured: $(MPFR_DIR)/.unpacked $(STAGING_DIR)/lib/$(GMP_BINARY)
(cd $(MPFR_DIR); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
ac_cv_c_bigendian=$(MPFR_BE) \
+ CXX="" \
./configure \
--host=$(REAL_GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
@@ -55,6 +56,7 @@
--mandir=/usr/man \
--infodir=/usr/info \
--enable-shared \
+ --with-gmp=$(STAGING_DIR) \
$(DISABLE_NLS) \
);
touch $(MPFR_DIR)/.configured
@@ -90,6 +92,7 @@
$(TARGET_DIR)/lib/libmpfr.a
libmpfr: uclibc libgmp $(TARGET_DIR)/lib/libmpfr.so.$(MPFR_LIBVERSION)
+libmpfr-stage: uclibc $(STAGING_DIR)/lib/$(MPFR_BINARY)
libmpfr-clean:
rm -f $(TARGET_DIR)/lib/$(MPFR_BINARY)
@@ -98,6 +101,37 @@
libmpfr-dirclean:
rm -rf $(MPFR_DIR)
+MPFR_HOST_DIR:=$(TOOL_BUILD_DIR)/mpfr-$(MPFR_VERSION)
+$(MPFR_HOST_DIR)/.configured: $(MPFR_DIR)/.unpacked libgmp-host
+ [ -d $(MPFR_HOST_DIR) ] || mkdir $(MPFR_HOST_DIR)
+ (cd $(MPFR_HOST_DIR); \
+ CC="$(HOSTCC)" \
+ CXX="$(HOSTCXX)" \
+ $(MPFR_DIR)/configure \
+ --prefix=$(STAGING_DIR) \
+ --exec_prefix=$(STAGING_DIR) \
+ --libdir=$(STAGING_DIR)/lib \
+ --includedir=$(STAGING_DIR)/include \
+ --bindir=/usr/bin \
+ --sbindir=/usr/sbin \
+ --libexecdir=/usr/lib \
+ --sysconfdir=/etc \
+ --datadir=/usr/share \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --infodir=/usr/info \
+ --enable-shared \
+ --enable-static \
+ --with-gmp-build=$(GMP_HOST_DIR) \
+ $(DISABLE_NLS) \
+ ) && \
+ touch $(MPFR_DIR)/.configured
+
+$(MPFR_HOST_DIR)/.libs/$(MPFR_BINARY): $(MPFR_HOST_DIR)/.configured
+ $(MAKE) -C $(MPFR_HOST_DIR)
+
+libmpfr-host: $(MPFR_HOST_DIR)/.libs/$(MPFR_BINARY)
+
#############################################################
#
# Toplevel Makefile options
next reply other threads:[~2006-12-13 19:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-13 19:57 aldot at uclibc.org [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-02-10 16:38 [Buildroot] svn commit: trunk/buildroot/package: gmp mpfr jacmet at uclibc.org
2009-02-10 15:19 jacmet at uclibc.org
2009-02-09 13:01 jacmet at uclibc.org
2007-06-06 20:25 aldot at uclibc.org
2007-06-06 19:50 aldot at uclibc.org
2007-01-16 19:48 aldot at uclibc.org
2007-01-16 13:26 aldot at uclibc.org
2006-12-14 8:12 aldot at uclibc.org
2006-11-28 16:54 aldot at uclibc.org
2006-11-17 11:51 aldot at uclibc.org
2006-09-28 17:38 aldot at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061213195705.970F148587@busybox.net \
--to=aldot@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox