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

Commit

Permalink
For rcprof, only use the build suffix in the internal build. Also, ne…
Browse files Browse the repository at this point in the history
…ver use the debug siffix
  • Loading branch information
chesik-amd committed May 5, 2017
1 parent c084e52 commit 7f02bdc
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,11 @@ bool ProfileManager::GetProfilerServer(osFilePath& strServer, QString& strErrorM
profilerFileName.append(L"-x64");
}

profilerFileName.append(AMDT_DEBUG_SUFFIX_W AMDT_BUILD_SUFFIX_W);
// profilerFileName.append(AMDT_DEBUG_SUFFIX_W);

#if AMDT_BUILD_ACCESS == AMDT_INTERNAL_ACCESS
profilerFileName.append(AMDT_BUILD_SUFFIX_W);
#endif

strServer.setFileExtension(L"exe");
#else
Expand Down

0 comments on commit 7f02bdc

Please sign in to comment.