ihaque / memtestCL

OpenCL memory tester for GPUs
Other
125 stars 27 forks source link

Bugs in Makefile.windows #2

Closed yurtesen closed 10 years ago

yurtesen commented 12 years ago

It appears AMD SDK paths are wrong in the Makefile. First the base path is wrong then the 64bit path is missing _64 extension

Correct ones:

!if "$(OPENCL_VENDOR)" == "AMD" OPENCL_DIR="\Program Files (x86)\AMD APP" OPENCL_INC=$(OPENCL_DIR)\include OPENCL_LIB=$(OPENCL_DIR)\lib\x86\OpenCL.lib !endif !if "$(OPENCL_VENDOR)" == "AMD64" OPENCL_DIR="\Program Files (x86)\AMD APP" OPENCL_INC=$(OPENCL_DIR)\include OPENCL_LIB=$(OPENCL_DIR)\lib\x86_64\OpenCL.lib !endif