Dice IDL compiler: Difference between revisions

From TUDOS-Wiki
Jump to navigationJump to search
(Created page with '== Overview == The [http://www.inf.tu-dresden.de/index.php?node_id=1542 Dice IDL compiler] is used to generate IPC communication code for L4 applications from an interface defini…')
 
m (Reverted edits by Ogozasuta (talk) to last revision by BjoernD)
 
(2 intermediate revisions by 2 users not shown)
Line 6: Line 6:


== Known issues ==
== Known issues ==
* "./configure" in the Dice directory fails with the message "configure: error: You will need at least bison version 2.1a (found 2.4)."
* "./configure" in the Dice directory fails with the message like "configure: error: You will need at least bison version 2.1a (found 2.4)."
** This occurs on newer Linux distributions shipping with Bison >= 2.4.
** This occurs on newer Linux distributions shipping with Bison >= 2.4.
** Building Dice will fail if you simply workaround the version check in configure.in.
** Building Dice will fail if you simply workaround the version check in configure.in.

Latest revision as of 22:24, 24 November 2010

Overview

The Dice IDL compiler is used to generate IPC communication code for L4 applications from an interface definition language (CORBA IDL with extensions). You check it out along with the other components of L4Env as described in the download instructions.

Documentation

Dice and its features are documented in the Dice User Manual.

Known issues

  • "./configure" in the Dice directory fails with the message like "configure: error: You will need at least bison version 2.1a (found 2.4)."
    • This occurs on newer Linux distributions shipping with Bison >= 2.4.
    • Building Dice will fail if you simply workaround the version check in configure.in.
    • Better solution:
      • Download Bison 2.3 from the FSF's Bison website.
      • Compile and install it to some location <foo>
      • Re-configure Dice :
   YACC=<foo>/bison ./configure