summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toolchain/Makefile4
-rw-r--r--toolchain/expat/Makefile30
-rw-r--r--toolchain/expat/Makefile.inc9
-rw-r--r--toolchain/gdb/Makefile2
4 files changed, 43 insertions, 2 deletions
diff --git a/toolchain/Makefile b/toolchain/Makefile
index 55e3ccce5..c9e17c9cc 100644
--- a/toolchain/Makefile
+++ b/toolchain/Makefile
@@ -42,8 +42,8 @@ endif
ifeq ($(ADK_TOOLCHAIN_WITH_GDB),y)
# disable gdb for some architectures
ifeq ($(ADK_TARGET_ARCH_CR16)$(ADK_TARGET_ARCH_EPIPHANY)$(ADK_TARGET_ARCH_METAG)$(ADK_TARGET_ARCH_NDS32),)
-TARGETS+=gdb
-GDB:=gdb-install
+TARGETS+=expat gdb
+GDB:=expat-install gdb-install
endif
endif
diff --git a/toolchain/expat/Makefile b/toolchain/expat/Makefile
new file mode 100644
index 000000000..4c9982cf9
--- /dev/null
+++ b/toolchain/expat/Makefile
@@ -0,0 +1,30 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+include Makefile.inc
+include ../rules.mk
+include ${ADK_TOPDIR}/mk/buildhlp.mk
+
+ifeq (${ADK_MAKE_PARALLEL},y)
+MPC_MAKEOPTS+= -j${ADK_MAKE_JOBS}
+endif
+
+$(WRKBUILD)/.configured:
+ (cd $(WRKBUILD); \
+ $(WRKBUILD)/configure \
+ --prefix=$(STAGING_HOST_DIR)/usr \
+ --enable-static \
+ --disable-shared \
+ );
+ touch $@
+
+$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
+ $(MAKE) ${MPC_MAKEOPTS} -C $(WRKBUILD) all
+ touch $@
+
+$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
+ $(MAKE) -C $(WRKBUILD) install
+ touch $@
+
+include ${ADK_TOPDIR}/mk/toolchain.mk
diff --git a/toolchain/expat/Makefile.inc b/toolchain/expat/Makefile.inc
new file mode 100644
index 000000000..7baf7f48d
--- /dev/null
+++ b/toolchain/expat/Makefile.inc
@@ -0,0 +1,9 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+PKG_NAME:= expat
+PKG_VERSION:= 2.7.0
+PKG_RELEASE:= 1
+PKG_HASH:= 362e89ca6b8a0d46fc5740a917eb2a8b4d6356edbe016eee09f49c0781215844
+PKG_SITES:= https://github.com/libexpat/libexpat/releases/download/R_2_7_0/
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile
index f3f8bf8da..9d98e87bc 100644
--- a/toolchain/gdb/Makefile
+++ b/toolchain/gdb/Makefile
@@ -31,6 +31,8 @@ $(WRKBUILD)/.configured:
--target=$(GNU_TARGET_NAME) \
--with-gmp='${STAGING_HOST_DIR}/usr' \
--with-mpfr='${STAGING_HOST_DIR}/usr' \
+ --with-expat \
+ --with-libexpat-prefix='${STAGING_HOST_DIR}/usr' \
--disable-dependency-tracking \
--without-uiout \
--enable-gdbmi \