Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your error message indicates that your compiler isn't able to find the header file for ALUT (a utility toolkit to make getting started with OpenAL development easier). This may be for one of two reasons:</p> <ol> <li><p>You haven't installed the library at all. In that case, use <code>apt-get install</code> as you did with OpenAL itself.</p></li> <li><p>The header is present somewhere on your system, but not in the default include path. If you are able to locate the library on the file system, make sure to make its include directory known to g++ using the <code>-I</code> switch.</p></li> </ol> <p>Generally, when linking to a library using g++ (or MinGW for what it matters), three things need to be available to the compiler toolchain during compilation:</p> <ul> <li>The library's include directory (where the header files are) - using <code>-I</code></li> <li>The directory of the library files - using <code>-L</code></li> <li>The name of the library file(s) - using <code>-l</code> </li> </ul> <p>Normally on Linux, the first two are kind of automatically handled during the installation procedure of the appropriate library package. Nevertheless, if your library is resting someplace else than the standard directories, you have to explicitly specify include and library path.</p> <p>For a concise introduction to the usage of g++, see also <a href="http://homepages.gac.edu/~mc38/2001J/documentation/g++.html" rel="nofollow">here</a>.</p> <p><strong>Edit:</strong> I realize I spent a little too much time fiddling with my answer, while your problem was already solved. But I hope the information above is useful to you anyway!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload