caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] ocamlmktop: 3.04 differs from 3.00
@ 2002-07-25 14:06 Francois Thomasset
  2002-07-25 15:09 ` Wolfgang Lux
  0 siblings, 1 reply; 5+ messages in thread
From: Francois Thomasset @ 2002-07-25 14:06 UTC (permalink / raw)
  To: caml-list; +Cc: Francois Thomasset

Hi Camlers
If I try to build my own toplevel, I get an error under 3.04:
ocamlmktop -custom -o mytop nums.cma
/usr/ccs/bin/ld: illegal option -- E
usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
        [-a]            create an absolute file
	...
Error while building custom runtime system

With 3.00 (or 3.01) it does run smoothly:
ocamlmktop-3.00 -custom -o mytop nums.cma
I do get a top level with the BigNums.
What's wrong?

					François Thomasset.
					INRIA (A3)

Francois.Thomasset@inria.fr		Tel: +33 (1) 39-63-54-75
					Fax: +33 (1) 39-63-59-95
INRIA, Rocquencourt, BP 105, 78153 Le Chesnay Cedex, France


-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* Re: [Caml-list] ocamlmktop: 3.04 differs from 3.00
  2002-07-25 14:06 [Caml-list] ocamlmktop: 3.04 differs from 3.00 Francois Thomasset
@ 2002-07-25 15:09 ` Wolfgang Lux
  2002-07-25 15:12   ` Francois Thomasset
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Lux @ 2002-07-25 15:09 UTC (permalink / raw)
  To: Francois Thomasset; +Cc: caml-list

Francois Thomasset wrote:

> If I try to build my own toplevel, I get an error under 3.04:
> ocamlmktop -custom -o mytop nums.cma
> /usr/ccs/bin/ld: illegal option -- E
> usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
>         [-a]            create an absolute file
> 	...
> Error while building custom runtime system

As ld has its platform specific variations it's hard to tell the
error without knowing under which OS this happens. Guessing
from the ld message it is neither Linux nor any BSD variant
(including Mac OS X).

Wolfgang

--
Wolfgang Lux                              Phone: +49-251-83-38263
Institut fuer Wirtschaftinformatik          FAX: +49-251-83-38259
Universitaet Muenster                 Email: wlux@uni-muenster.de
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* Re: [Caml-list] ocamlmktop: 3.04 differs from 3.00
  2002-07-25 15:09 ` Wolfgang Lux
@ 2002-07-25 15:12   ` Francois Thomasset
  2002-07-25 15:27     ` Wolfgang Lux
  2002-07-25 17:43     ` Emmanuel Renieris
  0 siblings, 2 replies; 5+ messages in thread
From: Francois Thomasset @ 2002-07-25 15:12 UTC (permalink / raw)
  To: Wolfgang Lux; +Cc: Francois Thomasset, caml-list

> Francois Thomasset wrote:
> 
> > If I try to build my own toplevel, I get an error under 3.04:
> > ocamlmktop -custom -o mytop nums.cma
> > /usr/ccs/bin/ld: illegal option -- E
> > usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
> >         [-a]            create an absolute file
> > 	...
> > Error while building custom runtime system
> 
> As ld has its platform specific variations it's hard to tell the
> error without knowing under which OS this happens. Guessing
> from the ld message it is neither Linux nor any BSD variant
> (including Mac OS X).
> 
> Wolfgang
> 
> --
> Wolfgang Lux                              Phone: +49-251-83-38263
> Institut fuer Wirtschaftinformatik          FAX: +49-251-83-38259
> Universitaet Muenster                 Email: wlux@uni-muenster.de
> 
Sorry. I am on Solaris SunOS 5.6
F


-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* Re: [Caml-list] ocamlmktop: 3.04 differs from 3.00
  2002-07-25 15:12   ` Francois Thomasset
@ 2002-07-25 15:27     ` Wolfgang Lux
  2002-07-25 17:43     ` Emmanuel Renieris
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Lux @ 2002-07-25 15:27 UTC (permalink / raw)
  To: Francois Thomasset; +Cc: caml-list

Francois Thomasset wrote:

>> Francois Thomasset wrote:
>>
>>> If I try to build my own toplevel, I get an error under 3.04:
>>> ocamlmktop -custom -o mytop nums.cma
>>> /usr/ccs/bin/ld: illegal option -- E
>>> usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
>>>         [-a]            create an absolute file
>>> 	...
>>> Error while building custom runtime system
>>
>> As ld has its platform specific variations it's hard to tell the
>> error without knowing under which OS this happens. Guessing
>> from the ld message it is neither Linux nor any BSD variant
>> (including Mac OS X).
>>
>> Wolfgang
>>
>>
> Sorry. I am on Solaris SunOS 5.6

Hmmm. And what is the output of
"ocamlmktop -custom -o mytop nums.cma -verbose"?

Wolfgang

--
Wolfgang Lux                              Phone: +49-251-83-38263
Institut fuer Wirtschaftinformatik          FAX: +49-251-83-38259
Universitaet Muenster                 Email: wlux@uni-muenster.de
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

* Re: [Caml-list] ocamlmktop: 3.04 differs from 3.00
  2002-07-25 15:12   ` Francois Thomasset
  2002-07-25 15:27     ` Wolfgang Lux
@ 2002-07-25 17:43     ` Emmanuel Renieris
  1 sibling, 0 replies; 5+ messages in thread
From: Emmanuel Renieris @ 2002-07-25 17:43 UTC (permalink / raw)
  To: Francois Thomasset; +Cc: Wolfgang Lux, caml-list

-E is passed to the gnu linker, but not to the Sun linker.
Maybe you installed gcc again on your system, without --with-gnu-ld?
Or maybe you did not run "configure" again in building ocaml for the
sun?  A quick solution would be to say:
    ocamlmktop -cc gcc -custom -o mytop nums.cma
which will pass no arguments to gcc, and therefore no argument to the
linker (add -verbose to see the difference).

Hope this helps,

Manos

On Thu, Jul 25, 2002 at 05:12:37PM +0200, Francois Thomasset wrote:
> > Francois Thomasset wrote:
> > 
> > > If I try to build my own toplevel, I get an error under 3.04:
> > > ocamlmktop -custom -o mytop nums.cma
> > > /usr/ccs/bin/ld: illegal option -- E
> > > usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
> > >         [-a]            create an absolute file
> > > 	...
> > > Error while building custom runtime system
> > 
> > As ld has its platform specific variations it's hard to tell the
> > error without knowing under which OS this happens. Guessing
> > from the ld message it is neither Linux nor any BSD variant
> > (including Mac OS X).
> > 
> > Wolfgang
> > 
> > --
> > Wolfgang Lux                              Phone: +49-251-83-38263
> > Institut fuer Wirtschaftinformatik          FAX: +49-251-83-38259
> > Universitaet Muenster                 Email: wlux@uni-muenster.de
> > 
> Sorry. I am on Solaris SunOS 5.6
> F
> 
> 
> -------------------
> To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


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

end of thread, other threads:[~2002-07-26 21:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-25 14:06 [Caml-list] ocamlmktop: 3.04 differs from 3.00 Francois Thomasset
2002-07-25 15:09 ` Wolfgang Lux
2002-07-25 15:12   ` Francois Thomasset
2002-07-25 15:27     ` Wolfgang Lux
2002-07-25 17:43     ` Emmanuel Renieris

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).