mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 04:12:57 +08:00
- allows to print ocloc command line after crash in compilation Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
27 lines
897 B
C++
27 lines
897 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/offline_compiler/source/ocloc_error_code.h"
|
|
#include "shared/offline_compiler/source/offline_compiler.h"
|
|
#include "shared/offline_compiler/source/offline_linker.h"
|
|
#include "shared/offline_compiler/source/utilities/windows/safety_guard_windows.h"
|
|
|
|
using namespace NEO;
|
|
|
|
int buildWithSafetyGuard(OfflineCompiler *compiler) {
|
|
SafetyGuardWindows safetyGuard;
|
|
int retVal = NEO::OclocErrorCode::COMPILATION_CRASH;
|
|
return safetyGuard.call<int, OfflineCompiler, decltype(&OfflineCompiler::build)>(compiler, &OfflineCompiler::build, retVal);
|
|
}
|
|
|
|
int linkWithSafetyGuard(OfflineLinker *linker) {
|
|
SafetyGuardWindows safetyGuard{};
|
|
int returnValueOnCrash{NEO::OclocErrorCode::COMPILATION_CRASH};
|
|
|
|
return safetyGuard.call(linker, &OfflineLinker::execute, returnValueOnCrash);
|
|
}
|