summaryrefslogtreecommitdiff
path: root/am/bootstrap.am
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2016-01-29 10:21:44 +0100
committerAndy Wingo <wingo@pobox.com>2016-01-29 10:21:44 +0100
commiteccdeb6cc6c164ea10160fafbd276b6dc5e9b73e (patch)
tree2e31767aafb05352db514563b003fff9991c3dfa /am/bootstrap.am
parente4be4aea3491be954da25b8356e97c0fe60f98f9 (diff)
Distribute prebuilt bootstraps for common hosts
* am/bootstrap.am: New file, factored out of bootstrap/Makefile.am. * bootstrap/Makefile.am: Use bootstrap.am. * prebuilt/Makefile.am: * prebuilt/i686-pc-linux-gnu/Makefile.am: * prebuilt/mips-unknown-linux-gnu/Makefile.am: * prebuilt/x86_64-unknown-linux-gnu/Makefile.am: New files. * configure.ac: Output the prebuilt/ makefiles. * Makefile.am: Descend into prebuilt/ when making dist. * meta/uninstalled-env.in: Arrange to put prebuilt/ in the beginning of the GUILE_LOAD_COMPILED_PATH. Also fix a case where bootstrap/ wasn't being correctly added to the load path.
Diffstat (limited to 'am/bootstrap.am')
-rw-r--r--am/bootstrap.am153
1 files changed, 153 insertions, 0 deletions
diff --git a/am/bootstrap.am b/am/bootstrap.am
new file mode 100644
index 000000000..d613d7f02
--- /dev/null
+++ b/am/bootstrap.am
@@ -0,0 +1,153 @@
+## Copyright (C) 2009, 2010, 2011, 2012, 2013,
+## 2014, 2015 Free Software Foundation, Inc.
+##
+## This file is part of GNU Guile.
+##
+## GNU Guile is free software; you can redistribute it and/or modify
+## it under the terms of the GNU Lesser General Public License as
+## published by the Free Software Foundation; either version 3, or (at
+## your option) any later version.
+##
+## GNU Guile is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU Lesser General Public License for more details.
+##
+## You should have received a copy of the GNU Lesser General Public
+## License along with GNU Guile; see the file COPYING.LESSER. If not,
+## write to the Free Software Foundation, Inc., 51 Franklin Street,
+## Fifth Floor, Boston, MA 02110-1301 USA
+
+# These variables can be set before you include bootstrap.am.
+GUILE_WARNINGS ?= -Wunbound-variable -Warity-mismatch -Wformat
+GUILE_OPTIMIZATIONS ?= -O2
+GUILE_TARGET ?= $(host)
+GUILE_BUILD_TAG ?= BOOTSTRAP
+
+GOBJECTS = $(SOURCES:%.scm=%.go)
+nobase_noinst_DATA = $(GOBJECTS)
+CLEANFILES = $(GOBJECTS)
+
+VM_TARGETS = system/vm/assembler.go system/vm/disassembler.go
+$(VM_TARGETS): $(top_builddir)/libguile/vm-operations.h
+
+AM_V_GUILEC = $(AM_V_GUILEC_$(V))
+AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
+AM_V_GUILEC_0 = @echo " $(GUILE_BUILD_TAG) GUILEC" $@;
+
+vpath %.scm @top_srcdir@/module
+
+SUFFIXES = .scm .go
+
+.scm.go:
+ $(AM_V_GUILEC)GUILE_AUTO_COMPILE=0 \
+ $(top_builddir)/meta/uninstalled-env \
+ guild compile --target="$(GUILE_TARGET)" \
+ $(GUILE_WARNINGS) $(GUILE_OPTIMIZATIONS) \
+ -L "$(abs_top_srcdir)/module" \
+ -L "$(abs_top_srcdir)/guile-readline" \
+ -o "$@" "$<"
+
+# A subset of sources that are used by the compiler. We can compile
+# these in any order; the order below is designed to hopefully result in
+# the lowest total compile time.
+SOURCES = \
+ ice-9/eval.scm \
+ ice-9/psyntax-pp.scm \
+ language/cps/intmap.scm \
+ language/cps/intset.scm \
+ language/cps/utils.scm \
+ ice-9/vlist.scm \
+ srfi/srfi-1.scm \
+ \
+ language/tree-il.scm \
+ language/tree-il/analyze.scm \
+ language/tree-il/canonicalize.scm \
+ language/tree-il/compile-cps.scm \
+ language/tree-il/debug.scm \
+ language/tree-il/effects.scm \
+ language/tree-il/fix-letrec.scm \
+ language/tree-il/optimize.scm \
+ language/tree-il/peval.scm \
+ language/tree-il/primitives.scm \
+ language/tree-il/spec.scm \
+ \
+ language/cps.scm \
+ language/cps/closure-conversion.scm \
+ language/cps/compile-bytecode.scm \
+ language/cps/constructors.scm \
+ language/cps/contification.scm \
+ language/cps/cse.scm \
+ language/cps/dce.scm \
+ language/cps/effects-analysis.scm \
+ language/cps/elide-values.scm \
+ language/cps/licm.scm \
+ language/cps/peel-loops.scm \
+ language/cps/primitives.scm \
+ language/cps/prune-bailouts.scm \
+ language/cps/prune-top-level-scopes.scm \
+ language/cps/reify-primitives.scm \
+ language/cps/renumber.scm \
+ language/cps/rotate-loops.scm \
+ language/cps/optimize.scm \
+ language/cps/simplify.scm \
+ language/cps/self-references.scm \
+ language/cps/slot-allocation.scm \
+ language/cps/spec.scm \
+ language/cps/specialize-primcalls.scm \
+ language/cps/specialize-numbers.scm \
+ language/cps/split-rec.scm \
+ language/cps/type-checks.scm \
+ language/cps/type-fold.scm \
+ language/cps/types.scm \
+ language/cps/verify.scm \
+ language/cps/with-cps.scm \
+ \
+ language/scheme/spec.scm \
+ language/scheme/compile-tree-il.scm \
+ language/scheme/decompile-tree-il.scm \
+ \
+ language/bytecode.scm \
+ language/bytecode/spec.scm \
+ \
+ language/value/spec.scm \
+ \
+ system/base/pmatch.scm \
+ system/base/syntax.scm \
+ system/base/compile.scm \
+ system/base/language.scm \
+ system/base/lalr.scm \
+ system/base/message.scm \
+ system/base/target.scm \
+ system/base/types.scm \
+ system/base/ck.scm \
+ \
+ ice-9/boot-9.scm \
+ ice-9/r5rs.scm \
+ ice-9/deprecated.scm \
+ ice-9/binary-ports.scm \
+ ice-9/command-line.scm \
+ ice-9/control.scm \
+ ice-9/format.scm \
+ ice-9/getopt-long.scm \
+ ice-9/i18n.scm \
+ ice-9/match.scm \
+ ice-9/networking.scm \
+ ice-9/posix.scm \
+ ice-9/rdelim.scm \
+ ice-9/receive.scm \
+ ice-9/regex.scm \
+ ice-9/session.scm \
+ ice-9/pretty-print.scm \
+ \
+ system/vm/assembler.scm \
+ system/vm/debug.scm \
+ system/vm/disassembler.scm \
+ system/vm/dwarf.scm \
+ system/vm/elf.scm \
+ system/vm/frame.scm \
+ system/vm/linker.scm \
+ system/vm/loader.scm \
+ system/vm/program.scm \
+ system/vm/vm.scm \
+ system/foreign.scm