Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions deps/v8/third_party/vtune/vtune-jit.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#ifndef VTUNE_VTUNE_JIT_H_
#define VTUNE_VTUNE_JIT_H_

#include "third_party/ittapi/include/jitprofiling.h"
#include "../ittapi/include/jitprofiling.h"

#define VTUNERUNNING (iJIT_IsProfilingActive() == iJIT_SAMPLING_ON)

Expand All @@ -63,4 +63,3 @@ class VTUNEJITInterface {


#endif // VTUNE_VTUNE_JIT_H_

2 changes: 1 addition & 1 deletion src/api/environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "node_wasm_web_api.h"
#include "uv.h"
#ifdef NODE_ENABLE_VTUNE_PROFILING
#include "../deps/v8/src/third_party/vtune/v8-vtune.h"
#include "../deps/v8/third_party/vtune/v8-vtune.h"
#endif
#if HAVE_INSPECTOR
#include "inspector/worker_inspector.h" // ParentInspectorHandle
Expand Down
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#endif

#ifdef NODE_ENABLE_VTUNE_PROFILING
#include "../deps/v8/src/third_party/vtune/v8-vtune.h"
#include "../deps/v8/third_party/vtune/v8-vtune.h"
#endif

#include "large_pages/node_large_page.h"
Expand Down
6 changes: 3 additions & 3 deletions tools/v8_gypfiles/v8vtune.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
'<(V8_ROOT)/third_party/ittapi/src/ittnotify/ittnotify_types.h',
'<(V8_ROOT)/third_party/ittapi/src/ittnotify/jitprofiling.c',
'<(V8_ROOT)/third_party/ittapi/include/jitprofiling.h',
'<(V8_ROOT)/src/third_party/vtune/v8-vtune.h',
'<(V8_ROOT)/src/third_party/vtune/vtune-jit.cc',
'<(V8_ROOT)/src/third_party/vtune/vtune-jit.h',
'<(V8_ROOT)/third_party/vtune/v8-vtune.h',
'<(V8_ROOT)/third_party/vtune/vtune-jit.cc',
'<(V8_ROOT)/third_party/vtune/vtune-jit.h',
],
'include_dirs': [
'<(V8_ROOT)/third_party/ittapi/include',
Expand Down
Loading