Skip to content

Commit 5cef32d

Browse files
committed
Remove code that sets -std and -fms-* flags
Code was a workaround; no longer needed; rely instead on the clang defaults.
1 parent 5e9e474 commit 5cef32d

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)