tool_chain: enable x86_64 target support in GDB

Fixes #1521
This commit is contained in:
Christian Prochaska
2015-05-12 13:14:57 +02:00
committed by Christian Helmuth
parent 72e31090ee
commit e0dbf67e1d
4 changed files with 91 additions and 2 deletions

View File

@@ -156,8 +156,16 @@ AUTOGEN_OK = $(call check_nonempty_f,$(shell which autogen),\
GPG_OK = $(call check_nonempty_f,$(shell which gpg),\
Need to have 'gpg' installed.)
#
# Check if 'libexpat' is installed
#
EXPAT_OK = $(call check_equal_f,\
$(shell $(LD) -lexpat -e0 -o /tmp/a.out && echo ok),ok,\
Need to have 'libexpat' installed.)
TOOLS_OK = $(AUTOCONF_OK) $(AUTOCONFINST_OK) $(CURSES_OK) \
$(TEXINFO_OK) $(WGET_OK) $(AUTOGEN_OK) $(GPG_OK)
$(TEXINFO_OK) $(WGET_OK) $(AUTOGEN_OK) $(GPG_OK) $(EXPAT_OK)
ifneq ($(strip $(TOOLS_OK)),)
$(error Please install missing tools.)