[2/N] Program refactor - gather compiler options

Change-Id: I0a614be73fbd87184be2dfea407582a58c27b0bc
This commit is contained in:
Jaroslaw Chodor
2019-12-01 16:13:21 +01:00
committed by sys_ocldev
parent 49ad839818
commit 72a1542140
36 changed files with 835 additions and 617 deletions

View File

@@ -6,8 +6,6 @@
set(RUNTIME_SRCS_COMPILER_INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options.cpp
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options.h
${CMAKE_CURRENT_SOURCE_DIR}/default_cl_cache_config.cpp
${CMAKE_CURRENT_SOURCE_DIR}/patchtokens_decoder.cpp
${CMAKE_CURRENT_SOURCE_DIR}/patchtokens_decoder.h

View File

@@ -1,14 +0,0 @@
/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/compiler_interface/compiler_options.h"
namespace NEO {
const char *CompilerOptions::debugKernelEnable = " -cl-kernel-debug-enable";
} // namespace NEO

View File

@@ -1,15 +0,0 @@
/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <string>
namespace NEO {
struct CompilerOptions {
static const char *debugKernelEnable;
};
} // namespace NEO