diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-01 05:34:41 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-11-01 05:34:41 +0000 |
commit | d632d42b34888f169a9394f2c5ce64ccca75a5cb (patch) | |
tree | 34a6836f3c2c2623dbee1731f96498d17476f5dd /make/m4.mk | |
parent | b5f7712c837fd770bed24b1a904715b5fd057b78 (diff) | |
download | buildroot-novena-d632d42b34888f169a9394f2c5ce64ccca75a5cb.tar.gz buildroot-novena-d632d42b34888f169a9394f2c5ce64ccca75a5cb.zip |
Enable building soft float buildroot for gcc 3.3. Currently works for
i386 (limited to 64 bit long double... same as double), arm (libfloat),
mips, and mipsel.
Enable cross compiling a native gcc 3.3 toolchain to run on the target.
Misc rootfs cleanups... strip some things that weren't, eliminate duplicate
libs, move openssl shared libs out of /lib, reduce size of libssl.so
by dynamicly linking with libcrypto.so, fix dropbear compile on mips.
Diffstat (limited to 'make/m4.mk')
-rw-r--r-- | make/m4.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/make/m4.mk b/make/m4.mk index 1ee543024..5a0988972 100644 --- a/make/m4.mk +++ b/make/m4.mk @@ -22,6 +22,7 @@ $(M4_DIR)/.unpacked: $(DL_DIR)/$(M4_SOURCE) $(M4_DIR)/.configured: $(M4_DIR)/.unpacked (cd $(M4_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ @@ -49,6 +50,7 @@ $(TARGET_DIR)/$(M4_TARGET_BINARY): $(M4_DIR)/src/$(M4_BINARY) mandir=$(TARGET_DIR)/usr/man \ includedir=$(TARGET_DIR)/usr/include \ -C $(M4_DIR) install; + $(STRIP) $(TARGET_DIR)/$(M4_TARGET_BINARY) > /dev/null 2>&1 rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc |