From 3f487ef72845965b578002b2f9c0a37eff47e97a Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 23 Jun 2012 21:26:16 +0200 Subject: toolchain: reinstate host/usr/bin/$arch-linux-* symlinks for gcc/gdb binaries As people might be using them. Signed-off-by: Peter Korsgaard --- toolchain/gcc/gcc-uclibc-4.x.mk | 4 ++++ toolchain/gdb/gdb.mk | 1 + 2 files changed, 5 insertions(+) (limited to 'toolchain') diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index 57f4f8a35..e29d797cc 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -482,6 +482,10 @@ endif if [ ! -e $(HOST_DIR)/usr/$(GNU_TARGET_NAME)/bin/cc ]; then \ ln -snf gcc $(HOST_DIR)/usr/$(GNU_TARGET_NAME)/bin/cc; \ fi + # arch-linux-* symlinks + cd $(HOST_DIR)/usr/bin; for i in $(GNU_TARGET_NAME)-*; do \ + ln -snf $$i $(ARCH)-linux$${i##$(GNU_TARGET_NAME)}; \ + done mkdir -p $(TARGET_DIR)/usr/lib $(TARGET_DIR)/usr/sbin touch $@ diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index 5673cf1e9..f5af4541a 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -203,6 +203,7 @@ $(GDB_HOST_DIR)/gdb/gdb: $(GDB_HOST_DIR)/.configured $(TARGET_CROSS)gdb: $(GDB_HOST_DIR)/gdb/gdb install -c $(GDB_HOST_DIR)/gdb/gdb $(TARGET_CROSS)gdb + ln -snf $(@F) $(HOST_DIR)/usr/bin/$(ARCH)-linux-gdb gdbhost: host-expat $(TARGET_CROSS)gdb -- cgit v1.2.3