toolchain/gdb: fix compilation with ccache
[openwrt/staging/noltari.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 acx_cv_cc_gcc_supports_ada=false \
26 gdb_cv_func_sigsetjmp=yes
27
28 HOST_CONFIGURE_ARGS = \
29 --prefix=$(TOOLCHAIN_DIR) \
30 --build=$(GNU_HOST_NAME) \
31 --host=$(GNU_HOST_NAME) \
32 --target=$(REAL_GNU_TARGET_NAME) \
33 --disable-werror \
34 --without-uiout \
35 --enable-tui --disable-gdbtk --without-x \
36 --without-included-gettext \
37 --enable-threads \
38 --with-expat \
39 --without-python \
40 --disable-unit-tests \
41 --disable-ubsan \
42 --disable-binutils \
43 --disable-ld \
44 --disable-gas \
45 --disable-sim
46
47 define Host/Install
48 mkdir -p $(TOOLCHAIN_DIR)/bin
49 $(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
50 ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
51 strip $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
52 endef
53
54 define Host/Clean
55 rm -rf \
56 $(HOST_BUILD_DIR) \
57 $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb \
58 $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
59 endef
60
61 $(eval $(call HostBuild))