toolchain: gdb: Disable tests
[openwrt/staging/chunkeey.git] / toolchain / gdb / Makefile
1 #
2 # Copyright (C) 2006-2020 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:=gdb
10 PKG_VERSION:=10.1
11 PKG_RELEASE:=1
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
14 PKG_SOURCE_URL:=@GNU/gdb
15 PKG_HASH:=f82f1eceeec14a3afa2de8d9b0d3c91d5a3820e23e0a01bbb70ef9f0276b62c0
16 GDB_DIR:=$(PKG_NAME)-$(PKG_VERSION)
17
18 HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GDB_DIR)
19
20 HOST_BUILD_PARALLEL:=1
21
22 include $(INCLUDE_DIR)/toolchain-build.mk
23
24 HOST_CONFIGURE_VARS += \
25 gdb_cv_func_sigsetjmp=yes
26
27 HOST_CONFIGURE_ARGS = \
28 --prefix=$(TOOLCHAIN_DIR) \
29 --build=$(GNU_HOST_NAME) \
30 --host=$(GNU_HOST_NAME) \
31 --target=$(REAL_GNU_TARGET_NAME) \
32 --disable-werror \
33 --without-uiout \
34 --enable-tui --disable-gdbtk --without-x \
35 --without-included-gettext \
36 --enable-threads \
37 --with-expat \
38 --without-python \
39 --disable-unit-tests \
40 --disable-ubsan \
41 --disable-binutils \
42 --disable-ld \
43 --disable-gas \
44 --disable-sim
45
46 define Host/Install
47 mkdir -p $(TOOLCHAIN_DIR)/bin
48 $(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
49 ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
50 strip $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
51 endef
52
53 define Host/Clean
54 rm -rf \
55 $(HOST_BUILD_DIR) \
56 $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb \
57 $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
58 endef
59
60 $(eval $(call HostBuild))