Closed sunshinekitty closed 8 years ago
It means that the linker can not find the OpenCL library. You have to set the library path properly for the linker to find it.
For example, in powershell, on a system with the intel sdk installed, you can execute the following command before executing go get
or go build
:
PS> $env:LIBRARY_PATH = "C:\Program Files (x86)\Intel\OpenCL SDK\lib\x64"
Forgive me if Windows installs aren't supported, but I'm running into the following issue when trying to build on Windows 10 with mingw64 and an nvidia gpu.
I'll keep trying to get this working, but thought I'd post in case you know the solution off hand.