Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2505568

Browse filesBrowse files
rahulchaphalkaraduh95
authored andcommitted
build, src: fix include paths for vtune files
PR-URL: #59999 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 7be4330 commit 2505568
Copy full SHA for 2505568

File tree

Expand file treeCollapse file tree

3 files changed

+5
-8
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

3 files changed

+5
-8
lines changed
Open diff view settings
Collapse file

‎src/api/environment.cc‎

Copy file name to clipboardExpand all lines: src/api/environment.cc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include "node_wasm_web_api.h"
1919
#include "uv.h"
2020
#ifdef NODE_ENABLE_VTUNE_PROFILING
21-
#include "../deps/v8/src/third_party/vtune/v8-vtune.h"
21+
#include "../deps/v8/third_party/vtune/v8-vtune.h"
2222
#endif
2323
#if HAVE_INSPECTOR
2424
#include "inspector/worker_inspector.h" // ParentInspectorHandle
Collapse file

‎src/node.cc‎

Copy file name to clipboardExpand all lines: src/node.cc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
#endif
7474

7575
#ifdef NODE_ENABLE_VTUNE_PROFILING
76-
#include "../deps/v8/src/third_party/vtune/v8-vtune.h"
76+
#include "../deps/v8/third_party/vtune/v8-vtune.h"
7777
#endif
7878

7979
#include "large_pages/node_large_page.h"
Collapse file

‎tools/v8_gypfiles/v8vtune.gyp‎

Copy file name to clipboardExpand all lines: tools/v8_gypfiles/v8vtune.gyp
+3-6Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,14 @@
1313
'target_name': 'v8_vtune',
1414
'type': 'static_library',
1515
'sources': [
16-
'<(V8_ROOT)/third_party/ittapi/src/ittnotify/ittnotify_config.h',
17-
'<(V8_ROOT)/third_party/ittapi/src/ittnotify/ittnotify_types.h',
1816
'<(V8_ROOT)/third_party/ittapi/src/ittnotify/jitprofiling.c',
19-
'<(V8_ROOT)/third_party/ittapi/include/jitprofiling.h',
20-
'<(V8_ROOT)/src/third_party/vtune/v8-vtune.h',
21-
'<(V8_ROOT)/src/third_party/vtune/vtune-jit.cc',
22-
'<(V8_ROOT)/src/third_party/vtune/vtune-jit.h',
17+
'<(V8_ROOT)/third_party/vtune/vtune-jit.cc',
2318
],
2419
'include_dirs': [
2520
'<(V8_ROOT)/third_party/ittapi/include',
2621
'<(V8_ROOT)/third_party/ittapi/src/ittnotify',
22+
'<(V8_ROOT)/include',
23+
'<(V8_ROOT)',
2724
],
2825

2926
'direct_dependent_settings': {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.