Browse Source

Update crosstool-ng to updated version with fix for hanging build.

arch-based-toolchain
Christoph Scholtes 1 year ago
parent
commit
75f19e1c78
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      Makefile

+ 2
- 3
Makefile View File

@@ -26,9 +26,8 @@ all: toolchain-all

crosstool-ng := $(LOCAL_DIR)/bin/ct-ng
$(crosstool-ng):
# FIXME Use development version until fix for hanging build is merged to crosstool-ng repository.
git clone https://github.com/cpackham/crosstool-ng.git
cd crosstool-ng && git checkout a7835a0251e5acdb38d7cbf301457058266bcbca
git clone https://github.com/crosstool-ng/crosstool-ng.git
cd crosstool-ng && git checkout e63c40854c977f488bee159a8f8ebf5fc06c8666
cd crosstool-ng && ./bootstrap
cd crosstool-ng && ./configure --prefix="$(LOCAL_DIR)"
cd crosstool-ng && make -j $(JOBS)


Loading…
Cancel
Save