Skip to content
This repository was archived by the owner on Apr 30, 2020. It is now read-only.

Commit 7f02bdc

Browse files
committed
For rcprof, only use the build suffix in the internal build. Also, never use the debug siffix
1 parent c084e52 commit 7f02bdc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

CodeXL/Components/GpuProfiling/AMDTGpuProfiling/ProfileManager.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,11 @@ bool ProfileManager::GetProfilerServer(osFilePath& strServer, QString& strErrorM
11381138
profilerFileName.append(L"-x64");
11391139
}
11401140

1141-
profilerFileName.append(AMDT_DEBUG_SUFFIX_W AMDT_BUILD_SUFFIX_W);
1141+
// profilerFileName.append(AMDT_DEBUG_SUFFIX_W);
1142+
1143+
#if AMDT_BUILD_ACCESS == AMDT_INTERNAL_ACCESS
1144+
profilerFileName.append(AMDT_BUILD_SUFFIX_W);
1145+
#endif
11421146

11431147
strServer.setFileExtension(L"exe");
11441148
#else

0 commit comments

Comments
 (0)