Dolphin, the GameCube and Wii emulator - Forums
Why dolphind.exe - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Development Discussion (https://forums.dolphin-emu.org/Forum-development-discussion)
+--- Thread: Why dolphind.exe (/Thread-why-dolphind-exe)



Why dolphind.exe - matejdro - 02-15-2010

I finally managed to bould Dolphin, but why is filename DolphinD.exe ?

Also, how to compile dolphin for OpenCL?

Edit: Does that D means that its in debug mode?


RE: Why dolphind.exe - spellforce - 02-15-2010

change dubug in your compiler to release


RE: Why dolphind.exe - matejdro - 02-16-2010

Thanks. What about second question?


RE: Why dolphind.exe - darkshadw - 02-16-2010

In Core/Common/Src/OpenCL.h, turn the "#if 0" to "#if 1"

#ifndef __OPENCL_H__
#define __OPENCL_H__

#include "Common.h"
// Change to #if 1 if you want to test OpenCL (and you have it) on Windows
#if 0 <------------THERE !

This line can be found here: http://forums.dolphin-emu.org/thread-2291-page-6.html


RE: Why dolphind.exe - matejdro - 02-16-2010

Just 1 line change? :O

Thats nice

EDIT: it throws me error that it cant find cl.h file. I searched and i couldnt find it in folder.


RE: Why dolphind.exe - James333 - 02-16-2010

(02-16-2010, 07:21 AM)darkshadw Wrote: In Core/Common/Src/OpenCL.h, turn the "#if 0" to "#if 1"

#ifndef __OPENCL_H__
#define __OPENCL_H__

#include "Common.h"
// Change to #if 1 if you want to test OpenCL (and you have it) on Windows
#if 0 <------------THERE !

This line can be found here: http://forums.dolphin-emu.org/thread-2291-page-6.html
Hey! that's mine Tongue

You also need the OCL libraries and the proper drivers ( see here http://code.google.com/p/dolphin-emu/wiki/Compiling_OpenCL )


RE: Why dolphind.exe - darkshadw - 02-17-2010

Hay, I was in a hurry for school, sorry to mention ur name James Blush...


RE: Why dolphind.exe - matejdro - 02-17-2010

Thanks for all answers, it compiles successfuly now.

Are there any indicators, so im 100% sure that OpenCL is working?