[gforth] / gforth / Attic / gforth-makeimage  

gforth: gforth/Attic/gforth-makeimage


1 : anton 1.1 #! /bin/sh
2 : anton 1.4 #Copyright (C) 1997 Free Software Foundation, Inc.
3 : pazsan 1.3
4 :     #This file is part of Gforth.
5 :    
6 :     #Gforth is free software; you can redistribute it and/or
7 :     #modify it under the terms of the GNU General Public License
8 :     #as published by the Free Software Foundation; either version 2
9 :     #of the License, or (at your option) any later version.
10 :    
11 :     #This program is distributed in the hope that it will be useful,
12 :     #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 :     #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
14 :     #GNU General Public License for more details.
15 :    
16 :     #You should have received a copy of the GNU General Public License
17 :     #along with this program; if not, write to the Free Software
18 :     #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 :    
20 : anton 1.2 if test $# = 0 || test $1 = --help || test $1 = -h; then
21 :     echo "usage: `basename $0` target-name [gforth-options]"
22 :     echo " environment: GFORTHD: the Gforth binary used (default: gforth-ditc)"
23 :     echo "creates a relocatable image 'target-name'"
24 :     exit 1
25 :     fi
26 : anton 1.1 outfile=$1; shift
27 :     tmpfile=./temp-image.fi
28 : pazsan 1.3 test "x$GFORTHD" != x || GFORTHD=gforth-ditc
29 : anton 1.2 $GFORTHD --clear-dictionary --no-offset-im $* -e "savesystem $tmpfile"1" bye"
30 :     $GFORTHD --clear-dictionary --offset-image $* -e "savesystem $tmpfile"2" bye"
31 :     $GFORTHD -i kernel.fi startup.fs comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
32 : anton 1.1 #gforth-0.2.1 -m 100000 comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
33 :     rm $tmpfile"1" $tmpfile"2"

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help