Skip to content
Merged
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
2 changes: 2 additions & 0 deletions eng/pipelines/common/evaluate-default-paths.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
- src/libraries/System.Private.CoreLib/*
- src/libraries/Native/Unix/System.Globalization.Native/*
- src/libraries/Native/Unix/Common/*
- src/native/*
exclude:
- eng/Version.Details.xml
- '*.md'
Expand All @@ -31,6 +32,7 @@ jobs:
- src/libraries/Native/Unix/System.Globalization.Native/*
- src/libraries/Native/Unix/Common/*
- src/tests/BuildWasmApps/*
- src/native/*
exclude:
- eng/Version.Details.xml
- '*.md'
Expand Down
1 change: 1 addition & 0 deletions eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ jobs:
condition: >-
or(
eq(dependencies.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),
eq(dependencies.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),
eq(variables['isFullMatrix'], true))

#
Expand Down
4 changes: 2 additions & 2 deletions src/tests/profiler/native/eltprofiler/slowpatheltprofiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ using std::atomic;

shared_ptr<SlowPathELTProfiler> SlowPathELTProfiler::s_profiler;

#define PROFILER_STUB static void STDMETHODCALLTYPE

#ifndef WIN32
#define UINT_PTR_FORMAT "lx"
#define PROFILER_STUB __attribute__((visibility("hidden"))) static void STDMETHODCALLTYPE
#else // WIN32
#define UINT_PTR_FORMAT "llx"
#define PROFILER_STUB static void STDMETHODCALLTYPE
#endif // WIN32

PROFILER_STUB EnterStub(FunctionIDOrClientID functionId, COR_PRF_ELT_INFO eltInfo)
Expand Down
4 changes: 2 additions & 2 deletions src/tests/profiler/native/inlining/inlining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ using std::atomic;

shared_ptr<InliningProfiler> InliningProfiler::s_profiler;

#define PROFILER_STUB static void STDMETHODCALLTYPE

#ifndef WIN32
#define UINT_PTR_FORMAT "lx"
#define PROFILER_STUB __attribute__((visibility("hidden"))) static void STDMETHODCALLTYPE
#else // WIN32
#define UINT_PTR_FORMAT "llx"
#define PROFILER_STUB static void STDMETHODCALLTYPE
#endif // WIN32

PROFILER_STUB EnterStub(FunctionIDOrClientID functionId, COR_PRF_ELT_INFO eltInfo)
Expand Down