Add windows specific compilation options

[ROCm/hip commit: 52df98a5d1]
This commit is contained in:
Yaxun Sam Liu
2019-02-05 14:27:57 -05:00
parent 08a20ec9fd
commit df3b7c22a4
+5
View File
@@ -750,6 +750,11 @@ if ($HIP_PLATFORM eq "clang") {
$HIPLDFLAGS .= " -lgcc_s -lgcc -lpthread -lm";
}
# Windows specific options
if ($^O eq 'MSWin32' and $HIP_PLATFORM eq "clang") {
$HIPCXXFLAGS .= " -std=c++14 -fms-extensions -fms-compatibility"
}
if ($HIPCC_COMPILE_FLAGS_APPEND) {
$HIPCXXFLAGS .= " $HIPCC_COMPILE_FLAGS_APPEND";
}