Merge pull request #923 from aaronenyeshi/fix-co-v3-arg

Consume the code obj args to prevent duplicates
Этот коммит содержится в:
Maneesh Gupta
2019-02-22 13:38:08 +05:30
коммит произвёл GitHub
родитель 6eb8256883 2cd34f3c01
Коммит 53f98edc3d
+6
Просмотреть файл
@@ -424,8 +424,14 @@ foreach $arg (@ARGV)
$swallowArg = 1;
}
if (($trimarg eq '-mno-code-object-v3') and ($HIP_PLATFORM eq 'clang') ) {
$useCodeObjectV3 = 0;
$swallowArg = 1;
}
if (($trimarg eq '-mcode-object-v3') and ($HIP_PLATFORM eq 'clang') ) {
$useCodeObjectV3 = 1;
$swallowArg = 1;
}
if (($arg =~ /--genco/) and $HIP_PLATFORM eq 'clang' ) {