Files
compute-runtime/shared/offline_compiler/source/offline_compiler_ext.cpp
Chodor, Jaroslaw 8040d8bebf refactor: ocloc command line refactor
Related-To: NEO-14135

Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
2025-02-25 11:11:28 +01:00

23 lines
472 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/offline_compiler/source/offline_compiler_ext.h"
#include "shared/offline_compiler/source/offline_compiler.h"
namespace NEO {
std::string getOfflineCompilerOptionsExt() {
return "";
}
int OfflineCompiler::parseCommandLineExt(size_t numArgs, const std::vector<std::string> &argv, uint32_t &argIndex) {
return OCLOC_INVALID_COMMAND_LINE;
}
} // namespace NEO