How to fix the Unbound module Graphics in an ocaml project

Image
From ~/pr/gitl/ocaml-gol In a constant effort to learn new programming languages, I'm currently trying to use ocaml , a free and open-source general-purpose, multi-paradigm programming language maintained at the Inria . It's basically an extension of Caml with object-oriented features. I'm mostly interested by its functionnal and pattern matching features but the module part of the language can be a bit difficult to understand for someone with little to none ML (Meta Language) background.   The error When trying to use the graphics module to create a graphical window and go just a little further than the simplest helloworld program, here is the result : If the project uses dune : (executable (name ocaml_project) (libraries lwt.unix graphics) ) with this code : let () = Printf.printf "Hello, world!\n";; Lwt_io.printf "Hello, world!\n";; Graphics.open_graph " 800x600";; The first times I built this project running the du

RainbruRPG switched to revision 250

The rainbrurpg's revision 249 is over and the building part of the transition to cmake is done.

A screenshot of the new services library sources

Original news

During this revision, all sources moved to a single top-level src/ directory. The build process is now cmake-powered and after configuration, building only takes a 'make'.

Next revision will also be focused on the switch to git/cmake. For example, the translation files aren't correctly handled at this time (the msgmerge step is missing) and the continuous integration builds are still failing on clang compiler. We also have to build unit tests using cmake.

You can download this release here.

2022 Update

As said in other news, RainbruRPG is not hosted at github anymore. The new repository can be found here. Even if the last commit is a bit old, the project receives regular updates and it should correctly build on any modern linux-based systems.

Comments

Popular posts from this blog

How to make a map of variant in C++