Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #24 from ROCm-Developer-Tools/msearles/remove-std-…
Browse files Browse the repository at this point in the history
…workaround

Remove code that sets -std and -fms-* flags
  • Loading branch information
searlmc1 authored Jul 26, 2022
2 parents a10143a + 56149de commit 384b91f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/hipBin_amd.h
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,6 @@ string HipBinAmd::getHipInclude() const {
void HipBinAmd::initializeHipCXXFlags() {
string hipCXXFlags;
const OsType& os = getOSInfo();
if (os == windows) {
hipCXXFlags = " -std=c++14 -fms-extensions -fms-compatibility";
} else {
hipCXXFlags = " -std=c++11";
}
string hipClangIncludePath;
hipClangIncludePath = getCompilerIncludePath();
hipCXXFlags += " -isystem \"" + hipClangIncludePath;
Expand Down

0 comments on commit 384b91f

Please sign in to comment.