Skip to content

Commit 0b385f3

Browse files
Merge commit '8e4286e9984680311108cc32e6c0c5f9363a0834' into import/develop/ROCm_rocprofiler-register/jomadsen_change-inline-visibility
2 parents aad122c + 8e4286e commit 0b385f3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

projects/rocprofiler-register/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ include(rocprofiler_register_config_interfaces) # configure interface libraries
9191

9292
set(CMAKE_C_VISIBILITY_PRESET "hidden")
9393
set(CMAKE_CXX_VISIBILITY_PRESET "hidden")
94-
set(CMAKE_VISIBILITY_INLINES_HIDDEN OFF)
94+
set(CMAKE_VISIBILITY_INLINES_HIDDEN ON)
9595
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
9696
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
9797
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.5.1

projects/rocprofiler-register/source/include/rocprofiler-register/rocprofiler-register.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ rocprofiler_register_iterate_registration_info(
190190
/// @brief Helper macro for users to generate versioning int expected by
191191
/// rocprofiler-register when the library maintains a major, minor, patch, and tweak
192192
/// version numbers
193-
#define ROCPROFILER_REGISTER_COMPUTE_VERSION_3( \
194-
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) \
193+
#define ROCPROFILER_REGISTER_COMPUTE_VERSION_4( \
194+
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION, TWEAK_VERSION) \
195195
(ROCPROFILER_REGISTER_COMPUTE_VERSION_2(MAJOR_VERSION, MINOR_VERSION) + \
196196
(PATCH_VERSION))
197197

0 commit comments

Comments
 (0)