From 02c0f2cd1d066aadf3bcdf3d89a524c4730680f5 Mon Sep 17 00:00:00 2001 From: searlmc1 Date: Mon, 25 Jul 2022 22:17:06 -0700 Subject: [PATCH] SWDEV-347383 - Remove code that sets -std and -fms-* flags (#2820) [ROCm/hip commit: 15575466ac0ed7cd3d8aa746633874418a0f5cab] --- projects/hip/bin/hipcc.pl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/projects/hip/bin/hipcc.pl b/projects/hip/bin/hipcc.pl index 645ae62d03..fa833c023d 100755 --- a/projects/hip/bin/hipcc.pl +++ b/projects/hip/bin/hipcc.pl @@ -187,11 +187,6 @@ if ($HIP_PLATFORM eq "amd") { print ("HIP_CLANG_TARGET=$HIP_CLANG_TARGET\n"); } - if ($isWindows) { - $HIPCXXFLAGS .= " -std=c++14 -fms-extensions -fms-compatibility"; - } else { - $HIPCXXFLAGS .= " -std=c++11"; - } $HIPCXXFLAGS .= " -isystem \"$HIP_CLANG_INCLUDE_PATH/..\""; $HIPCFLAGS .= " -isystem \"$HIP_CLANG_INCLUDE_PATH/..\""; $HIPLDFLAGS .= " -L\"$HIP_LIB_PATH\"";