P4 to Git Change 1995735 by kzhuravl@kzhuravl-spot-ocl on 2019/09/09 16:41:36

SWDEV-200937 - use consistent name for comgr

	- Linux: libamd_comgr.so , libamd_comgr32.so
	- Windows: amd_comgr.dll, amd_comgr32.dll

	Review: http://ocltc.amd.com/reviews/r/17952/
	Testing: http://ocltc:8111/viewModification.html?modId=125795&personal=true&init=1&tab=vcsModificationBuilds

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/hip/build/Makefile.hip#19 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/build/Makefile.api#186 edit
... //depot/stg/opencl/drivers/opencl/make/comgr.git/lib/comgr/build/Makefile.comgr#4 edit
... //depot/stg/opencl/drivers/opencl/packages/pkgdefs#10 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/comgrctx.cpp#5 edit
This commit is contained in:
foreman
2019-09-09 16:53:40 -04:00
rodzic d37c45e6b6
commit 8242bb8030
+2 -2
Wyświetl plik
@@ -15,8 +15,8 @@ bool Comgr::LoadLib() {
#if defined(COMGR_DYN_DLL)
LogInfo("Loading COMGR library.");
static const char* ComgrLibName =
LP64_SWITCH(WINDOWS_SWITCH("amdcomgr.dll", "libamdcomgr32.so"),
WINDOWS_SWITCH("amdcomgr64.dll", "libamdcomgr64.so"));
LP64_SWITCH(WINDOWS_SWITCH("amd_comgr32.dll", "libamd_comgr32.so"),
WINDOWS_SWITCH("amd_comgr.dll", "libamd_comgr.so"));
cep_.handle = Os::loadLibrary(ComgrLibName);
if (nullptr == cep_.handle) {
return false;