Skip to content

Commit c88d19e

Browse files
authored
Merge pull request #24 from ROCm-Developer-Tools/msearles/remove-std-workaround
Remove code that sets -std and -fms-* flags
2 parents 5e9e474 + 5cef32d commit c88d19e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

amd/hipcc/src/hipBin_amd.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,6 @@ string HipBinAmd::getHipInclude() const {
203203
void HipBinAmd::initializeHipCXXFlags() {
204204
string hipCXXFlags;
205205
const OsType& os = getOSInfo();
206-
if (os == windows) {
207-
hipCXXFlags = " -std=c++14 -fms-extensions -fms-compatibility";
208-
} else {
209-
hipCXXFlags = " -std=c++11";
210-
}
211206
string hipClangIncludePath;
212207
hipClangIncludePath = getCompilerIncludePath();
213208
hipCXXFlags += " -isystem \"" + hipClangIncludePath;

0 commit comments

Comments
 (0)