23 lines
472 B
C++
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
|