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
|
(*
Copyright (c) 2000
Cambridge University Technical Services Limited
Modified David C.J. Matthews 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
*)
(* Install initial conversion functions. These can be replaced later on. *)
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. *)
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;
|