diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2004-11-29 14:53:32 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2004-11-29 14:53:32 +0000 |
commit | 35de2ce5296df962ef33be4802adb82d1f41c363 (patch) | |
tree | 7d492f8d1d3f596e4db11af755c74168dfe325d8 | |
parent | 454835e868a38253f64177cf07819857f046500c (diff) |
mise au carre des warnings XYZ
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6714 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | otherlibs/bigarray/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/dbm/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/dynlink/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/graph/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/num/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/str/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/systhreads/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/threads/Makefile | 2 | ||||
-rw-r--r-- | otherlibs/unix/Makefile | 2 | ||||
-rw-r--r-- | stdlib/Makefile | 4 | ||||
-rw-r--r-- | stdlib/sys.ml | 2 |
12 files changed, 13 insertions, 13 deletions
@@ -19,7 +19,7 @@ include stdlib/StdlibModules CAMLC=boot/ocamlrun boot/ocamlc -nostdlib -I boot CAMLOPT=boot/ocamlrun ./ocamlopt -nostdlib -I stdlib -COMPFLAGS=-warn-error Axy -w Y $(INCLUDES) +COMPFLAGS=-warn-error A $(INCLUDES) LINKFLAGS= CAMLYACC=boot/ocamlyacc diff --git a/otherlibs/bigarray/Makefile b/otherlibs/bigarray/Makefile index 3c5cba0bf..715428fca 100644 --- a/otherlibs/bigarray/Makefile +++ b/otherlibs/bigarray/Makefile @@ -20,7 +20,7 @@ CFLAGS=-I../../byterun -g -O $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) CAMLC=../../ocamlcomp.sh -I ../unix CAMLOPT=../../ocamlcompopt.sh -I ../unix MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Ay -w Y +COMPFLAGS=-warn-error A C_OBJS=bigarray_stubs.o mmap_unix.o diff --git a/otherlibs/dbm/Makefile b/otherlibs/dbm/Makefile index 911472c10..394586416 100644 --- a/otherlibs/dbm/Makefile +++ b/otherlibs/dbm/Makefile @@ -22,7 +22,7 @@ CC=$(BYTECC) -g CAMLC=../../ocamlcomp.sh CAMLOPT=../../ocamlcompopt.sh MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Ay -w Y +COMPFLAGS=-warn-error A CFLAGS=$(DBM_INCLUDES) -I../../byterun -O $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) COBJS=cldbm.o diff --git a/otherlibs/dynlink/Makefile b/otherlibs/dynlink/Makefile index be4266cbe..d84ddc8de 100644 --- a/otherlibs/dynlink/Makefile +++ b/otherlibs/dynlink/Makefile @@ -19,7 +19,7 @@ include ../../config/Makefile CAMLC=../../boot/ocamlrun ../../ocamlc INCLUDES=-I ../../utils -I ../../typing -I ../../bytecomp -COMPFLAGS=-warn-error Ay -w Y -I ../../stdlib $(INCLUDES) +COMPFLAGS=-warn-error A -I ../../stdlib $(INCLUDES) OBJS=dynlink.cmo COMPILEROBJS=misc.cmo config.cmo tbl.cmo clflags.cmo consistbl.cmo \ diff --git a/otherlibs/graph/Makefile b/otherlibs/graph/Makefile index 3acd0684a..a35e1d3ba 100644 --- a/otherlibs/graph/Makefile +++ b/otherlibs/graph/Makefile @@ -22,7 +22,7 @@ CFLAGS=-I../../byterun $(X11_INCLUDES) -O $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) CAMLC=../../ocamlcomp.sh CAMLOPT=../../ocamlcompopt.sh MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Ay -w Y +COMPFLAGS=-warn-error A OBJS=open.o draw.o fill.o color.o text.o \ image.o make_img.o dump_img.o point_col.o sound.o events.o \ diff --git a/otherlibs/num/Makefile b/otherlibs/num/Makefile index 981cfd2eb..080ffdeb7 100644 --- a/otherlibs/num/Makefile +++ b/otherlibs/num/Makefile @@ -24,7 +24,7 @@ CFLAGS=-O -I../../byterun $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) \ CAMLC=../../ocamlcomp.sh CAMLOPT=../../ocamlcompopt.sh MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-w sY -warn-error Ay +COMPFLAGS=-w s -warn-error A CAMLOBJS=int_misc.cmo nat.cmo big_int.cmo arith_flags.cmo \ ratio.cmo num.cmo arith_status.cmo diff --git a/otherlibs/str/Makefile b/otherlibs/str/Makefile index 391760a67..97123ddaa 100644 --- a/otherlibs/str/Makefile +++ b/otherlibs/str/Makefile @@ -22,7 +22,7 @@ CC=$(BYTECC) CFLAGS=-O -I../../byterun $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) CAMLC=../../ocamlcomp.sh CAMLOPT=../../ocamlcompopt.sh -COMPFLAGS=-warn-error Ay -w Y +COMPFLAGS=-warn-error A COBJS=strstubs.o MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib diff --git a/otherlibs/systhreads/Makefile b/otherlibs/systhreads/Makefile index 639022607..1b7eda46f 100644 --- a/otherlibs/systhreads/Makefile +++ b/otherlibs/systhreads/Makefile @@ -18,7 +18,7 @@ include ../../config/Makefile CAMLC=../../ocamlcomp.sh -I ../unix CAMLOPT=../../ocamlcompopt.sh -I ../unix MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Ay -w Y +COMPFLAGS=-warn-error A BYTECODE_C_OBJS=posix_b.o NATIVECODE_C_OBJS=posix_n.o diff --git a/otherlibs/threads/Makefile b/otherlibs/threads/Makefile index 32102ff91..00961a184 100644 --- a/otherlibs/threads/Makefile +++ b/otherlibs/threads/Makefile @@ -19,7 +19,7 @@ CC=$(BYTECC) CFLAGS=-I../../byterun -O $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) -g CAMLC=../../ocamlcomp.sh -I ../unix MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Axy -w Y +COMPFLAGS=-warn-error A C_OBJS=scheduler.o diff --git a/otherlibs/unix/Makefile b/otherlibs/unix/Makefile index bc7c17fcd..da701d5dc 100644 --- a/otherlibs/unix/Makefile +++ b/otherlibs/unix/Makefile @@ -23,7 +23,7 @@ CFLAGS=-I../../byterun -O $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) CAMLC=../../ocamlcomp.sh CAMLOPT=../../ocamlcompopt.sh MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib -COMPFLAGS=-warn-error Axy -w Y +COMPFLAGS=-warn-error A OBJS=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 \ diff --git a/stdlib/Makefile b/stdlib/Makefile index 641a34f14..8817d5690 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -18,10 +18,10 @@ include ../config/Makefile RUNTIME=../boot/ocamlrun COMPILER=../ocamlc CAMLC=$(RUNTIME) $(COMPILER) -COMPFLAGS=-g -warn-error Axy -w Y -nostdlib +COMPFLAGS=-g -warn-error A -nostdlib OPTCOMPILER=../ocamlopt CAMLOPT=$(RUNTIME) $(OPTCOMPILER) -OPTCOMPFLAGS=-warn-error Axy -nostdlib +OPTCOMPFLAGS=-warn-error A -nostdlib CAMLDEP=../boot/ocamlrun ../tools/ocamldep OBJS=pervasives.cmo $(OTHERS) diff --git a/stdlib/sys.ml b/stdlib/sys.ml index 7dcc0a6a3..4381bb441 100644 --- a/stdlib/sys.ml +++ b/stdlib/sys.ml @@ -78,4 +78,4 @@ let catch_break on = (* OCaml version string, must be in the format described in sys.mli. *) -let ocaml_version = "3.09+dev9 (2004-11-29)";; +let ocaml_version = "3.09+dev10 (2004-11-29)";; |