caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Using OCaml with microsofts free C++ compiler?
@ 2002-09-17 18:59 Mark Brady
  2002-09-17 19:23 ` Max Bowsher
  2002-09-18  4:58 ` Jacques Garrigue
  0 siblings, 2 replies; 4+ messages in thread
From: Mark Brady @ 2002-09-17 18:59 UTC (permalink / raw)
  To: caml-list

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 1141 bytes --]

Hello,
Microsoft offer their C++ compiler (non optimised version) for free download (no IDE just the SDK) as part of the Dot Net SDK download.

As this seems to be free for most people and for most uses (even commercial) does anybody know if OCaml will work with it or does it only work with the older VC++ 6.0 compiler (it's the VC++ 7.0 compiler that's available for download)?

Here is the link to the MS SDK:
http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/msdn-files/027/000/976/msdncompositedoc.xml&frame=true

Any replies would be very welcome.
Mark.


_____________________________________________________________
Play the Elvis® Scratch & Win for your chance to instantly win $10,000 Cash
- a 2003 Harley Davidson® Sportster® - 1 of 25,000 CD's - and more!
http://r.lycos.com/r/sagel_mail_scratch_tl/http://win.ipromotions.com/lycos_020801/index.asp?tc=7087 
-------------------
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] 4+ messages in thread

* Re: [Caml-list] Using OCaml with microsofts free C++ compiler?
  2002-09-17 18:59 [Caml-list] Using OCaml with microsofts free C++ compiler? Mark Brady
@ 2002-09-17 19:23 ` Max Bowsher
  2002-09-18  4:58 ` Jacques Garrigue
  1 sibling, 0 replies; 4+ messages in thread
From: Max Bowsher @ 2002-09-17 19:23 UTC (permalink / raw)
  To: kalath, caml-list

Mark Brady wrote:
> Hello,
> Microsoft offer their C++ compiler (non optimised version) for free download
(no IDE just the SDK) as part of the Dot Net SDK
> download.
>
> As this seems to be free for most people and for most uses (even commercial)
does anybody know if OCaml will work with it or does
> it only work with the older VC++ 6.0 compiler (it's the VC++ 7.0 compiler
that's available for download)?
>
> Here is the link to the MS SDK:
>
http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/m
sdn-files/027/000/976/msdncompositedoc.xml&frame=true
>
> Any replies would be very welcome.

You know that as of 3.06, you can compile ocaml for MinGW using Cygwin, so
getting an optimized, native build of ocaml on Windows? There really is no
reason to use Microsoft's compiler. See OCaml's README.win32

Max.

-------------------
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] 4+ messages in thread

* Re: [Caml-list] Using OCaml with microsofts free C++ compiler?
  2002-09-17 18:59 [Caml-list] Using OCaml with microsofts free C++ compiler? Mark Brady
  2002-09-17 19:23 ` Max Bowsher
@ 2002-09-18  4:58 ` Jacques Garrigue
  1 sibling, 0 replies; 4+ messages in thread
From: Jacques Garrigue @ 2002-09-18  4:58 UTC (permalink / raw)
  To: kalath; +Cc: caml-list

From: "Mark Brady" <kalath@lycos.com>

> Microsoft offer their C++ compiler (non optimised version) for free download (no IDE just the SDK) as part of the Dot Net SDK download.
> 
> As this seems to be free for most people and for most uses (even
> commercial) does anybody know if OCaml will work with it or does it
> only work with the older VC++ 6.0 compiler (it's the VC++ 7.0
> compiler that's available for download)?

This works: I could bootstrap ocaml with that.
The only trouble, which was solved by a colleague, is that there is no
lib command included: you must replace it by "link /lib" both in
Makefile.msvc and ocamlopt sources. This means that you cannot use the
ocamlopt from the ocamlwin binary distribution, you would have to
compile it yourself.

Also, the code generated is slower than the professional edition (but
just the same as the student edition).

---------------------------------------------------------------------------
Jacques Garrigue      Kyoto University     garrigue at kurims.kyoto-u.ac.jp
		<A HREF=http://wwwfun.kurims.kyoto-u.ac.jp/~garrigue/>JG</A>
-------------------
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] 4+ messages in thread

* Re: [Caml-list] Using OCaml with microsofts free C++ compiler?
@ 2002-09-18 11:22 Mark Brady
  0 siblings, 0 replies; 4+ messages in thread
From: Mark Brady @ 2002-09-18 11:22 UTC (permalink / raw)
  To: caml-list

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=us-ascii, Size: 1625 bytes --]

Thanks for all the help. The mingw32 soloution seems perfect for what I want :) 

A link on the download page to the information contained in README.win32 might be a help to other people like myself who are unsure which win32 version is best for them (maybe the link is there and I just didn't find it). The feature matrix of the various compilers in README.win32 is very helpful.

Thanks once again for all your advice,

Mark.




>Mark Brady wrote:
>> Hello,
>> Microsoft offer their C++ compiler (non optimised version) for free download
>(no IDE just the SDK) as part of the Dot Net SDK
>> download.
>>
>> As this seems to be free for most people and for most uses (even commercial)
>does anybody know if OCaml will work with it or does
>> it only work with the older VC++ 6.0 compiler (it's the VC++ 7.0 compiler
>that's available for download)?
>>
>> Here is the link to the MS SDK:
>>
>http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/m
>sdn-files/027/000/976/msdncompositedoc.xml&frame=true
>>
>> Any replies would be very welcome.
>



_____________________________________________________________
Play the Elvis® Scratch & Win for your chance to instantly win $10,000 Cash
- a 2003 Harley Davidson® Sportster® - 1 of 25,000 CD's - and more!
http://r.lycos.com/r/sagel_mail_scratch_tl/http://win.ipromotions.com/lycos_020801/index.asp?tc=7087 
-------------------
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] 4+ messages in thread

end of thread, other threads:[~2002-09-18 11:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-09-17 18:59 [Caml-list] Using OCaml with microsofts free C++ compiler? Mark Brady
2002-09-17 19:23 ` Max Bowsher
2002-09-18  4:58 ` Jacques Garrigue
2002-09-18 11:22 Mark Brady

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