So I don't need to execute aparapi.jar at all, just put aparapi.dll and OpenCl.dll in the same directory in which the minter is executed ?
I get this error.
SEVERE OpenCLLoader.<clinit>: Check your environment. Failed to load ap
arapi native library aparapi_x86 or possibly failed to locate opencl native libr
ary (opencl.dll/opencl.so). Ensure that both are in your PATH (windows) or in LD
_LIBRARY_PATH (linux).
PATH environment variable is set with this command ?
set PATH="c:\NxtMint-1.0.0";%PATH%
That put double quotes in the path. Try this instead:
PATH C:\NxtMint-1.0.0;%PATH%
To check that it worked, enter
PATH
However, on Windows, it isn't necessary to update the PATH since Windows automatically looks in the current directory first. So just copy the dll files to C:\NxtMint-1.0.0 and make it the current directory when you issue the Java command:
cd C:\NxtMint-1.0.0
java -Xmx256m -jar NxtMint-1.0.0.jar
What card are you using? NVIDIA ships OpenCL.dll and OpenCL64.dll. If you are using the 64-bit JVM on Windows, you need to copy OpenCL64.dll and rename it to OpenCL.dll.