caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* Make opt: The constructor Ccheckbound expects 1 argument(s) in selection.ml line 109
@ 2007-07-21 20:40 Steve Wagner
  2007-07-24 17:10 ` [Caml-list] " Steve Wagner
  0 siblings, 1 reply; 3+ messages in thread
From: Steve Wagner @ 2007-07-21 20:40 UTC (permalink / raw)
  To: caml-list

Hi, ive try to compile Ocaml 3.10(tar archive) and 3.11(cvs trunk) on my
arm liddel endian NSLU2. I am using Debian SID(ARM LE) Gcc 4.1.1 and
Glibc 2.6. Ocaml 3.09 compiles without any error.

make world compiles without errors but on make opt ive get the following
error:

---------------------------------------
ln -s arm/selection.ml asmcomp/selection.ml
boot/ocamlrun boot/ocamlc -nostdlib -I boot -warn-error A -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 -warn-error A -I utils -I
parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c
asmcomp/selection.ml
File "asmcomp/selection.ml", line 109, characters 4-15:
The constructor Ccheckbound expects 1 argument(s),
but is here applied to 0 argument(s)
make: *** [asmcomp/selection.cmo] Error 2
---------------------------------------

Dose anybody know how to fix this?

Steve


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Caml-list] Make opt: The constructor Ccheckbound expects 1 argument(s) in selection.ml line 109
  2007-07-21 20:40 Make opt: The constructor Ccheckbound expects 1 argument(s) in selection.ml line 109 Steve Wagner
@ 2007-07-24 17:10 ` Steve Wagner
  2007-07-25  9:00   ` Nicolas Pouillard
  0 siblings, 1 reply; 3+ messages in thread
From: Steve Wagner @ 2007-07-24 17:10 UTC (permalink / raw)
  To: caml-list

Christoph Bauer helped me to solve this issue. Thx Christoph.

After simply replace `Ccheckbound' by `Ccheckbound _' in
asmcomp/selection.ml line 109 make world.opt compiles without errors.

I dont know why this happen only on arm systems, but if you what to test
something i am here to test it :-)

Steve

Steve Wagner schrieb:
> Hi, ive try to compile Ocaml 3.10(tar archive) and 3.11(cvs trunk) on my
> arm liddel endian NSLU2. I am using Debian SID(ARM LE) Gcc 4.1.1 and
> Glibc 2.6. Ocaml 3.09 compiles without any error.
> 
> make world compiles without errors but on make opt ive get the following
> error:
> 
> ---------------------------------------
> ln -s arm/selection.ml asmcomp/selection.ml
> boot/ocamlrun boot/ocamlc -nostdlib -I boot -warn-error A -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 -warn-error A -I utils -I
> parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c
> asmcomp/selection.ml
> File "asmcomp/selection.ml", line 109, characters 4-15:
> The constructor Ccheckbound expects 1 argument(s),
> but is here applied to 0 argument(s)
> make: *** [asmcomp/selection.cmo] Error 2
> ---------------------------------------
> 
> Dose anybody know how to fix this?
> 
> Steve
> 
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> 
> From - Sun


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Caml-list] Make opt: The constructor Ccheckbound expects 1 argument(s) in selection.ml line 109
  2007-07-24 17:10 ` [Caml-list] " Steve Wagner
@ 2007-07-25  9:00   ` Nicolas Pouillard
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Pouillard @ 2007-07-25  9:00 UTC (permalink / raw)
  To: Steve Wagner; +Cc: caml-list

On 7/24/07, Steve Wagner <lists@lanwin.de> wrote:
> Christoph Bauer helped me to solve this issue. Thx Christoph.
>
> After simply replace `Ccheckbound' by `Ccheckbound _' in
> asmcomp/selection.ml line 109 make world.opt compiles without errors.
>
> I dont know why this happen only on arm systems, but if you what to test
> something i am here to test it :-)

This happens since this part is architecture dependent. Please, submit
a bug to our bug tracker in order to reminds us to fix it.

>
> Steve
>
> Steve Wagner schrieb:
> > Hi, ive try to compile Ocaml 3.10(tar archive) and 3.11(cvs trunk) on my
> > arm liddel endian NSLU2. I am using Debian SID(ARM LE) Gcc 4.1.1 and
> > Glibc 2.6. Ocaml 3.09 compiles without any error.
> >
> > make world compiles without errors but on make opt ive get the following
> > error:
> >
> > ---------------------------------------
> > ln -s arm/selection.ml asmcomp/selection.ml
> > boot/ocamlrun boot/ocamlc -nostdlib -I boot -warn-error A -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 -warn-error A -I utils -I
> > parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel -c
> > asmcomp/selection.ml
> > File "asmcomp/selection.ml", line 109, characters 4-15:
> > The constructor Ccheckbound expects 1 argument(s),
> > but is here applied to 0 argument(s)
> > make: *** [asmcomp/selection.cmo] Error 2
> > ---------------------------------------
> >
> > Dose anybody know how to fix this?
> >


-- 
Nicolas Pouillard


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-07-25  9:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-21 20:40 Make opt: The constructor Ccheckbound expects 1 argument(s) in selection.ml line 109 Steve Wagner
2007-07-24 17:10 ` [Caml-list] " Steve Wagner
2007-07-25  9:00   ` Nicolas Pouillard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).