summaryrefslogtreecommitdiff
path: root/toolchain/gcc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-09 11:52:08 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-09 11:52:08 +0100
commit4e93572589af66eee723efafa3939f6c5e0dd7cc (patch)
tree6abbfe4af4c87f861c7d4126514279c079bb8928 /toolchain/gcc
parent8abe85c5a6920e3cea42c75193d22669285b84c7 (diff)
fix openjdk7 toolchain workaround, add symlinks to reduce size of toolchains
Diffstat (limited to 'toolchain/gcc')
-rw-r--r--toolchain/gcc/Makefile20
1 files changed, 14 insertions, 6 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile
index 6328585da..951684443 100644
--- a/toolchain/gcc/Makefile
+++ b/toolchain/gcc/Makefile
@@ -9,6 +9,7 @@ TARGET_CFLAGS:= $(filter-out -fstack-protector,$(TARGET_CFLAGS))
include Makefile.inc
GCC_CONFOPTS= --prefix=$(STAGING_HOST_DIR) \
+ --with-bugurl="http://www.openadk.org/" \
--build=$(GNU_HOST_NAME) \
--host=$(GNU_HOST_NAME) \
--target=$(REAL_GNU_TARGET_NAME) \
@@ -118,7 +119,6 @@ endif
${GCC_CONFOPTS} \
--enable-languages=c \
--disable-shared \
- --with-newlib \
--without-headers
touch $@
@@ -166,9 +166,7 @@ $(WRKBUILD)/.compiled: $(GCC_BUILD_DIR_FINAL)/.configured
$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
PATH='$(TARGET_PATH)' $(MAKE) -C $(GCC_BUILD_DIR_FINAL) install
- # workaround if you cross-compile binutils
- @-rm $(STAGING_TARGET_DIR)/lib/libiberty.a $(STAGING_TARGET_DIR)/usr/lib/libiberty.a
- # Set up the symlinks to enable lying about target name.
+ # Set up the symlinks to enable lying about target name
set -e; \
cd $(STAGING_HOST_DIR); \
ln -sf $(REAL_GNU_TARGET_NAME) $(GNU_TARGET_NAME); \
@@ -177,8 +175,18 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
ln -sf $${app} \
$(GNU_TARGET_NAME)$${app##$(REAL_GNU_TARGET_NAME)}; \
done;
- # workaround for openjdk
- cd $(STAGING_HOST_DIR)/$(REAL_GNU_TARGET_NAME)/bin ; cp * ..
+ # remove duplicate tools
+ set -e; \
+ cd $(STAGING_HOST_DIR)/bin; \
+ for app in $(REAL_GNU_TARGET_NAME)-* ; do \
+ ln -sf ../$(REAL_GNU_TARGET_NAME)/bin/$${app##$(REAL_GNU_TARGET_NAME)-} $${app}; \
+ done;
+ # setup symlink, so that gcc/g++ find cc1plus
+ (cd $(STAGING_HOST_DIR)/$(REAL_GNU_TARGET_NAME)/ && \
+ ln -sf ../libexec .)
+ # setup symlink, so that gcc/g++ find stddef.h
+ (cd $(STAGING_HOST_DIR)/$(REAL_GNU_TARGET_NAME)/lib/ && \
+ ln -sf ../../host_${CPU_ARCH}_${ADK_TARGET_SUFFIX}_${ADK_TARGET_LIBC}/lib/gcc .)
# fix linking g++ apps with libtool
@-test -d $(STAGING_TARGET_DIR)/lib32 && \
cd $(STAGING_TARGET_DIR)/lib32 && \