Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created January 22, 2021 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ELLIOTTCABLE/6fb79ef8cdda06a2da501680d66782ce to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/6fb79ef8cdda06a2da501680d66782ce to your computer and use it in GitHub Desktop.
/Library/Developer/CommandLineTools/usr/bin/make coldstart
cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
sed -n -e '/^ /s/ \([A-Z]\)/ \&\&lbl_\1/gp' \
-e '/^}/q' caml/instruct.h > caml/jumptbl.h
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o interp.o interp.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o misc.o misc.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o stacks.o stacks.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fix_code.o fix_code.c
../tools/make-version-header.sh ../VERSION > caml/version.h
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup.o startup.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o freelist.o freelist.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o major_gc.o major_gc.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o minor_gc.o minor_gc.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o memory.o memory.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o alloc.o alloc.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o roots.o roots.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o globroots.o globroots.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fail.o fail.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals.o signals.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals_byt.o signals_byt.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o printexc.o printexc.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace.o backtrace.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compare.o compare.c
compare.c:273:12: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
return Val_int(LESS);
^~~~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o ints.o ints.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o floats.o floats.c
floats.c:442:21: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (f < g) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
floats.c:447:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o str.o str.c
str.c:239:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (res < 0) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
str.c:241:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (len1 < len2) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o array.o array.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o io.o io.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o extern.o extern.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o intern.o intern.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o hash.o hash.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o sys.o sys.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o meta.o meta.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o parsing.o parsing.c
parsing.c:220:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
parsing.c:225:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o gc_ctrl.o gc_ctrl.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o terminfo.o terminfo.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o md5.o md5.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o obj.o obj.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lexing.o lexing.c
lexing.c:66:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:101:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:147:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(mem,dst) = Val_int(-1) ;
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:163:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:207:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
5 warnings generated.
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o callback.o callback.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o debugger.o debugger.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o weak.o weak.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compact.o compact.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o finalise.o finalise.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o custom.o custom.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o dynlink.o dynlink.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o unix.o unix.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
ar rc libcamlrun.a interp.o misc.o stacks.o fix_code.o startup.o freelist.o major_gc.o minor_gc.o memory.o alloc.o roots.o globroots.o fail.o signals.o signals_byt.o printexc.o backtrace.o compare.o ints.o floats.o str.o array.o io.o extern.o intern.o hash.o sys.o meta.o parsing.o gc_ctrl.o terminfo.o md5.o obj.o lexing.o callback.o debugger.o weak.o compact.o finalise.o custom.o dynlink.o unix.o main.o
ranlib libcamlrun.a
sed -n -e "s/CAMLprim value \([a-z0-9_][a-z0-9_]*\).*/\1/p" alloc.c array.c compare.c extern.c floats.c gc_ctrl.c hash.c intern.c interp.c ints.c io.c lexing.c md5.c meta.c obj.c parsing.c signals.c str.c sys.c terminfo.c callback.c weak.c finalise.c stacks.c dynlink.c backtrace.c \
| sort | uniq > primitives
(echo '#include "caml/mlvalues.h"'; \
echo '#include "caml/prims.h"'; \
sed -e 's/.*/extern value &();/' primitives; \
echo 'c_primitive caml_builtin_cprim[] = {'; \
sed -e 's/.*/ &,/' primitives; \
echo ' 0 };'; \
echo 'char * caml_names_of_builtin_cprim[] = {'; \
sed -e 's/.*/ "&",/' primitives; \
echo ' 0 };') > prims.c
cc -DCAML_NAME_SPACE -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o prims.o prims.c
cc -Wl,-no_compact_unwind -o ocamlrun \
prims.o libcamlrun.a -lpthread
echo "/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/lib/ocaml/stublibs" > ld.conf
echo "/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/lib/ocaml" >> ld.conf
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT interp.c -o interp.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT misc.c -o misc.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT stacks.c -o stacks.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fix_code.c -o fix_code.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT startup.c -o startup.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT freelist.c -o freelist.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT major_gc.c -o major_gc.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT minor_gc.c -o minor_gc.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT memory.c -o memory.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT alloc.c -o alloc.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT roots.c -o roots.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT globroots.c -o globroots.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT fail.c -o fail.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals.c -o signals.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT signals_byt.c -o signals_byt.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT printexc.c -o printexc.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT backtrace.c -o backtrace.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compare.c -o compare.d.o
compare.c:273:12: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
return Val_int(LESS);
^~~~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT ints.c -o ints.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT floats.c -o floats.d.o
floats.c:442:21: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (f < g) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
floats.c:447:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT str.c -o str.d.o
str.c:239:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (res < 0) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
str.c:241:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (len1 < len2) return Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT array.c -o array.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT io.c -o io.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT extern.c -o extern.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT intern.c -o intern.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT hash.c -o hash.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT sys.c -o sys.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT meta.c -o meta.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT parsing.c -o parsing.d.o
parsing.c:220:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
parsing.c:225:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT gc_ctrl.c -o gc_ctrl.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT terminfo.c -o terminfo.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT md5.c -o md5.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT obj.c -o obj.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT lexing.c -o lexing.d.o
lexing.c:66:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:101:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:147:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(mem,dst) = Val_int(-1) ;
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:163:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:207:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
./caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
./caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
5 warnings generated.
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT callback.c -o callback.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT debugger.c -o debugger.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT weak.c -o weak.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT compact.c -o compact.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT finalise.c -o finalise.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT custom.c -o custom.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT dynlink.c -o dynlink.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT unix.c -o unix.d.o
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT main.c -o main.d.o
sed -e '/\/\*/d' \
-e '/^#/d' \
-e 's/enum /char * names_of_/' \
-e 's/{$/[] = {/' \
-e 's/\([[:upper:]][[:upper:]_0-9]*\)/"\1"/g' caml/instruct.h > caml/opnames.h
cc -c -DCAML_NAME_SPACE -g -DDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT instrtrace.c -o instrtrace.d.o
ar rc libcamlrund.a interp.d.o misc.d.o stacks.d.o fix_code.d.o startup.d.o freelist.d.o major_gc.d.o minor_gc.d.o memory.d.o alloc.d.o roots.d.o globroots.d.o fail.d.o signals.d.o signals_byt.d.o printexc.d.o backtrace.d.o compare.d.o ints.d.o floats.d.o str.d.o array.d.o io.d.o extern.d.o intern.d.o hash.d.o sys.d.o meta.d.o parsing.d.o gc_ctrl.d.o terminfo.d.o md5.d.o obj.d.o lexing.d.o callback.d.o debugger.d.o weak.d.o compact.d.o finalise.d.o custom.d.o dynlink.d.o unix.d.o main.d.o instrtrace.d.o
ranlib libcamlrund.a
cc -Wl,-no_compact_unwind -g -o ocamlrund \
prims.o libcamlrund.a -lpthread
cp byterun/ocamlrun boot/ocamlrun
cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o closure.o closure.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o error.o error.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lalr.o lalr.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lr0.o lr0.c
echo "#define OCAML_VERSION \"`sed -e 1q ../VERSION`\"" >version.h
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o mkpar.o mkpar.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o output.o output.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o reader.o reader.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o skeleton.o skeleton.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o symtab.o symtab.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o verbose.o verbose.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o warshall.o warshall.c
cc -DNDEBUG -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ocamlyacc closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o skeleton.o symtab.o verbose.o warshall.o
cp yacc/ocamlyacc boot/ocamlyacc
cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make COMPILER=../boot/ocamlc all
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmi` -c camlinternalFormatBasics.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmo` -c camlinternalFormatBasics.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.cmi` -c pervasives.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.cmo` -c pervasives.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.cmi` -c array.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.cmo` -c array.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.cmi` -c list.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.cmo` -c list.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.cmi` -c char.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.cmo` -c char.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.cmi` -c bytes.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.cmo` -c bytes.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.cmi` -c string.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.cmo` -c string.ml
sed -e "s|%%VERSION%%|`sed -e 1q ../VERSION`|" sys.mlp >sys.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.cmi` -c sys.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.cmo` -c sys.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.cmi` -c sort.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.cmo` -c sort.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.cmi` -c marshal.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.cmo` -c marshal.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.cmi` -c int32.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.cmi` -c obj.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.cmo` -c obj.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.cmo` -c int32.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.cmi` -c int64.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.cmo` -c int64.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.cmi` -c nativeint.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.cmo` -c nativeint.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.cmi` -c lexing.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.cmo` -c lexing.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.cmi` -c parsing.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.cmo` -c parsing.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.cmi` -c set.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.cmo` -c set.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.cmi` -c map.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.cmo` -c map.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.cmi` -c stack.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.cmo` -c stack.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.cmi` -c queue.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.cmo` -c queue.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.cmi` -c camlinternalLazy.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.cmo` -c camlinternalLazy.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.cmi` -c lazy.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.cmo` -c lazy.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.cmi` -c stream.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.cmo` -c stream.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.cmi` -c buffer.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.cmo` -c buffer.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.cmi` -c camlinternalFormat.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.cmo` -c camlinternalFormat.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.cmi` -c printf.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.cmo` -c printf.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.cmi` -c arg.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.cmo` -c arg.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.cmi` -c printexc.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.cmo` -c printexc.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.cmi` -c gc.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.cmo` -c gc.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.cmi` -c digest.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.cmo` -c digest.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.cmi` -c random.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.cmo` -c random.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.cmi` -c hashtbl.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.cmo` -c hashtbl.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.cmi` -c format.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.cmo` -c format.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.cmi` -c scanf.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.cmo` -c scanf.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.cmi` -c callback.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.cmo` -c callback.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.cmi` -c camlinternalOO.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.cmo` -c camlinternalOO.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.cmi` -c oo.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.cmo` -c oo.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.cmi` -c camlinternalMod.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.cmo` -c camlinternalMod.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.cmi` -c genlex.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.cmo` -c genlex.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.cmi` -c weak.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.cmo` -c weak.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.cmi` -c filename.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.cmo` -c filename.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.cmi` -c complex.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.cmo` -c complex.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.cmi` -c arrayLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.cmo` -c arrayLabels.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.cmi` -c listLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.cmo` -c listLabels.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.cmi` -c bytesLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.cmo` -c bytesLabels.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.cmi` -c stringLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.cmo` -c stringLabels.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.cmi` -c moreLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.cmo` -c moreLabels.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.cmi` -c stdLabels.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.cmo` -c stdLabels.ml
../boot/ocamlrun ../boot/ocamlc -a -o stdlib.cma camlinternalFormatBasics.cmo pervasives.cmo array.cmo list.cmo char.cmo bytes.cmo string.cmo sys.cmo sort.cmo marshal.cmo obj.cmo int32.cmo int64.cmo nativeint.cmo lexing.cmo parsing.cmo set.cmo map.cmo stack.cmo queue.cmo camlinternalLazy.cmo lazy.cmo stream.cmo buffer.cmo camlinternalFormat.cmo printf.cmo arg.cmo printexc.cmo gc.cmo digest.cmo random.cmo hashtbl.cmo format.cmo scanf.cmo callback.cmo camlinternalOO.cmo oo.cmo camlinternalMod.cmo genlex.cmo weak.cmo filename.cmo complex.cmo arrayLabels.cmo listLabels.cmo bytesLabels.cmo stringLabels.cmo moreLabels.cmo stdLabels.cmo
../boot/ocamlrun ../boot/ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags std_exit.cmo` -c std_exit.ml
if true; then \
echo '#!/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrun' > camlheader && \
echo '#!/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrun' > target_camlheader && \
echo '#!/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrund' > camlheaderd && \
echo '#!/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrund' > target_camlheaderd && \
echo '#!' | tr -d '\012' > camlheader_ur; \
else \
for suff in '' d; do \
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
-DRUNTIME_NAME='"/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrun'$suff'"' \
header.c -o tmpheader && \
strip tmpheader && \
mv tmpheader camlheader$suff && \
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
-DRUNTIME_NAME='"/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrun'$suff'"' \
header.c -o tmpheader && \
strip tmpheader && \
mv tmpheader target_camlheader$suff; \
done && \
cp camlheader camlheader_ur; \
fi
cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
if test -f boot/libcamlrun.a; then :; else \
ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
if test -d stdlib/caml; then :; else \
ln -s ../byterun/caml stdlib/caml; fi
/Library/Developer/CommandLineTools/usr/bin/make opt.opt
/Library/Developer/CommandLineTools/usr/bin/make checkstack
/Library/Developer/CommandLineTools/usr/bin/make runtime
cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
make[3]: Nothing to be done for `all'.
if test -f stdlib/libcamlrun.a; then :; else \
ln -s ../byterun/libcamlrun.a stdlib/libcamlrun.a; fi
/Library/Developer/CommandLineTools/usr/bin/make core
/Library/Developer/CommandLineTools/usr/bin/make coldstart
cd byterun; /Library/Developer/CommandLineTools/usr/bin/make all
make[4]: Nothing to be done for `all'.
cp byterun/ocamlrun boot/ocamlrun
cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
make[4]: Nothing to be done for `all'.
cp yacc/ocamlyacc boot/ocamlyacc
cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make COMPILER=../boot/ocamlc all
make[4]: Nothing to be done for `all'.
cd stdlib; cp stdlib.cma std_exit.cmo *.cmi camlheader ../boot
if test -f boot/libcamlrun.a; then :; else \
ln -s ../byterun/libcamlrun.a boot/libcamlrun.a; fi
if test -d stdlib/caml; then :; else \
ln -s ../byterun/caml stdlib/caml; fi
/Library/Developer/CommandLineTools/usr/bin/make coreall
/Library/Developer/CommandLineTools/usr/bin/make ocamlc
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/misc.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/misc.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/tbl.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/tbl.ml
sed -e 's|%%LIBDIR%%|/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/lib/ocaml|' \
-e 's|%%BYTERUN%%|/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin/ocamlrun|' \
-e 's|%%CCOMPTYPE%%|cc|' \
-e 's|%%BYTECC%%|cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -O |' \
-e 's|%%NATIVECC%%|cc -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT|' \
-e 's|%%PACKLD%%|ld -r -o\ |' \
-e 's|%%BYTECCLIBS%%|-lpthread|' \
-e 's|%%NATIVECCLIBS%%||' \
-e 's|%%RANLIBCMD%%|ranlib|' \
-e 's|%%ARCMD%%|ar|' \
-e 's|%%CC_PROFILE%%|-pg|' \
-e 's|%%ARCH%%|amd64|' \
-e 's|%%MODEL%%|default|' \
-e 's|%%SYSTEM%%|macosx|' \
-e 's|%%EXT_OBJ%%|.o|' \
-e 's|%%EXT_ASM%%|.s|' \
-e 's|%%EXT_LIB%%|.a|' \
-e 's|%%EXT_DLL%%|.so|' \
-e 's|%%SYSTHREAD_SUPPORT%%|true|' \
-e 's|%%ASM%%|clang -arch x86_64 -c|' \
-e 's|%%ASM_CFI_SUPPORTED%%|true|' \
-e 's|%%WITH_FRAME_POINTERS%%|false|' \
-e 's|%%MKDLL%%|cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind|' \
-e 's|%%MKEXE%%|cc -Wl,-no_compact_unwind|' \
-e 's|%%MKMAINDLL%%|cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind|' \
-e 's|%%HOST%%|x86_64-apple-darwin20.2.0|' \
-e 's|%%TARGET%%|x86_64-apple-darwin20.2.0|' \
utils/config.mlp > utils/config.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/config.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/config.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/clflags.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/clflags.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/terminfo.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/terminfo.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/ccomp.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/ccomp.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/warnings.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/warnings.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/consistbl.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/consistbl.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/location.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/location.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/longident.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/longident.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/asttypes.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parsetree.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/docstrings.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_helper.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_helper.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml
boot/ocamlyacc -v parsing/parser.mly
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parser.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parser.ml
boot/ocamlrun boot/ocamllex parsing/lexer.mll
201 states, 3959 transitions, table size 17042 bytes
2420 additional bytes used for bindings
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/lexer.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/lexer.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parse.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parse.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/printast.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/printast.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/pprintast.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/pprintast.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ident.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ident.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/path.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/path.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/primitive.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/primitive.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/types.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/types.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/btype.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/btype.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/outcometree.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/oprint.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/oprint.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/subst.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/subst.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/predef.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/predef.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/datarepr.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/datarepr.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmi_format.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmi_format.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/env.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/env.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtree.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtree.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyped.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyped.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ctype.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ctype.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyp.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyp.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includeclass.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includeclass.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/mtype.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/mtype.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/envaux.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/envaux.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includecore.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includecore.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmt_format.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmt_format.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includemod.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includemod.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typetexp.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typetexp.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/parmatch.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/parmatch.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/annot.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/stypes.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/stypes.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typecore.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typecore.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedecl.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedecl.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typeclass.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typeclass.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typemod.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typemod.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/lambda.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/lambda.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/switch.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/switch.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/matching.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/matching.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translobj.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translobj.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translcore.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translcore.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translclass.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translclass.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translmod.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translmod.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/simplif.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/simplif.ml
(echo 'let builtin_exceptions = [|'; \
sed -n -e 's|.*/\* \("[A-Za-z_]*"\) \*/$| \1;|p' byterun/caml/fail.h | \
sed -e '$s/;$//'; \
echo '|]'; \
echo 'let builtin_primitives = [|'; \
sed -e 's/.*/ "&";/' -e '$s/;$//' byterun/primitives; \
echo '|]') > bytecomp/runtimedef.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/pparse.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/pparse.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main_args.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main_args.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compenv.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compenv.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compmisc.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compmisc.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -a -linkall -o compilerlibs/ocamlcommon.cma utils/misc.cmo utils/tbl.cmo utils/config.cmo utils/clflags.cmo utils/terminfo.cmo utils/ccomp.cmo utils/warnings.cmo utils/consistbl.cmo parsing/location.cmo parsing/longident.cmo parsing/docstrings.cmo parsing/ast_helper.cmo parsing/syntaxerr.cmo parsing/parser.cmo parsing/lexer.cmo parsing/parse.cmo parsing/printast.cmo parsing/pprintast.cmo parsing/ast_mapper.cmo typing/ident.cmo typing/path.cmo typing/primitive.cmo typing/types.cmo typing/btype.cmo typing/oprint.cmo typing/subst.cmo typing/predef.cmo typing/datarepr.cmo typing/cmi_format.cmo typing/env.cmo typing/typedtree.cmo typing/printtyped.cmo typing/ctype.cmo typing/printtyp.cmo typing/includeclass.cmo typing/mtype.cmo typing/envaux.cmo typing/includecore.cmo typing/typedtreeIter.cmo typing/typedtreeMap.cmo typing/cmt_format.cmo typing/includemod.cmo typing/typetexp.cmo typing/parmatch.cmo typing/stypes.cmo typing/typecore.cmo typing/typedecl.cmo typing/typeclass.cmo typing/typemod.cmo bytecomp/lambda.cmo bytecomp/printlambda.cmo bytecomp/typeopt.cmo bytecomp/switch.cmo bytecomp/matching.cmo bytecomp/translobj.cmo bytecomp/translcore.cmo bytecomp/translclass.cmo bytecomp/translmod.cmo bytecomp/simplif.cmo bytecomp/runtimedef.cmo driver/pparse.cmo driver/main_args.cmo driver/compenv.cmo driver/compmisc.cmo
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/meta.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/meta.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/instruct.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.ml
sed -n -e '/^enum/p' -e 's/,//g' -e '/^ /p' byterun/caml/instruct.h | \
awk -f tools/make-opcodes > bytecomp/opcodes.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/cmo_format.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/dll.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/dll.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/symtable.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/symtable.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/errors.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/errors.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compile.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compile.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -a -o compilerlibs/ocamlbytecomp.cma bytecomp/meta.cmo bytecomp/instruct.cmo bytecomp/bytegen.cmo bytecomp/printinstr.cmo bytecomp/opcodes.cmo bytecomp/emitcode.cmo bytecomp/bytesections.cmo bytecomp/dll.cmo bytecomp/symtable.cmo bytecomp/bytelink.cmo bytecomp/bytelibrarian.cmo bytecomp/bytepackager.cmo driver/errors.cmo driver/compile.cmo
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -compat-32 -o ocamlc \
compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma driver/main.cmo
/Library/Developer/CommandLineTools/usr/bin/make ocamllex ocamlyacc ocamltools library
cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
make[5]: Nothing to be done for `all'.
cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string cset.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string cset.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string syntax.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string syntax.ml
../boot/ocamlyacc -v parser.mly
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string parser.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string parser.ml
../boot/ocamlrun ../boot/ocamllex lexer.mll
98 states, 1199 transitions, table size 5384 bytes
1802 additional bytes used for bindings
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string lexer.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string lexer.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string table.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string table.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string lexgen.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string lexgen.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string compact.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string compact.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string common.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string common.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string output.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string output.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string outputbis.mli
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string outputbis.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -c -w +33..39 -warn-error A -bin-annot -safe-string main.ml
../boot/ocamlrun ../boot/ocamlc -strict-sequence -nostdlib -I ../boot -compat-32 -o ocamllex cset.cmo syntax.cmo parser.cmo lexer.cmo table.cmo lexgen.cmo compact.cmo common.cmo output.cmo outputbis.cmo main.cmo
make[4]: Nothing to be done for `ocamlyacc'.
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/debuginfo.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/clambda.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/cmx_format.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printclambda.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printclambda.ml
cd tools; /Library/Developer/CommandLineTools/usr/bin/make all
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel depend.mli
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel depend.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamldep.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -compat-32 -o ocamldep misc.cmo config.cmo clflags.cmo terminfo.cmo warnings.cmo location.cmo longident.cmo docstrings.cmo syntaxerr.cmo ast_helper.cmo parser.cmo lexer.cmo parse.cmo ccomp.cmo ast_mapper.cmo pparse.cmo compenv.cmo depend.cmo ocamldep.cmo
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamlprof.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel profiling.mli
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel profiling.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o ocamlprof misc.cmo config.cmo clflags.cmo terminfo.cmo warnings.cmo location.cmo longident.cmo docstrings.cmo syntaxerr.cmo ast_helper.cmo parser.cmo lexer.cmo parse.cmo ocamlprof.cmo
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamlcp.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o ocamlcp warnings.cmo main_args.cmo ocamlcp.cmo
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamloptp.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o ocamloptp warnings.cmo main_args.cmo \
ocamloptp.cmo
sed -e 's|%%BINDIR%%|/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin|' ocamlmktop.tpl > ocamlmktop
chmod +x ocamlmktop
(echo 'let bindir = "/Users/ec/Sync/Code/excmd/packages/bs-excmd/_opam/bin"'; \
echo 'let ext_lib = ".a"'; \
echo 'let ext_dll = ".so"'; \
echo 'let supports_shared_libraries = false';\
echo 'let mkdll = "cc -bundle -flat_namespace -undefined suppress -Wl,-no_compact_unwind"'; \
echo 'let byteccrpath = ""'; \
echo 'let nativeccrpath = ""'; \
echo 'let mksharedlibrpath = ""'; \
echo 'let toolpref = ""'; \
sed -n -e 's/^#ml //p' ../config/Makefile) \
> ocamlmklibconfig.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamlmklibconfig.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel ocamlmklib.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o ocamlmklib ocamlmklibconfig.cmo ocamlmklib.cmo
unset LC_ALL || : ; \
unset LC_CTYPE || : ; \
unset LC_COLLATE LANG || : ; \
sed -e '/\/\*/d' \
-e '/^#/d' \
-e 's/enum \(.*\) {/let names_of_\1 = [|/' \
-e 's/.*};$/ |]/' \
-e 's/\([A-Z][A-Z_0-9a-z]*\)/"\1"/g' \
-e 's/,/;/g' \
../byterun/caml/instruct.h > opnames.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel opnames.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel dumpobj.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o dumpobj \
misc.cmo tbl.cmo config.cmo ident.cmo \
opcodes.cmo bytesections.cmo opnames.cmo dumpobj.cmo
cc -o objinfo_helper -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT \
objinfo_helper.c
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel objinfo.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -o objinfo ../compilerlibs/ocamlcommon.cma ../compilerlibs/ocamlbytecomp.cma ../asmcomp/printclambda.cmo objinfo.cmo
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel untypeast.mli
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel untypeast.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel tast_iter.mli
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel tast_iter.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel cmt2annot.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel read_cmt.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o read_cmt ../utils/misc.cmo ../utils/warnings.cmo ../utils/tbl.cmo ../utils/consistbl.cmo ../utils/config.cmo ../utils/clflags.cmo ../parsing/location.cmo ../parsing/longident.cmo ../parsing/docstrings.cmo ../parsing/lexer.cmo ../parsing/pprintast.cmo ../parsing/ast_helper.cmo ../parsing/ast_mapper.cmo ../typing/ident.cmo ../typing/path.cmo ../typing/types.cmo ../typing/typedtree.cmo ../typing/btype.cmo ../typing/subst.cmo ../typing/predef.cmo ../typing/datarepr.cmo ../typing/cmi_format.cmo ../typing/env.cmo ../typing/ctype.cmo ../typing/oprint.cmo ../typing/primitive.cmo ../typing/printtyp.cmo ../typing/mtype.cmo ../typing/envaux.cmo ../typing/typedtreeMap.cmo ../typing/typedtreeIter.cmo ../typing/cmt_format.cmo ../typing/stypes.cmo untypeast.cmo tast_iter.cmo cmt2annot.cmo read_cmt.cmo
cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make all
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmi` -c camlinternalFormatBasics.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmo` -c camlinternalFormatBasics.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.cmi` -c pervasives.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.cmo` -c pervasives.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.cmi` -c array.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.cmo` -c array.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.cmi` -c list.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.cmo` -c list.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.cmi` -c char.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.cmo` -c char.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.cmi` -c bytes.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.cmo` -c bytes.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.cmi` -c string.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.cmo` -c string.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.cmi` -c sys.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.cmo` -c sys.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.cmi` -c sort.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.cmo` -c sort.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.cmi` -c marshal.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.cmo` -c marshal.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.cmi` -c int32.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.cmi` -c obj.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.cmo` -c obj.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.cmo` -c int32.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.cmi` -c int64.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.cmo` -c int64.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.cmi` -c nativeint.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.cmo` -c nativeint.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.cmi` -c lexing.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.cmo` -c lexing.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.cmi` -c parsing.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.cmo` -c parsing.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.cmi` -c set.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.cmo` -c set.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.cmi` -c map.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.cmo` -c map.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.cmi` -c stack.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.cmo` -c stack.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.cmi` -c queue.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.cmo` -c queue.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.cmi` -c camlinternalLazy.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.cmo` -c camlinternalLazy.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.cmi` -c lazy.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.cmo` -c lazy.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.cmi` -c stream.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.cmo` -c stream.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.cmi` -c buffer.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.cmo` -c buffer.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.cmi` -c camlinternalFormat.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.cmo` -c camlinternalFormat.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.cmi` -c printf.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.cmo` -c printf.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.cmi` -c arg.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.cmo` -c arg.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.cmi` -c printexc.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.cmo` -c printexc.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.cmi` -c gc.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.cmo` -c gc.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.cmi` -c digest.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.cmo` -c digest.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.cmi` -c random.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.cmo` -c random.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.cmi` -c hashtbl.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.cmo` -c hashtbl.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.cmi` -c format.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.cmo` -c format.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.cmi` -c scanf.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.cmo` -c scanf.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.cmi` -c callback.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.cmo` -c callback.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.cmi` -c camlinternalOO.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.cmo` -c camlinternalOO.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.cmi` -c oo.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.cmo` -c oo.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.cmi` -c camlinternalMod.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.cmo` -c camlinternalMod.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.cmi` -c genlex.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.cmo` -c genlex.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.cmi` -c weak.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.cmo` -c weak.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.cmi` -c filename.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.cmo` -c filename.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.cmi` -c complex.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.cmo` -c complex.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.cmi` -c arrayLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.cmo` -c arrayLabels.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.cmi` -c listLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.cmo` -c listLabels.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.cmi` -c bytesLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.cmo` -c bytesLabels.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.cmi` -c stringLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.cmo` -c stringLabels.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.cmi` -c moreLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.cmo` -c moreLabels.ml
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.cmi` -c stdLabels.mli
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.cmo` -c stdLabels.ml
../boot/ocamlrun ../ocamlc -a -o stdlib.cma camlinternalFormatBasics.cmo pervasives.cmo array.cmo list.cmo char.cmo bytes.cmo string.cmo sys.cmo sort.cmo marshal.cmo obj.cmo int32.cmo int64.cmo nativeint.cmo lexing.cmo parsing.cmo set.cmo map.cmo stack.cmo queue.cmo camlinternalLazy.cmo lazy.cmo stream.cmo buffer.cmo camlinternalFormat.cmo printf.cmo arg.cmo printexc.cmo gc.cmo digest.cmo random.cmo hashtbl.cmo format.cmo scanf.cmo callback.cmo camlinternalOO.cmo oo.cmo camlinternalMod.cmo genlex.cmo weak.cmo filename.cmo complex.cmo arrayLabels.cmo listLabels.cmo bytesLabels.cmo stringLabels.cmo moreLabels.cmo stdLabels.cmo
../boot/ocamlrun ../ocamlc -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags std_exit.cmo` -c std_exit.ml
/Library/Developer/CommandLineTools/usr/bin/make ocaml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/genprintval.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/genprintval.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/toploop.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/toploop.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/trace.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/trace.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/topdirs.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/topdirs.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/topmain.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/topmain.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -a -o compilerlibs/ocamltoplevel.cma toplevel/genprintval.cmo toplevel/toploop.cmo toplevel/trace.cmo toplevel/topdirs.cmo toplevel/topmain.cmo
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/topstart.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c toplevel/expunge.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -o expunge compilerlibs/ocamlcommon.cma \
compilerlibs/ocamlbytecomp.cma toplevel/expunge.cmo
boot/ocamlrun boot/ocamlc -nostdlib -I boot -linkall -o ocaml.tmp \
compilerlibs/ocamlcommon.cma compilerlibs/ocamlbytecomp.cma \
compilerlibs/ocamltoplevel.cma toplevel/topstart.cmo
boot/ocamlrun ./expunge ocaml.tmp ocaml arg array arrayLabels buffer bytes bytesLabels callback camlinternalFormat camlinternalFormatBasics camlinternalLazy camlinternalMod camlinternalOO char complex digest filename format gc genlex hashtbl int32 int64 lazy lexing list listLabels map marshal moreLabels nativeint obj oo parsing pervasives printexc printf queue random scanf set sort stack stdLabels stream string stringLabels sys weak outcometree topdirs toploop
rm -f ocaml.tmp
/Library/Developer/CommandLineTools/usr/bin/make opt-core
/Library/Developer/CommandLineTools/usr/bin/make runtimeopt
cd asmrun; /Library/Developer/CommandLineTools/usr/bin/make all
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o startup.o startup.c
ln -s ../byterun/main.c main.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o main.o main.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o fail.o fail.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o roots.o roots.c
ln -s ../byterun/globroots.c globroots.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o globroots.o globroots.c
ln -s ../byterun/signals.c signals.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals.o signals.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o signals_asm.o signals_asm.c
signals_asm.c:83:15: warning: incompatible pointer types passing 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') to parameter of type 'void (*)(int)' [-Wincompatible-pointer-types]
signal(sig, handle_signal);
^~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:390:30: note: passing argument to parameter here
void(*signal(int, void (*)(int)))(int);
^
signals_asm.c:132:16: warning: incompatible pointer types assigning to 'signal_handler' (aka 'void (*)(int)') from 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') [-Wincompatible-pointer-types]
default: act = handle_signal; break;
^ ~~~~~~~~~~~~~
2 warnings generated.
ln -s ../byterun/misc.c misc.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o misc.o misc.c
ln -s ../byterun/freelist.c freelist.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o freelist.o freelist.c
ln -s ../byterun/major_gc.c major_gc.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o major_gc.o major_gc.c
ln -s ../byterun/minor_gc.c minor_gc.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o minor_gc.o minor_gc.c
ln -s ../byterun/memory.c memory.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o memory.o memory.c
ln -s ../byterun/alloc.c alloc.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o alloc.o alloc.c
ln -s ../byterun/compare.c compare.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compare.o compare.c
compare.c:273:12: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
return Val_int(LESS);
^~~~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
ln -s ../byterun/ints.c ints.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o ints.o ints.c
ln -s ../byterun/floats.c floats.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o floats.o floats.c
floats.c:442:21: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (f < g) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
floats.c:447:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
ln -s ../byterun/str.c str.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o str.o str.c
str.c:239:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (res < 0) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
str.c:241:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (len1 < len2) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
ln -s ../byterun/array.c array.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o array.o array.c
ln -s ../byterun/io.c io.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o io.o io.c
ln -s ../byterun/extern.c extern.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o extern.o extern.c
ln -s ../byterun/intern.c intern.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o intern.o intern.c
ln -s ../byterun/hash.c hash.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o hash.o hash.c
ln -s ../byterun/sys.c sys.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o sys.o sys.c
ln -s ../byterun/parsing.c parsing.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o parsing.o parsing.c
parsing.c:220:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
parsing.c:225:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
ln -s ../byterun/gc_ctrl.c gc_ctrl.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o gc_ctrl.o gc_ctrl.c
ln -s ../byterun/terminfo.c terminfo.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o terminfo.o terminfo.c
ln -s ../byterun/md5.c md5.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o md5.o md5.c
ln -s ../byterun/obj.c obj.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o obj.o obj.c
ln -s ../byterun/lexing.c lexing.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o lexing.o lexing.c
lexing.c:66:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:101:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:147:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(mem,dst) = Val_int(-1) ;
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:163:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:207:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
5 warnings generated.
ln -s ../byterun/printexc.c printexc.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o printexc.o printexc.c
ln -s ../byterun/callback.c callback.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o callback.o callback.c
ln -s ../byterun/weak.c weak.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o weak.o weak.c
ln -s ../byterun/compact.c compact.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o compact.o compact.c
ln -s ../byterun/finalise.c finalise.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o finalise.o finalise.c
ln -s ../byterun/custom.c custom.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o custom.o custom.c
ln -s ../byterun/unix.c unix.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o unix.o unix.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o backtrace.o backtrace.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o natdynlink.o natdynlink.c
ln -s ../byterun/debugger.c debugger.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o debugger.o debugger.c
ln -s ../byterun/meta.c meta.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o meta.o meta.c
ln -s ../byterun/dynlink.c dynlink.c
cc -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -c -o dynlink.o dynlink.c
cc -c -DSYS_macosx -DMODEL_default -o amd64.o amd64.S || \
{ echo "If your assembler produced syntax errors, it is probably";\
echo "unhappy with the preprocessor. Check your assembler, or";\
echo "try producing amd64.o by hand.";\
exit 2; }
rm -f libasmrun.a
ar rc libasmrun.a startup.o main.o fail.o roots.o globroots.o signals.o signals_asm.o misc.o freelist.o major_gc.o minor_gc.o memory.o alloc.o compare.o ints.o floats.o str.o array.o io.o extern.o intern.o hash.o sys.o parsing.o gc_ctrl.o terminfo.o md5.o obj.o lexing.o printexc.o callback.o weak.o compact.o finalise.o custom.o unix.o backtrace.o natdynlink.o debugger.o meta.o dynlink.o amd64.o
ranlib libasmrun.a
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup.d.o startup.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o main.d.o main.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o fail.d.o fail.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o roots.d.o roots.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o globroots.d.o globroots.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals.d.o signals.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals_asm.d.o signals_asm.c
signals_asm.c:83:15: warning: incompatible pointer types passing 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') to parameter of type 'void (*)(int)' [-Wincompatible-pointer-types]
signal(sig, handle_signal);
^~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:390:30: note: passing argument to parameter here
void(*signal(int, void (*)(int)))(int);
^
signals_asm.c:132:16: warning: incompatible pointer types assigning to 'signal_handler' (aka 'void (*)(int)') from 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') [-Wincompatible-pointer-types]
default: act = handle_signal; break;
^ ~~~~~~~~~~~~~
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o misc.d.o misc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o freelist.d.o freelist.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o major_gc.d.o major_gc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o minor_gc.d.o minor_gc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o memory.d.o memory.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o alloc.d.o alloc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compare.d.o compare.c
compare.c:273:12: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
return Val_int(LESS);
^~~~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ints.d.o ints.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o floats.d.o floats.c
floats.c:442:21: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (f < g) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
floats.c:447:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o str.d.o str.c
str.c:239:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (res < 0) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
str.c:241:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (len1 < len2) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o array.d.o array.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o io.d.o io.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o extern.d.o extern.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o intern.d.o intern.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o hash.d.o hash.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o sys.d.o sys.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o parsing.d.o parsing.c
parsing.c:220:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
parsing.c:225:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o gc_ctrl.d.o gc_ctrl.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o terminfo.d.o terminfo.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o md5.d.o md5.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o obj.d.o obj.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o lexing.d.o lexing.c
lexing.c:66:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:101:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:147:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(mem,dst) = Val_int(-1) ;
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:163:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:207:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
5 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o printexc.d.o printexc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o callback.d.o callback.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o weak.d.o weak.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compact.d.o compact.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o finalise.d.o finalise.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o custom.d.o custom.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o unix.d.o unix.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace.d.o backtrace.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o natdynlink.d.o natdynlink.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o debugger.d.o debugger.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o meta.d.o meta.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -g -DDEBUG -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o dynlink.d.o dynlink.c
rm -f libasmrund.a
ar rc libasmrund.a startup.d.o main.d.o fail.d.o roots.d.o globroots.d.o signals.d.o signals_asm.d.o misc.d.o freelist.d.o major_gc.d.o minor_gc.d.o memory.d.o alloc.d.o compare.d.o ints.d.o floats.d.o str.d.o array.d.o io.d.o extern.d.o intern.d.o hash.d.o sys.d.o parsing.d.o gc_ctrl.d.o terminfo.d.o md5.d.o obj.d.o lexing.d.o printexc.d.o callback.d.o weak.d.o compact.d.o finalise.d.o custom.d.o unix.d.o backtrace.d.o natdynlink.d.o debugger.d.o meta.d.o dynlink.d.o amd64.o
ranlib libasmrund.a
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o startup.p.o startup.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o main.p.o main.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o fail.p.o fail.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o roots.p.o roots.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o globroots.p.o globroots.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals.p.o signals.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o signals_asm.p.o signals_asm.c
signals_asm.c:83:15: warning: incompatible pointer types passing 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') to parameter of type 'void (*)(int)' [-Wincompatible-pointer-types]
signal(sig, handle_signal);
^~~~~~~~~~~~~
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:390:30: note: passing argument to parameter here
void(*signal(int, void (*)(int)))(int);
^
signals_asm.c:132:16: warning: incompatible pointer types assigning to 'signal_handler' (aka 'void (*)(int)') from 'void (int, siginfo_t *, void *)' (aka 'void (int, struct __siginfo *, void *)') [-Wincompatible-pointer-types]
default: act = handle_signal; break;
^ ~~~~~~~~~~~~~
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o misc.p.o misc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o freelist.p.o freelist.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o major_gc.p.o major_gc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o minor_gc.p.o minor_gc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o memory.p.o memory.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o alloc.p.o alloc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compare.p.o compare.c
compare.c:273:12: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
return Val_int(LESS);
^~~~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o ints.p.o ints.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o floats.p.o floats.c
floats.c:442:21: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (f < g) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
floats.c:447:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o str.p.o str.c
str.c:239:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (res < 0) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
str.c:241:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (len1 < len2) return Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o array.p.o array.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o io.p.o io.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o extern.p.o extern.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o intern.p.o intern.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o hash.p.o hash.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o sys.p.o sys.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o parsing.p.o parsing.c
parsing.c:220:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
parsing.c:225:22: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
env->curr_char = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o gc_ctrl.p.o gc_ctrl.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o terminfo.p.o terminfo.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o md5.p.o md5.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o obj.p.o obj.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o lexing.p.o lexing.c
lexing.c:66:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:101:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:147:24: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(mem,dst) = Val_int(-1) ;
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:163:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
lexbuf->lex_last_action = Val_int(-1);
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
lexing.c:207:38: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (lexbuf->lex_last_action == Val_int(-1)) {
^~~~~~~~~~~
../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
5 warnings generated.
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o printexc.p.o printexc.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o callback.p.o callback.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o weak.p.o weak.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o compact.p.o compact.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o finalise.p.o finalise.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o custom.p.o custom.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o unix.p.o unix.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o backtrace.p.o backtrace.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o natdynlink.p.o natdynlink.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o debugger.p.o debugger.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o meta.p.o meta.c
cc -c -I../byterun -DCAML_NAME_SPACE -DNATIVE_CODE -DTARGET_amd64 -DSYS_macosx -pg -O -DPROFILING -O -D_FILE_OFFSET_BITS=64 -D_REENTRANT -o dynlink.p.o dynlink.c
cc -c -DSYS_macosx -DMODEL_default -DPROFILING -o amd64.p.o amd64.S
rm -f libasmrunp.a
ar rc libasmrunp.a startup.p.o main.p.o fail.p.o roots.p.o globroots.p.o signals.p.o signals_asm.p.o misc.p.o freelist.p.o major_gc.p.o minor_gc.p.o memory.p.o alloc.p.o compare.p.o ints.p.o floats.p.o str.p.o array.p.o io.p.o extern.p.o intern.p.o hash.p.o sys.p.o parsing.p.o gc_ctrl.p.o terminfo.p.o md5.p.o obj.p.o lexing.p.o printexc.p.o callback.p.o weak.p.o compact.p.o finalise.p.o custom.p.o unix.p.o backtrace.p.o natdynlink.p.o debugger.p.o meta.p.o dynlink.p.o amd64.p.o
ranlib libasmrunp.a
cp asmrun/libasmrun.a stdlib/libasmrun.a
/Library/Developer/CommandLineTools/usr/bin/make ocamlopt
ln -s amd64/arch.ml asmcomp/arch.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/arch.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/debuginfo.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/cmm.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/cmm.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printcmm.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reg.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reg.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/mach.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/mach.ml
ln -s amd64/proc.ml asmcomp/proc.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/proc.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/proc.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/clambda.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/compilenv.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/compilenv.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/closure.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/closure.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/strmatch.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/cmmgen.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printmach.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printmach.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/selectgen.ml
ln -s amd64/selection.ml asmcomp/selection.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/selection.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/selection.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/comballoc.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/CSEgen.ml
ln -s amd64/CSE.ml asmcomp/CSE.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/CSE.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/liveness.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/liveness.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/spill.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/spill.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/split.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/split.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/interf.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/interf.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/coloring.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/coloring.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reloadgen.ml
ln -s amd64/reload.ml asmcomp/reload.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reload.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/reload.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/deadcode.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/linearize.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/printlinear.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/linearize.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/schedgen.ml
ln -s amd64/scheduling.ml asmcomp/scheduling.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/scheduling.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation_intf.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/branch_relaxation.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/emitaux.ml
cd tools && /Library/Developer/CommandLineTools/usr/bin/make cvt_emit
../boot/ocamlrun ../boot/ocamllex cvt_emit.mll
16 states, 280 transitions, table size 1216 bytes
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -c -strict-sequence -w +27+32..39 -warn-error A -safe-string -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel cvt_emit.ml
../boot/ocamlrun ../boot/ocamlc -nostdlib -I ../boot -I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp -I ../driver -I ../toplevel -o cvt_emit cvt_emit.cmo
boot/ocamlrun tools/cvt_emit < asmcomp/amd64/emit.mlp > asmcomp/emit.ml \
|| { rm -f asmcomp/emit.ml; exit 2; }
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/emit.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/emit.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmgen.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmlink.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmlibrarian.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c asmcomp/asmpackager.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/opterrors.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/opterrors.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/optcompile.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/optcompile.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -a -o compilerlibs/ocamloptcomp.cma asmcomp/arch.cmo asmcomp/debuginfo.cmo asmcomp/cmm.cmo asmcomp/printcmm.cmo asmcomp/reg.cmo asmcomp/mach.cmo asmcomp/proc.cmo asmcomp/clambda.cmo asmcomp/printclambda.cmo asmcomp/compilenv.cmo asmcomp/closure.cmo asmcomp/strmatch.cmo asmcomp/cmmgen.cmo asmcomp/printmach.cmo asmcomp/selectgen.cmo asmcomp/selection.cmo asmcomp/comballoc.cmo asmcomp/CSEgen.cmo asmcomp/CSE.cmo asmcomp/liveness.cmo asmcomp/spill.cmo asmcomp/split.cmo asmcomp/interf.cmo asmcomp/coloring.cmo asmcomp/reloadgen.cmo asmcomp/reload.cmo asmcomp/deadcode.cmo asmcomp/printlinear.cmo asmcomp/linearize.cmo asmcomp/schedgen.cmo asmcomp/scheduling.cmo asmcomp/branch_relaxation_intf.cmo asmcomp/branch_relaxation.cmo asmcomp/emitaux.cmo asmcomp/emit.cmo asmcomp/asmgen.cmo asmcomp/asmlink.cmo asmcomp/asmlibrarian.cmo asmcomp/asmpackager.cmo driver/opterrors.cmo driver/optcompile.cmo
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/optmain.mli
boot/ocamlrun boot/ocamlc -nostdlib -I boot -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/optmain.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -o ocamlopt \
compilerlibs/ocamlcommon.cma compilerlibs/ocamloptcomp.cma driver/optmain.cmo
/Library/Developer/CommandLineTools/usr/bin/make libraryopt
cd stdlib; /Library/Developer/CommandLineTools/usr/bin/make allopt
/Library/Developer/CommandLineTools/usr/bin/make stdlib.cmxa std_exit.cmx
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.cmx` -c camlinternalFormatBasics.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.cmx` -c pervasives.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.cmx` -c array.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.cmx` -c list.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.cmx` -c char.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.cmx` -c bytes.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.cmx` -c string.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.cmx` -c sys.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.cmx` -c sort.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.cmx` -c marshal.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.cmx` -c int32.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.cmx` -c obj.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.cmx` -c int64.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.cmx` -c nativeint.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.cmx` -c lexing.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.cmx` -c parsing.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.cmx` -c set.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.cmx` -c map.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.cmx` -c stack.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.cmx` -c queue.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.cmx` -c camlinternalLazy.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.cmx` -c lazy.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.cmx` -c stream.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.cmx` -c buffer.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.cmx` -c camlinternalFormat.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.cmx` -c printf.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.cmx` -c arg.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.cmx` -c printexc.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.cmx` -c gc.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.cmx` -c digest.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.cmx` -c random.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.cmx` -c hashtbl.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.cmx` -c format.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.cmx` -c scanf.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.cmx` -c callback.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.cmx` -c camlinternalOO.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.cmx` -c oo.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.cmx` -c camlinternalMod.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.cmx` -c genlex.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.cmx` -c weak.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.cmx` -c filename.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.cmx` -c complex.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.cmx` -c arrayLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.cmx` -c listLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.cmx` -c bytesLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.cmx` -c stringLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.cmx` -c moreLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.cmx` -c stdLabels.ml
../boot/ocamlrun ../ocamlopt -a -o stdlib.cmxa camlinternalFormatBasics.cmx pervasives.cmx array.cmx list.cmx char.cmx bytes.cmx string.cmx sys.cmx sort.cmx marshal.cmx obj.cmx int32.cmx int64.cmx nativeint.cmx lexing.cmx parsing.cmx set.cmx map.cmx stack.cmx queue.cmx camlinternalLazy.cmx lazy.cmx stream.cmx buffer.cmx camlinternalFormat.cmx printf.cmx arg.cmx printexc.cmx gc.cmx digest.cmx random.cmx hashtbl.cmx format.cmx scanf.cmx callback.cmx camlinternalOO.cmx oo.cmx camlinternalMod.cmx genlex.cmx weak.cmx filename.cmx complex.cmx arrayLabels.cmx listLabels.cmx bytesLabels.cmx stringLabels.cmx moreLabels.cmx stdLabels.cmx
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags std_exit.cmx` -c std_exit.ml
/Library/Developer/CommandLineTools/usr/bin/make allopt-prof
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormatBasics.p.cmx` -p -c -o camlinternalFormatBasics.p.cmx camlinternalFormatBasics.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags pervasives.p.cmx` -p -c -o pervasives.p.cmx pervasives.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags array.p.cmx` -p -c -o array.p.cmx array.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags list.p.cmx` -p -c -o list.p.cmx list.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags char.p.cmx` -p -c -o char.p.cmx char.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytes.p.cmx` -p -c -o bytes.p.cmx bytes.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags string.p.cmx` -p -c -o string.p.cmx string.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sys.p.cmx` -p -c -o sys.p.cmx sys.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags sort.p.cmx` -p -c -o sort.p.cmx sort.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags marshal.p.cmx` -p -c -o marshal.p.cmx marshal.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int32.p.cmx` -p -c -o int32.p.cmx int32.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags obj.p.cmx` -p -c -o obj.p.cmx obj.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags int64.p.cmx` -p -c -o int64.p.cmx int64.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags nativeint.p.cmx` -p -c -o nativeint.p.cmx nativeint.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lexing.p.cmx` -p -c -o lexing.p.cmx lexing.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags parsing.p.cmx` -p -c -o parsing.p.cmx parsing.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags set.p.cmx` -p -c -o set.p.cmx set.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags map.p.cmx` -p -c -o map.p.cmx map.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stack.p.cmx` -p -c -o stack.p.cmx stack.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags queue.p.cmx` -p -c -o queue.p.cmx queue.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalLazy.p.cmx` -p -c -o camlinternalLazy.p.cmx camlinternalLazy.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags lazy.p.cmx` -p -c -o lazy.p.cmx lazy.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stream.p.cmx` -p -c -o stream.p.cmx stream.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags buffer.p.cmx` -p -c -o buffer.p.cmx buffer.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalFormat.p.cmx` -p -c -o camlinternalFormat.p.cmx camlinternalFormat.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printf.p.cmx` -p -c -o printf.p.cmx printf.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arg.p.cmx` -p -c -o arg.p.cmx arg.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags printexc.p.cmx` -p -c -o printexc.p.cmx printexc.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags gc.p.cmx` -p -c -o gc.p.cmx gc.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags digest.p.cmx` -p -c -o digest.p.cmx digest.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags random.p.cmx` -p -c -o random.p.cmx random.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags hashtbl.p.cmx` -p -c -o hashtbl.p.cmx hashtbl.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags format.p.cmx` -p -c -o format.p.cmx format.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags scanf.p.cmx` -p -c -o scanf.p.cmx scanf.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags callback.p.cmx` -p -c -o callback.p.cmx callback.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalOO.p.cmx` -p -c -o camlinternalOO.p.cmx camlinternalOO.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags oo.p.cmx` -p -c -o oo.p.cmx oo.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags camlinternalMod.p.cmx` -p -c -o camlinternalMod.p.cmx camlinternalMod.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags genlex.p.cmx` -p -c -o genlex.p.cmx genlex.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags weak.p.cmx` -p -c -o weak.p.cmx weak.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags filename.p.cmx` -p -c -o filename.p.cmx filename.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags complex.p.cmx` -p -c -o complex.p.cmx complex.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags arrayLabels.p.cmx` -p -c -o arrayLabels.p.cmx arrayLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags listLabels.p.cmx` -p -c -o listLabels.p.cmx listLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags bytesLabels.p.cmx` -p -c -o bytesLabels.p.cmx bytesLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stringLabels.p.cmx` -p -c -o stringLabels.p.cmx stringLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags moreLabels.p.cmx` -p -c -o moreLabels.p.cmx moreLabels.ml
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags stdLabels.p.cmx` -p -c -o stdLabels.p.cmx stdLabels.ml
../boot/ocamlrun ../ocamlopt -a -o stdlib.p.cmxa camlinternalFormatBasics.p.cmx pervasives.p.cmx array.p.cmx list.p.cmx char.p.cmx bytes.p.cmx string.p.cmx sys.p.cmx sort.p.cmx marshal.p.cmx obj.p.cmx int32.p.cmx int64.p.cmx nativeint.p.cmx lexing.p.cmx parsing.p.cmx set.p.cmx map.p.cmx stack.p.cmx queue.p.cmx camlinternalLazy.p.cmx lazy.p.cmx stream.p.cmx buffer.p.cmx camlinternalFormat.p.cmx printf.p.cmx arg.p.cmx printexc.p.cmx gc.p.cmx digest.p.cmx random.p.cmx hashtbl.p.cmx format.p.cmx scanf.p.cmx callback.p.cmx camlinternalOO.p.cmx oo.p.cmx camlinternalMod.p.cmx genlex.p.cmx weak.p.cmx filename.p.cmx complex.p.cmx arrayLabels.p.cmx listLabels.p.cmx bytesLabels.p.cmx stringLabels.p.cmx moreLabels.p.cmx stdLabels.p.cmx
../boot/ocamlrun ../ocamlopt -strict-sequence -w +33..39 -g -warn-error A -bin-annot -nostdlib -safe-string `./Compflags std_exit.p.cmx` -p -c -o std_exit.p.cmx std_exit.ml
rm -f std_exit.p.cmi
/Library/Developer/CommandLineTools/usr/bin/make ocamlc.opt
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/misc.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/tbl.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/config.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/clflags.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/terminfo.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/ccomp.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/warnings.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c utils/consistbl.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/location.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/longident.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/docstrings.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_helper.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/syntaxerr.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parser.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/lexer.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/parse.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/printast.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/pprintast.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c parsing/ast_mapper.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ident.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/path.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/primitive.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/types.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/btype.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/oprint.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/subst.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/predef.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/datarepr.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmi_format.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/env.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtree.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyped.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/ctype.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/printtyp.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includeclass.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/mtype.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/envaux.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includecore.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeIter.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedtreeMap.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/cmt_format.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/includemod.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typetexp.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/parmatch.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/stypes.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typecore.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typedecl.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typeclass.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c typing/typemod.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/lambda.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printlambda.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/typeopt.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/switch.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/matching.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translobj.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translcore.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translclass.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/translmod.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/simplif.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/runtimedef.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/pparse.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main_args.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compenv.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compmisc.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -a -linkall -o compilerlibs/ocamlcommon.cmxa utils/misc.cmx utils/tbl.cmx utils/config.cmx utils/clflags.cmx utils/terminfo.cmx utils/ccomp.cmx utils/warnings.cmx utils/consistbl.cmx parsing/location.cmx parsing/longident.cmx parsing/docstrings.cmx parsing/ast_helper.cmx parsing/syntaxerr.cmx parsing/parser.cmx parsing/lexer.cmx parsing/parse.cmx parsing/printast.cmx parsing/pprintast.cmx parsing/ast_mapper.cmx typing/ident.cmx typing/path.cmx typing/primitive.cmx typing/types.cmx typing/btype.cmx typing/oprint.cmx typing/subst.cmx typing/predef.cmx typing/datarepr.cmx typing/cmi_format.cmx typing/env.cmx typing/typedtree.cmx typing/printtyped.cmx typing/ctype.cmx typing/printtyp.cmx typing/includeclass.cmx typing/mtype.cmx typing/envaux.cmx typing/includecore.cmx typing/typedtreeIter.cmx typing/typedtreeMap.cmx typing/cmt_format.cmx typing/includemod.cmx typing/typetexp.cmx typing/parmatch.cmx typing/stypes.cmx typing/typecore.cmx typing/typedecl.cmx typing/typeclass.cmx typing/typemod.cmx bytecomp/lambda.cmx bytecomp/printlambda.cmx bytecomp/typeopt.cmx bytecomp/switch.cmx bytecomp/matching.cmx bytecomp/translobj.cmx bytecomp/translcore.cmx bytecomp/translclass.cmx bytecomp/translmod.cmx bytecomp/simplif.cmx bytecomp/runtimedef.cmx driver/pparse.cmx driver/main_args.cmx driver/compenv.cmx driver/compmisc.cmx
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/meta.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/instruct.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytegen.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/printinstr.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/opcodes.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/emitcode.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytesections.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/dll.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/symtable.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelink.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytelibrarian.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c bytecomp/bytepackager.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/errors.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/compile.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -a -o compilerlibs/ocamlbytecomp.cmxa bytecomp/meta.cmx bytecomp/instruct.cmx bytecomp/bytegen.cmx bytecomp/printinstr.cmx bytecomp/opcodes.cmx bytecomp/emitcode.cmx bytecomp/bytesections.cmx bytecomp/dll.cmx bytecomp/symtable.cmx bytecomp/bytelink.cmx bytecomp/bytelibrarian.cmx bytecomp/bytepackager.cmx driver/errors.cmx driver/compile.cmx
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -strict-sequence -w +33..39+48+50 -warn-error A -bin-annot -safe-string -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c driver/main.ml
boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -I otherlibs/dynlink -ccopt "" -o ocamlc.opt \
compilerlibs/ocamlcommon.cmxa compilerlibs/ocamlbytecomp.cmxa \
driver/main.cmx -cclib "-lpthread"
/Library/Developer/CommandLineTools/usr/bin/make otherlibraries ocamldoc \
ocamlbuild.byte
cd yacc; /Library/Developer/CommandLineTools/usr/bin/make all
make[3]: Nothing to be done for `all'.
cd lex; /Library/Developer/CommandLineTools/usr/bin/make all
make[3]: Nothing to be done for `all'.
cd tools; /Library/Developer/CommandLineTools/usr/bin/make all
make[3]: Nothing to be done for `all'.
for i in unix str num dynlink bigarray systhreads; do \
(cd otherlibs/$i; /Library/Developer/CommandLineTools/usr/bin/make all) || exit $?; \
done
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c accept.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c access.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c addrofstr.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c alarm.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c bind.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c chdir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c chmod.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c chown.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c chroot.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c close.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c closedir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c connect.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c cst2constr.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c cstringv.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c dup.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c dup2.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c envir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c errmsg.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c execv.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c execve.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c execvp.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c exit.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c fchmod.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c fchown.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c fcntl.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c fork.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c ftruncate.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getaddrinfo.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getcwd.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getegid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c geteuid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getgid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getgr.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getgroups.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c gethost.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c gethostname.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getlogin.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getnameinfo.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getpeername.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getpid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getppid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getproto.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getpw.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c gettimeofday.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getserv.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getsockname.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c getuid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c gmtime.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c initgroups.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c isatty.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c itimer.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c kill.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c link.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c listen.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c lockf.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c lseek.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c mkdir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c mkfifo.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c nice.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c open.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c opendir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c pipe.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c putenv.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c read.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c readdir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c readlink.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c rename.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c rewinddir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c rmdir.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c select.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c sendrecv.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c setgid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c setgroups.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c setsid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c setuid.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c shutdown.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c signals.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c sleep.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c socket.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c socketaddr.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c socketpair.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c sockopt.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c stat.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c strofaddr.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c symlink.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c termios.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c time.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c times.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c truncate.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c umask.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c unixsupport.c
unixsupport.c:264:20: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (errconstr == Val_int(-1)) {
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c unlink.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c utimes.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c wait.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c write.c
../../boot/ocamlrun ../../tools/ocamlmklib -oc unix accept.o access.o addrofstr.o alarm.o bind.o chdir.o chmod.o chown.o chroot.o close.o closedir.o connect.o cst2constr.o cstringv.o dup.o dup2.o envir.o errmsg.o execv.o execve.o execvp.o exit.o fchmod.o fchown.o fcntl.o fork.o ftruncate.o getaddrinfo.o getcwd.o getegid.o geteuid.o getgid.o getgr.o getgroups.o gethost.o gethostname.o getlogin.o getnameinfo.o getpeername.o getpid.o getppid.o getproto.o getpw.o gettimeofday.o getserv.o getsockname.o getuid.o gmtime.o initgroups.o isatty.o itimer.o kill.o link.o listen.o lockf.o lseek.o mkdir.o mkfifo.o nice.o open.o opendir.o pipe.o putenv.o read.o readdir.o readlink.o rename.o rewinddir.o rmdir.o select.o sendrecv.o setgid.o setgroups.o setsid.o setuid.o shutdown.o signals.o sleep.o socket.o socketaddr.o socketpair.o sockopt.o stat.o strofaddr.o symlink.o termios.o time.o times.o truncate.o umask.o unixsupport.o unlink.o utimes.o wait.o write.o
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: ./libunix.a(socketaddr.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: ./libunix.a(socketaddr.o) has no symbols
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -nolabels unix.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -nolabels unix.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -nolabels unixLabels.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -nolabels unixLabels.ml
../../boot/ocamlrun ../../tools/ocamlmklib -o unix -oc unix -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
unix.cmo unixLabels.cmo
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -c strstubs.c
strstubs.c:362:27: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(res, i * 2) = Val_int(-1);
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
strstubs.c:363:31: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
Field(res, i * 2 + 1) = Val_int(-1);
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
2 warnings generated.
../../boot/ocamlrun ../../tools/ocamlmklib -oc camlstr strstubs.o
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string str.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string str.ml
../../boot/ocamlrun ../../tools/ocamlmklib -o str -oc camlstr -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
str.cmo
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -DBNG_ARCH_amd64 -DBNG_ASM_LEVEL=1 -c bng.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -DBNG_ARCH_amd64 -DBNG_ASM_LEVEL=1 -c nat_stubs.c
nat_stubs.c:295:23: warning: shifting a negative signed value is undefined [-Wshift-negative-value]
if (d1 < d2) return Val_int(-1);
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:75:20: note: expanded from macro 'Val_int'
#define Val_int(x) Val_long(x)
^~~~~~~~~~~
../../byterun/caml/mlvalues.h:71:39: note: expanded from macro 'Val_long'
#define Val_long(x) (((intnat)(x) << 1) + 1)
~~~~~~~~~~~ ^
1 warning generated.
../../boot/ocamlrun ../../tools/ocamlmklib -oc nums bng.o nat_stubs.o
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string int_misc.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string int_misc.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string nat.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string nat.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string big_int.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string big_int.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string arith_flags.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string arith_flags.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string ratio.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string ratio.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string num.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string num.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string arith_status.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string arith_status.ml
../../boot/ocamlrun ../../tools/ocamlmklib -o nums -oc nums -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
int_misc.cmo nat.cmo big_int.cmo arith_flags.cmo ratio.cmo num.cmo arith_status.cmo
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -pack -o dynlinkaux.cmo ../../utils/misc.cmo ../../utils/config.cmo ../../utils/clflags.cmo ../../utils/tbl.cmo ../../utils/consistbl.cmo ../../utils/terminfo.cmo ../../utils/warnings.cmo ../../parsing/asttypes.cmi ../../parsing/location.cmo ../../parsing/longident.cmo ../../parsing/docstrings.cmo ../../parsing/ast_helper.cmo ../../parsing/ast_mapper.cmo ../../typing/ident.cmo ../../typing/path.cmo ../../typing/primitive.cmo ../../typing/types.cmo ../../typing/btype.cmo ../../typing/subst.cmo ../../typing/predef.cmo ../../typing/datarepr.cmo ../../typing/cmi_format.cmo ../../typing/env.cmo ../../bytecomp/lambda.cmo ../../bytecomp/instruct.cmo ../../bytecomp/cmo_format.cmi ../../bytecomp/opcodes.cmo ../../bytecomp/runtimedef.cmo ../../bytecomp/bytesections.cmo ../../bytecomp/dll.cmo ../../bytecomp/meta.cmo ../../bytecomp/symtable.cmo
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp dynlink.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp dynlink.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp -ccopt "" -a -o dynlink.cma \
dynlinkaux.cmo dynlink.cmo
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../../stdlib -I ../../utils -I ../../typing -I ../../bytecomp -I ../../asmcomp extract_crc.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -o extract_crc dynlink.cma extract_crc.cmo
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -I../unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE -c bigarray_stubs.c
cc -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -I../../byterun -O -I../unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE -c mmap_unix.c
../../boot/ocamlrun ../../tools/ocamlmklib -oc bigarray bigarray_stubs.o mmap_unix.o
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../unix bigarray.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -c -w +33..39 -warn-error A -bin-annot -g -safe-string -I ../unix bigarray.ml
../../boot/ocamlrun ../../tools/ocamlmklib -o bigarray -oc bigarray -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib' -linkall \
bigarray.cmo
cc -I../../byterun -O -Wall -D_FILE_OFFSET_BITS=64 -D_REENTRANT -O \
-c st_stubs.c
mv st_stubs.o st_stubs_b.o
../../boot/ocamlrun ../../tools/ocamlmklib -o threads st_stubs_b.o -lpthread
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string thread.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string mutex.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string condition.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string event.ml
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.mli
../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix -c -w +33..39 -warn-error A -g -bin-annot -safe-string threadUnix.ml
../../boot/ocamlrun ../../tools/ocamlmklib -ocamlc '../../boot/ocamlrun ../../ocamlc -nostdlib -I ../../stdlib -I ../../otherlibs/unix' -o threads thread.cmo mutex.cmo condition.cmo event.cmo threadUnix.cmo \
-cclib -lunix -cclib -lpthread
cd ocamldoc && /Library/Developer/CommandLineTools/usr/bin/make all
/Library/Developer/CommandLineTools/usr/bin/make exe
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_config.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_config.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_messages.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_types.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_global.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_global.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_types.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_misc.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_misc.ml
../boot/ocamlyacc -v odoc_text_parser.mly
5 shift/reduce conflicts.
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_text_parser.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_text_parser.ml
../boot/ocamlrun ../boot/ocamllex odoc_text_lexer.mll
250 states, 2439 transitions, table size 11256 bytes
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_text_lexer.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_text.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_text.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_name.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_name.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_parameter.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_value.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_type.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_extension.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_exception.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_class.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_module.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_print.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_print.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_str.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_str.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_comments_global.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_comments_global.ml
../boot/ocamlyacc -v odoc_parser.mly
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_parser.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_parser.ml
../boot/ocamlrun ../boot/ocamllex odoc_lexer.mll
50 states, 614 transitions, table size 2756 bytes
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_lexer.ml
../boot/ocamlrun ../boot/ocamllex odoc_see_lexer.mll
20 states, 264 transitions, table size 1176 bytes
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_see_lexer.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_env.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_env.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_merge.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_merge.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_sig.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_sig.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_ast.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_ast.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_control.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_inherit.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_search.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_search.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_scan.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_cross.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_cross.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_comments.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_comments.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_dep.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_analyse.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_analyse.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_info.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_info.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_dag2html.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_dag2html.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_to_text.ml
../boot/ocamlrun ../boot/ocamllex odoc_ocamlhtml.mll
111 states, 2871 transitions, table size 12150 bytes
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_ocamlhtml.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_html.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_man.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_latex_style.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_latex.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_texi.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_dot.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_gen.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_gen.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_args.mli
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_args.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -o ocamldoc -linkall unix.cma str.cma dynlink.cma \
../compilerlibs/ocamlcommon.cma \
-I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib ../tools/depend.cmo odoc_config.cmo odoc_messages.cmo odoc_global.cmo odoc_types.cmo odoc_misc.cmo odoc_text_parser.cmo odoc_text_lexer.cmo odoc_text.cmo odoc_name.cmo odoc_parameter.cmo odoc_value.cmo odoc_type.cmo odoc_extension.cmo odoc_exception.cmo odoc_class.cmo odoc_module.cmo odoc_print.cmo odoc_str.cmo odoc_comments_global.cmo odoc_parser.cmo odoc_lexer.cmo odoc_see_lexer.cmo odoc_env.cmo odoc_merge.cmo odoc_sig.cmo odoc_ast.cmo odoc_control.cmo odoc_inherit.cmo odoc_search.cmo odoc_scan.cmo odoc_cross.cmo odoc_comments.cmo odoc_dep.cmo odoc_analyse.cmo odoc_info.cmo odoc_dag2html.cmo odoc_to_text.cmo odoc_ocamlhtml.cmo odoc_html.cmo odoc_man.cmo odoc_latex_style.cmo odoc_latex.cmo odoc_texi.cmo odoc_dot.cmo odoc_gen.cmo odoc_args.cmo odoc.cmo
/Library/Developer/CommandLineTools/usr/bin/make lib
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -a -o odoc_info.cma -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -nostdlib ../tools/depend.cmo \
odoc_config.cmo odoc_messages.cmo odoc_global.cmo odoc_types.cmo odoc_misc.cmo odoc_text_parser.cmo odoc_text_lexer.cmo odoc_text.cmo odoc_name.cmo odoc_parameter.cmo odoc_value.cmo odoc_type.cmo odoc_extension.cmo odoc_exception.cmo odoc_class.cmo odoc_module.cmo odoc_print.cmo odoc_str.cmo odoc_comments_global.cmo odoc_parser.cmo odoc_lexer.cmo odoc_see_lexer.cmo odoc_env.cmo odoc_merge.cmo odoc_sig.cmo odoc_ast.cmo odoc_control.cmo odoc_inherit.cmo odoc_search.cmo odoc_scan.cmo odoc_cross.cmo odoc_comments.cmo odoc_dep.cmo odoc_analyse.cmo odoc_info.cmo
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c odoc_test.ml
/Library/Developer/CommandLineTools/usr/bin/make generators
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c generators/odoc_todo.ml
../boot/ocamlrun ../ocamlc -nostdlib -I ../stdlib -pp './remove_DEBUG' -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph -warn-error A -safe-string -c generators/odoc_literate.ml
/Library/Developer/CommandLineTools/usr/bin/make manpages
mkdir -p stdlib_man
sh ./runocamldoc false -man -d stdlib_man -I ../parsing -I ../utils -I ../typing -I ../driver -I ../bytecomp -I ../tools -I ../toplevel/ -I ../stdlib -I ../otherlibs/str -I ../otherlibs/dynlink -I ../otherlibs/unix -I ../otherlibs/num -I ../otherlibs/graph \
-t "OCaml library" -man-mini \
../stdlib/*.mli ../parsing/*.mli ../otherlibs/unix/unix.mli ../otherlibs/str/str.mli ../otherlibs/bigarray/bigarray.mli ../otherlibs/num/num.mli
Fatal error: exception Invalid_argument("inet_addr_of_string not implemented")
make[4]: *** [stdlib_man/Pervasives.3o] Error 2
make[3]: *** [all] Error 2
make[2]: *** [ocamldoc] Error 2
make[1]: *** [opt.opt] Error 2
make: *** [world.opt] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment