Login  Register

Re: Error building joal libraries?

Posted by ebiglari on Jul 08, 2010; 9:06pm
URL: https://forum.jogamp.org/Error-building-joal-libraries-tp952595p952851.html

I had to include the following lines in my gluegen.properties:


win32.c.compiler=mingw32
compiler.cfg.id=compiler.cfg.win32.mingw
linker.cfg.id=linker.cfg.win32.mingw


but both gluegen and joal compile just fine now.   However, now, when I go to run the tests using the test target I get:

    [javac] C:\Documents and Settings\Ehren\My Documents\NetBeansProjects\joal\t
est\build.xml:43: warning: 'includeantruntime' was not set, defaulting to build.
sysclasspath=last; set to false for repeatable builds
    [javac] C:\Documents and Settings\Ehren\My Documents\NetBeansProjects\joal\t
est\src\com\jogamp\openal\ALTest.java:14: package com.jogamp.openal.util does no
t exist
    [javac] import com.jogamp.openal.util.*;
    [javac] ^
    [javac] C:\Documents and Settings\Ehren\My Documents\NetBeansProjects\joal\t
est\src\com\jogamp\openal\ALTest.java:23: cannot find symbol
    [javac] symbol  : class AL
    [javac] location: class com.jogamp.openal.ALTest
    [javac]     static AL al;
    [javac]            ^


It seems like I'm missing something.