1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
(*
Title: Bootstrap code.
Author: David Matthews
Copyright David Matthews 2005-2008
This library 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 2.1 of the License, or (at your option) any later version.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
RunCall.addOverload Bootstrap.convString Bootstrap.convStringName;
RunCall.addOverload Bootstrap.convInt "convInt";
RunCall.addOverload Bootstrap.convWord "convWord";
(* Build the main basis library. *)
Bootstrap.use "basis/build.sml";
(* We've now set up the new name space so everything has to be
compiled into that rather than the old space. *)
(* FFI. *)
PolyML.make "mlsource/extra/CInterface";
PolyML.use "mlsource/extra/CInterface/clean";
(* XWindows/Motif *)
let
val xcall: int*int->int*int =
RunCall.run_call1 RuntimeCalls.POLY_SYS_XWindows;
(* See if the RTS supports the X GetTimeOfDay call. *)
val isX = (xcall(30, 0); true) handle _ => false
in
if isX
then
(
PolyML.make "mlsource/extra/XWindows";
PolyML.make "mlsource/extra/Motif"
)
else ()
end;
PolyML.print_depth 100;
(* Set the inline level to 40 which seems optimal. *)
PolyML.Compiler.maxInlineSize := 40;
(* Do this last. There's a problem that replacing the standard input
loses any buffering in the previous input which includes any commands
after the one that does the replacing. *)
let
val args = CommandLine.arguments();
(* If we have -o filename use that as the output name.
N.B. polyImport takes the first argument that is not recognised as
an RTS argument and treats that as the file name so any -o must occur
AFTER the import file. *)
fun getFile [] = "polyexport" (* Default file name *)
| getFile ("-o" :: outFile :: _) = outFile
| getFile (_::tl) = getFile tl
val fileName = getFile args
in
PolyML.shareCommonData PolyML.rootFunction;
PolyML.export(fileName, PolyML.rootFunction)
end;
|