SWDEV-252745 - Adding precompiled headers to build option

Change-Id: Iab03e8a75215d80c91817ee0227d034fefa9dfad
このコミットが含まれているのは:
cjatin
2021-01-11 19:02:53 +05:30
committed by Jatin Chaudhary
コミット 5cfea2981b
4個のファイルの変更70行の追加17行の削除
+1 -1
ファイルの表示
@@ -555,7 +555,7 @@ int32_t Program::build(const std::vector<Device*>& devices, const char* options,
if (devProgram->buildStatus() != CL_BUILD_NONE) {
continue;
}
int32_t result = devProgram->build(sourceCode_, options, &parsedOptions);
int32_t result = devProgram->build(sourceCode_, options, &parsedOptions, precompiledHeaders_);
// Check if the previous device failed a build
if ((result != CL_SUCCESS) && (retval != CL_SUCCESS)) {