2010-07-28 00:45:24 +03:00
|
|
|
# Makefile for OpenWRT for cross-compiling GForth
|
|
|
|
#
|
2010-07-29 23:31:21 +03:00
|
|
|
# Copyright (C) 1995,1996,1997,1998,2000,2003,2006,2007,2008,2009 Free
|
|
|
|
# Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010 David Kühling. License: GPLv3+
|
2010-07-28 00:45:24 +03:00
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
## Note for tuning: In theory you could strip down the resulting packages size
|
|
|
|
## a lot, if you removed gforth and gforth-fast executables and only included
|
|
|
|
## the (somewhat slower) gforth-itc and/or gforth-ditc interpreter binary that
|
|
|
|
## rely on classic indirect threaded code without the (code-bloating) engine
|
|
|
|
## optimizations.
|
|
|
|
##
|
|
|
|
## Also we could create multiple packages here 'gforth-minimal' and 'gforth'?
|
|
|
|
|
2010-07-28 00:45:24 +03:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gforth
|
|
|
|
PKG_VERSION:=0.7.0-20100725
|
2010-07-29 23:31:21 +03:00
|
|
|
PKG_RELEASE:=9
|
2010-07-28 00:45:24 +03:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://mosquito.dyndns.tv/~spock/
|
|
|
|
PKG_MD5SUM:=f030bdfe42a9be32889d5b4c8cb37856
|
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
PKG_BUILD_DEPENDS:= gforth/host libltdl/host
|
2010-07-28 00:45:24 +03:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2010-07-28 03:02:56 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2010-07-28 00:45:24 +03:00
|
|
|
|
|
|
|
# for now: override download and use local gforth sources
|
|
|
|
# remove the prepare.stamp if updating tgz
|
|
|
|
# define Build/Prepare
|
|
|
|
# mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
# (cd $(PKG_BUILD_DIR)/.. && tar -xzvf -) < ~/forth/gforth/$(PKG_SOURCE)
|
|
|
|
# endef
|
|
|
|
# define Host/Prepare
|
|
|
|
# mkdir -p $(HOST_BUILD_DIR)
|
|
|
|
# (cd $(HOST_BUILD_DIR)/.. && tar -xzvf -) < ~/forth/gforth/$(PKG_SOURCE)
|
|
|
|
# endef
|
|
|
|
|
|
|
|
define Package/gforth
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=GForth
|
|
|
|
DEPENDS:= +libltdl
|
|
|
|
URL:=http://www.gnu.org/software/gforth/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gforth/description
|
|
|
|
Gforth is a fast and portable implementation of the ANS Forth
|
|
|
|
language.
|
|
|
|
endef
|
|
|
|
|
2010-07-29 23:31:21 +03:00
|
|
|
HOST_CONFIGURE_VARS += LTDL_LIBRARY_PATH=$(STAGING_DIR_HOST)/lib
|
|
|
|
|
|
|
|
## Engine's dispatch would be crippled when compiling with -Os, also dynamic
|
|
|
|
## superinstructions don't seem to work in that case
|
|
|
|
EXTRA_CFLAGS += -O2
|
2010-07-28 00:45:24 +03:00
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
## The host-GForth uses -ltdl to link against the staging dir version of
|
|
|
|
## libltdl. However, when the host-GForth runs, it won't find that library,
|
|
|
|
## as no library path is encoded into the ltdl dependency (why?). So here we
|
|
|
|
## override LD_LIBRARY_PATH for all the build steps that might run the
|
|
|
|
## host-GForth.
|
2010-07-28 00:45:24 +03:00
|
|
|
|
|
|
|
define Host/Configure
|
2010-07-28 03:02:56 +03:00
|
|
|
export LD_LIBRARY_PATH=$(STAGING_DIR_HOST)/lib; \
|
|
|
|
$(call Host/Configure/Default)
|
2010-07-28 00:45:24 +03:00
|
|
|
endef
|
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
define Host/Compile
|
|
|
|
export LD_LIBRARY_PATH=$(STAGING_DIR_HOST)/lib; \
|
|
|
|
$(call Host/Compile/Default)
|
|
|
|
endef
|
2010-07-28 00:45:24 +03:00
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
define Host/Install
|
|
|
|
export LD_LIBRARY_PATH=$(STAGING_DIR_HOST)/lib; \
|
|
|
|
$(call Host/Install/Default)
|
|
|
|
endef
|
2010-07-28 00:45:24 +03:00
|
|
|
|
|
|
|
# todo: skipcode=
|
|
|
|
# todo: compiler options / tuning (openwrt sets bad defaults?)
|
2010-07-28 03:02:56 +03:00
|
|
|
# todo: either gcc 3.4 or -Os makes primitives use doubly-indirect dispatch :(
|
2010-07-28 00:45:24 +03:00
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
## Configuration of the target gforth
|
|
|
|
FORTHSIZES=--dictionary-size=1M \
|
|
|
|
--data-stack-size=16k \
|
|
|
|
--fp-stack-size=16k \
|
|
|
|
--return-stack-size=16k \
|
|
|
|
--locals-stack-size=16k
|
|
|
|
|
2010-07-29 23:31:21 +03:00
|
|
|
CONFIGURE_VARS += FORTHSIZES="$(FORTHSIZES)"
|
2010-07-28 03:02:56 +03:00
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
CROSS_PREFORTH = $(PKG_BUILD_DIR)/preforth
|
|
|
|
|
|
|
|
## Here we call configure, then patch the cross-GForth source tree to replace
|
|
|
|
## the 'preforth' script with a script that calls our host-compiled GForth.
|
|
|
|
## We also extract the name of the GForth kernel image used for the target
|
|
|
|
## architecture.
|
2010-07-28 00:45:24 +03:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default,)
|
2010-07-29 01:46:48 +03:00
|
|
|
echo "@kernel_fi@" > $(PKG_BUILD_DIR)/kernel_fi.in
|
|
|
|
cd $(PKG_BUILD_DIR) && ./config.status --file kernel_fi
|
2010-07-28 03:02:56 +03:00
|
|
|
echo "#!/bin/sh" > $(CROSS_PREFORTH)
|
|
|
|
echo "export LD_LIBRARY_PATH=$(STAGING_DIR_HOST)/lib;" >> $(CROSS_PREFORTH)
|
|
|
|
echo '$(STAGING_DIR_HOST)/bin/gforth -i $(STAGING_DIR_HOST)/lib/gforth/$(PKG_VERSION)/gforth.fi "$$$$@"' >> $(CROSS_PREFORTH)
|
2010-07-28 00:45:24 +03:00
|
|
|
chmod a+x $(PKG_BUILD_DIR)/preforth
|
|
|
|
endef
|
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
## Compilation is pretty manual to only build the parts we need. By default
|
|
|
|
## the GForth Makefile attempts to auto-tune by recursively calling itself for
|
|
|
|
## compilation, then running the GForth binary through unit-tests. This won't
|
2010-07-29 01:46:48 +03:00
|
|
|
## work with a cross-compile environment.
|
|
|
|
##
|
|
|
|
## todo: find out the correct kernel image and rename it 'kernel.fi', so we
|
|
|
|
## can find it without adapting postinst script.
|
2010-07-28 00:45:24 +03:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) kernel/version.fs gforth-ditc \
|
|
|
|
engine/prim-fast.i engine/prim_lab-fast.i engine/prim_names-fast.i \
|
|
|
|
engine/prim_superend-fast.i engine/profile-fast.i \
|
|
|
|
engine/prim_num-fast.i engine/prim_grp-fast.i \
|
|
|
|
engine/costs-fast.i engine/super2-fast.i
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/engine gforth-fast-ll-reg gforth-ll-reg \
|
|
|
|
OPT=-ll-reg OPTDEFINES="-DFORCE_LL -DFORCE_REG" OPTOBJECTS=
|
|
|
|
cd $(PKG_BUILD_DIR) && \
|
|
|
|
cp engine/gforth-ll-reg ./gforth && \
|
|
|
|
cp engine/gforth-fast-ll-reg ./gforth-fast
|
|
|
|
endef
|
|
|
|
|
2010-07-28 03:02:56 +03:00
|
|
|
##
|
|
|
|
## define lists of GForth's sources to package for loading in the target system
|
|
|
|
##
|
|
|
|
|
2010-07-28 00:45:24 +03:00
|
|
|
STARTUP = exboot.fs startup.fs arch/mips/asm.fs arch/mips/disasm.fs
|
|
|
|
|
|
|
|
GFORTH_FI_SRC = \
|
|
|
|
assert.fs \
|
|
|
|
backtrac.fs \
|
|
|
|
blocked.fb \
|
|
|
|
blocks.fs \
|
|
|
|
bufio.fs \
|
|
|
|
code.fs \
|
|
|
|
debug.fs \
|
|
|
|
debugs.fs \
|
|
|
|
dis-gdb.fs \
|
|
|
|
ekey.fs \
|
|
|
|
envos.fs \
|
|
|
|
savesys.fs \
|
|
|
|
environ.fs \
|
|
|
|
errors.fs \
|
|
|
|
exboot.fs \
|
|
|
|
except.fs \
|
|
|
|
extend.fs \
|
|
|
|
float.fs \
|
|
|
|
glocals.fs \
|
|
|
|
hash.fs \
|
|
|
|
history.fs \
|
|
|
|
intcomp.fs \
|
|
|
|
mkdir.fs \
|
|
|
|
libcc.fs \
|
|
|
|
locals.fs \
|
|
|
|
look.fs \
|
|
|
|
mkdir.fs \
|
|
|
|
prelude.fs \
|
|
|
|
quotes.fs \
|
|
|
|
search.fs \
|
|
|
|
see.fs \
|
|
|
|
see-ext.fs \
|
|
|
|
simp-see.fs \
|
|
|
|
source.fs \
|
|
|
|
startup.fs \
|
|
|
|
struct.fs \
|
|
|
|
struct0x.fs \
|
|
|
|
stuff.fs \
|
|
|
|
tasker.fs \
|
|
|
|
termsize.fs \
|
|
|
|
utf-8.fs \
|
|
|
|
vt100.fs \
|
|
|
|
vt100key.fs \
|
|
|
|
wordinfo.fs \
|
|
|
|
arch/mips/asm.fs arch/mips/disasm.fs arch/mips/insts.fs \
|
|
|
|
arch/mips/testasm.fs arch/mips/testdisasm.fs
|
|
|
|
|
|
|
|
LIBCC_SRC = cstr.fs unix/socket.fs
|
|
|
|
LIBCC_DIST_SRC = libffi.fs fflib.fs $(LIBCC_SRC)
|
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
# todo: strip down (really?)
|
|
|
|
GFORTH_SRC = $(GFORTH_FI_SRC) $(LIBCC_DIST_SRC) \
|
2010-07-28 00:45:24 +03:00
|
|
|
ans-report.fs ansi.fs answords.fs \
|
|
|
|
colorize.fs comp-i.fs complex.fs \
|
|
|
|
depth-changes.fs dosekey.fs doskey.fs ds2texi.fs \
|
|
|
|
envos.dos envos.os2 etags.fs fft.fs filedump.fs fi2c.fs \
|
|
|
|
fsl-util.4th glosgen.fs gray.fs httpd.fs install-tags.fs \
|
|
|
|
make-app.fs doc/makedoc.fs locate.fs more.fs onebench.fs \
|
|
|
|
other.fs prims2x.fs prims2x0.6.2.fs proxy.fs random.fs \
|
|
|
|
regexp.fs sokoban.fs string.fs table.fs tags.fs \
|
|
|
|
tt.fs \
|
|
|
|
unbuffer.fs wordsets.fs xwords.fs \
|
|
|
|
test/tester.fs test/ttester.fs \
|
|
|
|
test/coretest.fs test/postpone.fs test/dbltest.fs \
|
|
|
|
test/string.fs test/float.fs test/search.fs test/gforth.fs \
|
|
|
|
test/other.fs test/signals.fs test/checkans.fs \
|
|
|
|
test/primtest.fs test/coreext.fs test/deferred.fs \
|
|
|
|
test/coremore.fs test/gforth-nofast.fs test/libcc.fs \
|
|
|
|
test/macros.fs \
|
|
|
|
compat/strcomp.fs \
|
|
|
|
bubble.fs siev.fs matrix.fs fib.fs \
|
|
|
|
oof.fs oofsampl.fs objects.fs objexamp.fs mini-oof.fs moof-exm.fs \
|
|
|
|
moofglos.fs fixpath.fs \
|
|
|
|
add.fs lib.fs oldlib.fs sieve.fs \
|
|
|
|
endtry-iferror.fs recover-endtry.fs
|
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
GFORTH_BIN = gforth gforth-fast gforthmi
|
|
|
|
|
|
|
|
GFORTH_SHARE_DIR = /usr/share/gforth/$(PKG_VERSION)
|
|
|
|
GFORTH_LIB_DIR = /usr/lib/gforth/$(PKG_VERSION)
|
|
|
|
GFORTH_BIN_DIR = /usr/bin
|
2010-07-28 00:45:24 +03:00
|
|
|
|
2010-07-29 01:46:48 +03:00
|
|
|
## Select files for package. Note how we rename the GForth kernel image to
|
|
|
|
## 'kernel.fi' here, so that 'postinst' can refer to it without depending on
|
|
|
|
## architecture-specific naming.
|
2010-07-28 00:45:24 +03:00
|
|
|
define Package/gforth/install
|
2010-07-29 01:46:48 +03:00
|
|
|
$(INSTALL_DIR) $(1)/$(GFORTH_BIN_DIR)
|
|
|
|
$(INSTALL_DIR) $(1)/$(GFORTH_SHARE_DIR)
|
|
|
|
$(INSTALL_DIR) $(1)/$(GFORTH_LIB_DIR)
|
|
|
|
$(INSTALL_DIR) $(1)/$(GFORTH_SHARE_DIR)/../site-forth
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$$$$(cat $(PKG_BUILD_DIR)/kernel_fi) $(1)/$(GFORTH_SHARE_DIR)/kernel.fi
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/gforth-ditc $(1)/$(GFORTH_LIB_DIR)/
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/siteinit.fs $(1)/$(GFORTH_SHARE_DIR)/../site-forth/
|
|
|
|
$(call pkg_install_bin,$(GFORTH_BIN),$(PKG_BUILD_DIR),$(1)/$(GFORTH_BIN_DIR))
|
|
|
|
$(call pkg_install_files,$(GFORTH_SRC),$(PKG_BUILD_DIR),$(1)/$(GFORTH_SHARE_DIR))
|
|
|
|
endef
|
|
|
|
|
|
|
|
FORTHKFLAGS= --die-on-signal -i kernel.fi
|
|
|
|
|
|
|
|
## Directly after installation load the source once and generate a
|
|
|
|
## corresponding interpreter image. GForth needs that for quick startup.
|
|
|
|
define Package/gforth/postinst
|
|
|
|
#! /bin/sh
|
|
|
|
echo "Creating GForth interpreter image..."
|
|
|
|
export GFORTH="$(GFORTH_BIN_DIR)/gforth $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)"
|
|
|
|
gforthmi $(GFORTH_LIB_DIR)/gforth.fi $(FORTHSIZES) $(FORTHKFLAGS) $(STARTUP)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gforth/prerm
|
|
|
|
#! /bin/sh
|
|
|
|
rm -f $(GFORTH_LIB_DIR)/gforth.fi
|
2010-07-28 00:45:24 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|
|
|
|
$(eval $(call BuildPackage,gforth))
|