* Re: FW: [Caml-list] Epeire 0.8 (graphical debugger)
[not found] <60D4BD663C99D311A83D00805FA65D244B8248@IDMC>
@ 2002-07-26 6:56 ` Issac Trotts
[not found] ` <20020726092015.1dc86ffe.maxence.guesdon@inria.fr>
0 siblings, 1 reply; 4+ messages in thread
From: Issac Trotts @ 2002-07-26 6:56 UTC (permalink / raw)
To: OCaml Mailing List
Here's the message the configure script gives me on my PC with Suse 7.2
Linux:
configure: error: OCaml version 3.04 found ; version 3.04 or greater is needed
Do I need to get the latest OCaml from CVS?
Thanks,
Issac
Maxence Guesdon [mailto:maxence.guesdon@inria.fr] wrote:
> Sent: Monday, July 22, 2002 8:07 AM
> To: caml-announce@inria.fr
> Subject: [Caml-list] Epeire 0.8
>
>
> Hello everybody,
>
> We're pleased to announce the first release of Epeire,
> a graphical interface for the OCaml debugger.
> Main features:
> * All features of the standard debugger are available,
> * Support for mutiple debugging profiles,
> * Include a graphical value inspector to browse values,
> * Graphical interface offers all features except installation of
> custom printers and specification of a socket name,
> * Possibility to hide/show the various windows (call stack,
> breakpoints,...).
>
> It is available at:
> http://www.maxence-g.net/Tools/epeire/epeire.html
>
> Here is a screenshot :
> http://www.maxence-g.net/Tools/epeire/epeire.jpg
>
> Enjoy !
>
> --
> Maxence Guesdon
> Dimitri Ara
>
> -------------------
> 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] 4+ messages in thread
* Re: FW: [Caml-list] Epeire 0.8 (graphical debugger)
[not found] ` <20020726092015.1dc86ffe.maxence.guesdon@inria.fr>
@ 2002-07-27 3:37 ` Issac Trotts
2002-07-27 7:57 ` Dimitri Ara
2002-07-27 11:51 ` Dimitri Ara
0 siblings, 2 replies; 4+ messages in thread
From: Issac Trotts @ 2002-07-27 3:37 UTC (permalink / raw)
To: OCaml Mailing List
On Fri, Jul 26, 2002 at 09:20:15AM +0200, Maxence Guesdon wrote:
> On Fri, 26 Jul 2002 00:56:13 -0600
> Issac Trotts <issac@myfirstlink.net> wrote:
>
> > Here's the message the configure script gives me on my PC with Suse 7.2
> > Linux:
> >
> > configure: error: OCaml version 3.04 found ; version 3.04 or greater is needed
> >
> > Do I need to get the latest OCaml from CVS?
> Yes. Or you can wait for the 3.05, coming soon (beginning of next week, i think).
> I did not test with 3.04, but it could work. If you want to try,
> change the following lien in the configure.in file:
> AC_MSG_ERROR(OCaml version $OCAMLVERSION found ; version $OCAML_NEEDED or greater is needed)
> and replace it with
> AC_MSG_RESULT(OCaml version $OCAMLVERSION found ; version $OCAML_NEEDED or greater is needed)
Ok, that helps, but there are still issues. After I edit configure.in, run autoconf and
configure, here's the result:
issac@boson:~/downloads/programming/ocaml/epeire-0.81 > make
cd debugger && make all
make[1]: Entering directory `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
Makefile:17: ocaml/config/Makefile: No such file or directory
make[1]: *** No rule to make target `ocaml/config/Makefile'. Stop.
make[1]: Leaving directory `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
make: *** [debugger_lib] Error 2
--
Issac Trotts
www.issactrotts.net
-------------------
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: FW: [Caml-list] Epeire 0.8 (graphical debugger)
2002-07-27 3:37 ` Issac Trotts
@ 2002-07-27 7:57 ` Dimitri Ara
2002-07-27 11:51 ` Dimitri Ara
1 sibling, 0 replies; 4+ messages in thread
From: Dimitri Ara @ 2002-07-27 7:57 UTC (permalink / raw)
To: Issac Trotts; +Cc: OCaml Mailing List
Issac Trotts <issac@myfirstlink.net> a écrit :
> Ok, that helps, but there are still issues. After I edit
> configure.in, run autoconf and
> configure, here's the result:
>
> issac@boson:~/downloads/programming/ocaml/epeire-0.81 > make
> cd debugger && make all
> make[1]: Entering directory
> `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
> Makefile:17: ocaml/config/Makefile: No such file or directory
> make[1]: *** No rule to make target `ocaml/config/Makefile'. Stop.
> make[1]: Leaving directory
> `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
> make: *** [debugger_lib] Error 2
Reading the INSTALL file in the top directory of epeire would have
been a great idea:
*** How to compile ***
You need to have the compiled sources of the OCaml compiler somewhere,
and add a link to this directory in the debugger directory:
- cd debugger ; ln -s <directory of compiled source ofocaml> ocaml
>From the top directory of the Epeire distribution:
- ./configure
- make depend
- make
- make install
will install ./epeire in the ocaml bin directory
-------------------
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: FW: [Caml-list] Epeire 0.8 (graphical debugger)
2002-07-27 3:37 ` Issac Trotts
2002-07-27 7:57 ` Dimitri Ara
@ 2002-07-27 11:51 ` Dimitri Ara
1 sibling, 0 replies; 4+ messages in thread
From: Dimitri Ara @ 2002-07-27 11:51 UTC (permalink / raw)
To: Issac Trotts; +Cc: OCaml Mailing List
Issac Trotts <issac@myfirstlink.net> a écrit :
> Ok, that helps, but there are still issues. After I edit
> configure.in, run autoconf and
> configure, here's the result:
>
> issac@boson:~/downloads/programming/ocaml/epeire-0.81 > make
> cd debugger && make all
> make[1]: Entering directory
> `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
> Makefile:17: ocaml/config/Makefile: No such file or directory
> make[1]: *** No rule to make target `ocaml/config/Makefile'. Stop.
> make[1]: Leaving directory
> `/home/issac/downloads/programming/ocaml/epeire-0.81/debugger'
> make: *** [debugger_lib] Error 2
Hint: read the INSTALL file.
You need to have the compiled sources of the OCaml compiler somewhere,
and add a link to this directory in the debugger directory:
- cd debugger ; ln -s <directory of compiled source ofocaml> ocaml
If you read it and didn't understand something, tell us, we'll fix the
doc.
PS: next time, you should ask this kind of question to the developper
of the project you have problem with, not to the caml list.
--
Dimitri Ara
-------------------
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-07-27 22:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <60D4BD663C99D311A83D00805FA65D244B8248@IDMC>
2002-07-26 6:56 ` FW: [Caml-list] Epeire 0.8 (graphical debugger) Issac Trotts
[not found] ` <20020726092015.1dc86ffe.maxence.guesdon@inria.fr>
2002-07-27 3:37 ` Issac Trotts
2002-07-27 7:57 ` Dimitri Ara
2002-07-27 11:51 ` Dimitri Ara
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox