musl: fix GDB debugging on mips (local, remote)
[openwrt/openwrt.git] / toolchain / insight / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=insight
10 PKG_VERSION:=6.8-1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)a.tar.bz2
13 PKG_MD5SUM:=f7dd764a102beb75c2bb6b8d83455f8e
14 PKG_SOURCE_URL:=ftp://sourceware.org/pub/insight/releases
15 PKG_CAT:=bzcat
16
17 STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
18 BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
19
20 include $(INCLUDE_DIR)/host-build.mk
21
22 define Host/Configure
23 (cd $(HOST_BUILD_DIR); \
24 gdb_cv_func_sigsetjmp=yes \
25 CFLAGS="-O2" \
26 $(HOST_BUILD_DIR)/configure \
27 --prefix=$(TOOLCHAIN_DIR) \
28 --build=$(GNU_HOST_NAME) \
29 --host=$(GNU_HOST_NAME) \
30 --target=$(REAL_GNU_TARGET_NAME) \
31 --enable-threads \
32 --enable-werror=no \
33 );
34 endef
35
36 define Host/Compile
37 $(MAKE) -C $(HOST_BUILD_DIR)
38 endef
39
40 define Host/Install
41 mkdir -p $(TOOLCHAIN_DIR)/bin
42 $(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/insight $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)insight
43 ln -fs $(TARGET_CROSS)insight $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-insight
44 strip $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)insight
45 endef
46
47 define Host/Clean
48 rm -rf \
49 $(HOST_BUILD_DIR) \
50 $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)insight \
51 $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-insight
52 endef
53
54 $(eval $(call HostBuild))