mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Force ocloc cmdline log after fail even if -q option specified
Related-To: NEO-4784 Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
c5a7481999
commit
46ece15e09
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
||||
@@ -59,10 +59,10 @@ Examples:
|
||||
|
||||
extern "C" {
|
||||
void printOclocCmdLine(unsigned int numArgs, const char *argv[], std::unique_ptr<OclocArgHelper> &helper) {
|
||||
helper->printf("Command was:");
|
||||
printf("Command was:");
|
||||
for (auto i = 0u; i < numArgs; ++i)
|
||||
helper->printf(" %s", argv[i]);
|
||||
helper->printf("\n");
|
||||
printf(" %s", argv[i]);
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
int oclocInvoke(unsigned int numArgs, const char *argv[],
|
||||
|
||||
Reference in New Issue
Block a user