mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Change-Id: I8c8e1c69414833908519ceea8fc30362222f01c9 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
18 lines
330 B
C++
18 lines
330 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/source_level_debugger/source_level_debugger.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace NEO {
|
|
|
|
OsLibrary *SourceLevelDebugger::loadDebugger() {
|
|
return OsLibrary::load(SourceLevelDebugger::dllName);
|
|
}
|
|
} // namespace NEO
|