diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-02 12:42:08 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-02 12:42:08 +0100 |
commit | d88086dcd2cb3c1a742b87a9aaa58ec3ec39f30d (patch) | |
tree | 589fbfc28ee48f8d4d26df1300ee2d5518013c44 /toolchain | |
parent | d61ad5d807e86890594f7c060853f014ac27562f (diff) |
fix symlink workaround for libtool after gcc 4.8.2 update
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 4b0212f77..4eba65b87 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -208,12 +208,16 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled # fix linking g++ apps with libtool @-test -d $(STAGING_TARGET_DIR)/lib32 && \ cd $(STAGING_TARGET_DIR)/lib32 && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so.6 + ln -sf libstdc++.so.6.0.18 libstdc++.so && \ + ln -sf libstdc++.so.6.0.18 libstdc++.so.6 + @-test -d $(STAGING_TARGET_DIR)/libx32 && \ + cd $(STAGING_TARGET_DIR)/libx32 && \ + ln -sf libstdc++.so.6.0.18 libstdc++.so && \ + ln -sf libstdc++.so.6.0.18 libstdc++.so.6 @-test -d $(STAGING_TARGET_DIR)/lib64 && \ cd $(STAGING_TARGET_DIR)/lib64 && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so.6 + ln -sf libstdc++.so.6.0.18 libstdc++.so && \ + ln -sf libstdc++.so.6.0.18 libstdc++.so.6 # cleanup unneeded docs rm -rf $(STAGING_HOST_DIR)/share touch $@ |