SWDEV-331095 - Address hipRTC windows test failures

Change-Id: I8c1a36ffd362c6f41449092e4dd85f6ec587206a
This commit is contained in:
Ajay
2022-04-09 01:18:33 +00:00
committed by Satyanvesh Dittakavi
parent cd447a5aaa
commit f301bf3962
+3 -2
View File
@@ -48,7 +48,7 @@ RTCProgram::RTCProgram(std::string name_) : name(name_) {
const std::string hipVerMinor{"-DHIP_VERSION_MINOR=" + std::to_string(HIP_VERSION_MINOR)};
const std::string hipVerPatch{"-DHIP_VERSION_PATCH=" + std::to_string(HIP_VERSION_PATCH)};
compileOptions.reserve(18); // count of options below
compileOptions.reserve(20); // count of options below
compileOptions.push_back("-O3");
#ifdef HIPRTC_EARLY_INLINE
@@ -72,7 +72,8 @@ RTCProgram::RTCProgram(std::string name_) : name(name_) {
compileOptions.push_back("-std=c++14");
compileOptions.push_back("-nogpuinc");
#ifdef _WIN32
compileOptions.push_back("-target x86_64-pc-windows-msvc");
compileOptions.push_back("-target");
compileOptions.push_back("x86_64-pc-windows-msvc");
compileOptions.push_back("-fms-extensions");
compileOptions.push_back("-fms-compatibility");
#endif